:root {
    --bs-body-font-family: "Geist", sans-serif;
    --bs-body-font-size: 16px;
    --blue: #0f1e3d;
    --blue-dark: #141c2c;
    --cream: #f8f5ef;
    --gold: #c9a84c;
    --gold-light: #e4c46e;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --space: 60px;
}

.Gold {
    color: var(--gold)
}

.BgGold {
    background-color: var(--gold)
}

.Blue {
    color: var(--blue)
}

.BgBlue {
    background-color: var(--blue)
}

.BlueDark {
    color: var(--blue-dark)
}

.BgBlueDark {
    background-color: var(--blue-dark)
}

.Cream {
    color: var(--cream)
}

.fs-18 {
    font-size: 1.125rem;
}

body {
    background-color: #F7F2EC;
}

header {
    background-color: var(--blue);
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 4;

}

.offcanvas {
    background: var(--blue)
}

header .Logo {
    transition: var(--transition);
}

header.scrolled .Logo {
    width: 50px;
}

.SectionVerticalBoth {
    padding-top: var(--space);
    padding-bottom: var(--space)
}

.navbar-nav {
    --bs-nav-link-font-size: 14px;
    --bs-navbar-active-color: var(--gold-light);
    --bs-nav-link-color: #fff;
    --bs-nav-link-hover-color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .15em;
}

.BookConsultation {
    font-size: var(--bs-nav-link-font-size)
}

.BookConsultation:hover,
.BookConsultation:focus,
.BookConsultation:active {
    background: #fff !important;
    color: var(--blue)
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        --bs-navbar-nav-link-padding-x: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        --bs-navbar-nav-link-padding-x: 1rem;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        --bs-navbar-nav-link-padding-x: .75rem;
    }
}

@media(max-width:991px) {
    .navbar-nav .nav-item {
        font-size: 1.125rem;
        padding-top: .5rem;
        padding-bottom: .75rem;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .navbar-nav .nav-item:first-child {
        border-top: 0
    }

    .navbar-nav .nav-item .active {
        font-weight: 500;
    }
}

.HeroSection,
.InnerHeroSection {
    position: relative;
    background-color: var(--blue);
}

.HeroSection {
    height: 700px;
}

.InnerHeroSection {
    height: 350px;
    background: url(../img/inner-header-bg.webp) no-repeat center center;
    background-size: cover;
}

.InnerHeroSection:before {
    content: '';
    background: rgb(15 30 61 / 79%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(min-width:575px) {
    .HeroSection img {
        height: 100%;
        object-fit: cover;
    }

    .HeroSection:before {
        content: '';
        background: rgb(84 67 36 / 70%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }




}

@media(max-width:768px) {

    .HeroCaption .display-4,
    .InnerHeroSection .display-4 {
        font-size: calc(1.4rem + 2vw);
    }

    .InnerHeroSection {
        height: 250px;
        background-size: 290%;
        background-position: 70% 70%;
    }

    .InnerHeroSection:before {
        background-size: 60%;

    }
}

@media(max-width:575px) {

    .HeroCaption .display-4,
    .InnerHeroSection .display-4 {
        font-size: calc(1.3rem + 2vw);
        color: var(--gold-light) !important;
    }

    .HeroSection {
        height: 600px;
    }

}



.HeroCaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: end;
    text-align: center;
}

.HeroTag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
}

.Facts {
    background-color: var(--blue-dark);
    color: var(--gold);
    padding-top: 30px;
    padding-bottom: 30px;
}

.FactTxt {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .5rem;
    color: rgba(255, 255, 255, 0.8);
}

.SectionLabel {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

.SectionTitle {
    letter-spacing: .04em;
    font-weight: 600;
}

.GoldRule {
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 18px 0 30px;
}

.ServiceCard {
    background: #fff;
    border-radius: 1rem;
    padding: 34px 26px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.ServiceCard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.ServiceCard:hover::after {
    transform: scaleX(1);
}

.ServiceCard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.SvcIconWrap {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(26, 48, 96, 0.07), rgba(201, 168, 76, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:767px) {
    .WhatWeDo .SvcIconWrap {
        width: 52px;
        height: 52px;
    }

    .WhatWeDo .SvcIconWrap svg {
        width: 42px;
        height: 42px;
    }

    .SvcIconWrap {
        width: 32px;
        height: 32px;
    }
}

.SvcTitle {
    font-size: 1.25rem;
}

.SvcIconWrap svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.SvcDesc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.SvcTags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

@media(max-width:575px) {
    .WhatWeDo .SvcTitle {
        font-size: 1.375rem;
    }
}

.Tag {
    background: rgba(26, 48, 96, 0.07);
    color: var(--blue);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

.WhyPoint {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 18px 20px;
    transition: var(--transition), background var(--transition);
}

.WhyPoint:hover {
    transform: translateY(-7px);
}

.WhyCheck {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: border-color var(--transition), background var(--transition);
}

.WhyCheck svg {
    width: 13px;
    height: 13px;
}

.WhyPtTitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
}

.WhyPtText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.55;
}

.TickerOuter {
    position: relative;
    overflow: hidden;
}

.TickerOuter::before,
.TickerOuter::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100px;
}

.TickerOuter::before {
    left: 0;
    background: linear-gradient(90deg, var(--grey-50), transparent);
}

.TickerOuter::after {
    right: 0;
    background: linear-gradient(-90deg, var(--grey-50), transparent);
}

.TickerTrack {
    display: flex;
}



@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media(min-width:768px) {


    .TickerTrack {
        display: flex;
        gap: 0;
        animation: tickerScroll 30s linear infinite;
        width: max-content;
    }

    .BankChip {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 40px;
        border-right: 1px solid rgba(0, 0, 0, 0.07);
        min-width: 190px;
        transition: all 0.2s;
    }

    .BankChip span {
        font-family: var(--fd);
        font-size: 18px;
        font-weight: 600;
        color: #b0aeab;
        white-space: nowrap;
        transition: color 0.2s;
    }
}

@media(max-width:767px) {
    .TickerTrack {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .BankChip {
        padding: 10px 20px;
    }

    .BankChipDuplicate {
        display: none
    }
}

.Sectors .ServiceCard {
    background-color: rgba(255, 255, 255, 0.6);
    /* Translucent background */
    backdrop-filter: blur(15px);
}

.Sectors .ServiceCard .SvcIconWrap {
    background: transparent;
    border-radius: 0;
}

.Industries:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(209 176 86 / 25%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

}

.TestiTrackWrap {
    overflow: hidden;
    position: relative;
}

.TestiTrack {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 24px 24px;
}

.TestiTrack::-webkit-scrollbar {
    display: none;
}

.TestiCard {
    min-width: 100%;
    flex: 0 0 100%;
    background: #fff;
    border-radius: 16px;
    padding: 34px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
    transition: box-shadow var(--transition);
    position: relative;
}

.TestiCard:hover {
    box-shadow: 0 16px 50px rgba(26, 48, 96, 0.1);
}

@media(min-width:768px) {
    .TestiCard {
        min-width: 50%;
        flex: 0 0 50%;
    }
}

@media(min-width:1200px) {
    .TestiCard {
        min-width: 33%;
        flex: 0 0 33%;
    }
}

.TestiQuoteIcon {
    color: var(--gold);
    font-size: 72px;
    line-height: 0.6;
    display: block;
    margin-bottom: 14px;
}

.TestiStars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.TestiText {
    font-size: 14.5px;
    line-height: 1.77;
    color: var(--grey-600);
    margin-bottom: 26px;
    font-style: italic;
}

.TestiAuthor {
    display: flex;
    gap: 13px;
    align-items: center;
}

.TestiAvatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 17px;
    font-weight: 600;
    color: var(--gold);
}

.TestiName {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--blue);
}

.TestiRole {
    font-size: 11.5px;
    color: var(--grey-400);
    margin-top: 2px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(26, 48, 96, 0.16);
    background: #fff;
    color: var(--blue);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: var(--blue);
    color: var(--gold);
    border-color: var(--blue);
}

.ContactFormWrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    padding: 20px;
}

@media(min-width:576px) {
    .ContactFormWrap {
        padding: 24px;
    }
}

@media(min-width:992px) {
    .ContactFormWrap {
        padding: 38px;
    }
}


.FormGroup label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 7px;
}

.FormGroup input,
.FormGroup select,
.FormGroup textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    padding: 13px 16px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.FormGroup select option {
    background: var(--blue-dark);
    color: #fff;
}

.FormGroup .error-msg {
    font-size: 11.5px;
    color: #e8776a;
    margin-top: 5px;
    display: none;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 36px 20px;
}

.form-success svg {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-family: var(--fd);
    font-size: 26px;
    color: #fff;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--gold-light);

}

.footer-social svg {
    width: 15px;
    height: 15px;
}

.footer-social:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.ContactDetails {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ContactRow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    transition: border-color var(--transition);
}

.ContactRow .ci {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

.ContactRow a {
    color: #fff;
}

.ContactRow a:hover {
    color: var(--gold-light)
}

.TeamCol {
    cursor: pointer;
}

.UserInfo {
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 14px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    color: #000;
    width: calc(100% - 20px);
}

.UserInfo svg {
    fill: #ffffffb1;
}

.Designation,
.TeamModal .modal-header p {
    color: #ffffffb1;
}

.AssocBadge {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--blue);
    background: #f7f7f5;
    border: 1px solid #e6e3da;
    padding: .3rem .7rem;
    border-radius: 3px;
    margin: .2rem .3rem .2rem 0;
}

.TeamModal .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e")
}

.TeamModal .modal-header {
    background: var(--blue);
}

.TeamModal .modal-title {
    color: var(--gold)
}

.SerciveTitleBlock {
    background: linear-gradient(135deg, rgba(26, 48, 96, 0.07), rgba(201, 168, 76, 0.12));
}

@media(min-width:992px) {
    .SerciveTitleBlock {
        justify-content: center;
    }
}

@media(max-width:991px) {
    .SerciveTitleBlockInn {
        display: flex;
        gap: 10px;
    }

}

.SectorDetail .ServiceCard {
    display: flex;
    gap: 16px;
    align-items: center
}

.SectorDetail .ServiceCard .SvcIconWrap {
    flex-shrink: 0;
}

.LogoBlock {
    border: 1px solid #c9a84c61;
    padding: 10px 20px;
    background: #ffffff4f;
    border-radius: 4px;
    display: flex;
    align-items: center;
}