/*added by seema*/

/*contact form msg*/
.success-message{
    background:#e8f8ec;
    color:#198754;
    border:1px solid #b7e4c7;
    padding:18px 25px;
    border-radius:10px;
    margin-bottom:25px;
    font-size:16px;
    font-weight:500;
}

.success-message i{
    margin-right:8px;
}

.error-message{
    background:#fdeaea;
    color:#dc3545;
    border:1px solid #f5c2c7;
    padding:18px 25px;
    border-radius:10px;
    margin-bottom:25px;
    font-size:16px;
    font-weight:500;
}

.error-message i{
    margin-right:8px;
}

.fa-solid,
.fas,
.fa-regular,
.fa-brands{
    color: #f4970f; /* Gold */
}

/* ==========================
   PAGE HERO BANNER
========================== */

.page-hero{
    position:relative;
    height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.page-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(8,55,84,0.65);
    z-index:1;
}

.page-hero-content{
    position:relative;
    z-index:2;
}

.page-hero-content h1{
    font-family:'Lato',sans-serif;
    font-size:70px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
    line-height:1.1;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.8);
    font-size:16px;
}

.breadcrumb a{
    color:#E8940A;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#fff;
}

/* ==========================
   PAGE BANNER IMAGES
========================== */

.about-hero{
    background-image:url('../images/about-banner.jpg');
}

.service-hero{
    background-image:url('../images/service-bannre.jpeg');
}

.insight-hero{
    background-image:url('../images/insight-banner.png');
}

.contact-hero{
    background-image:url('../images/contact-banner.png');
}

.work-hero{
    background-image:url('../images/work-banner.jpg');
}

.career-hero{
    background-image:url('../images/career-banner.jpg');
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .page-hero{
        height:380px;
    }

    .page-hero-content h1{
        font-size:52px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .page-hero{
        height:300px;
        background-position:center center;
    }

    .page-hero-content h1{
        font-size:38px;
    }

    .breadcrumb{
        font-size:14px;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .page-hero{
        height:260px;
    }

    .page-hero-content h1{
        font-size:30px;
    }

}

.hero-banner{
    position: relative;
    overflow: hidden;
}

/* Navigation Arrows */
.hero-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.hero-nav:hover{
    background: rgba(255,255,255,0.4);
}

.hero-nav.prev{
    left: 20px;
}

.hero-nav.next{
    right: 20px;
}

/* Dots */
.hero-dots{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dots .dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.hero-dots .dot.active{
    background: #fff;
    transform: scale(1.2);
}

/* Mobile */
@media(max-width:768px){
    .hero-nav{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-nav.prev{
        left: 10px;
    }

    .hero-nav.next{
        right: 10px;
    }
}
/*contact us page*/

/* ==================================
   CONTACT SECTION
================================== */

.contact-section{
    padding:120px 0;
    background:#f8fafc;
}

.contact-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.contact-label{
    color:#f4970f;
    font-size:13px;
    letter-spacing:3px;
    font-weight:700;
}

.contact-heading h2{
    font-size:60px;
    color:#083754;
    margin:15px 0;
}

.contact-heading h2 span{
    color:#f4970f;
}

.contact-heading p{
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

/* Layout */

.contact-wrapper{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:40px;
}

/* Form Card */

.contact-form-card{
    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.contact-form-card h3{
    color:#083754;
    margin-bottom:30px;
    font-size:32px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#083754;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#f4970f;
    outline:none;
}

.checkbox-group{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin:20px 0;
    color:#64748b;
    line-height:1.6;
}

.contact-btn{
    background:#083754;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#f4970f;
}

/* Right Card */

.contact-info-card{
    background:#083754;
    color:#fff;
    padding:45px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
}

.contact-info-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(244,151,15,.12);
    right:-80px;
    top:-80px;
}

.info-badge{
    display:inline-block;
    background:rgba(244,151,15,.15);
    color:#f4970f;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:2px;
}

.info-top h3{
    font-size:34px;
    margin:20px 0 40px;
}

.info-item{
    margin-bottom:30px;
}

.info-item h4{
    color:#f4970f;
    margin-bottom:10px;
}

.info-item p,
.info-item a{
    color:#fff;
    text-decoration:none;
    line-height:1.8;
}

.contact-footer-text{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.15);
}

.contact-footer-text strong{
    display:block;
    font-size:24px;
    margin-bottom:10px;
}

.contact-footer-text span{
    color:rgba(255,255,255,.75);
}

/* Responsive */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-heading h2{
        font-size:42px;
    }

}

/* career page*/

/* ==================================
   CAREER JOURNEY
================================== */

.career-journey{
    padding:120px 0;
    background:#f8fafc;
    overflow:hidden;
    position:relative;
}

.career-journey::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;

    background:rgba(244,151,15,.08);

    top:-180px;
    right:-120px;
}

.career-journey-wrap{
    display:grid;
    grid-template-columns:1.3fr .8fr;
    gap:70px;
    align-items:center;
}

/* LEFT */

.career-tag{
    display:inline-block;
    color:#f4970f;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
}

.career-content h2{
    font-size:68px;
    line-height:1.05;
    color:#083754;
    margin-bottom:25px;
    font-family:'Lato',sans-serif;
}

.career-content h2 span{
    display:block;
    color:#f4970f;
}

.career-content p{
    color:#5f6b7a;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
    max-width:700px;
}

.career-points{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.career-point{
    padding:12px 20px;
    border-radius:40px;
    background:#fff;
    color:#083754;
    font-weight:600;
    border:1px solid rgba(8,55,84,.08);
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

/* RIGHT CARD */

.career-panel{
    background:#083754;
    padding:50px;
    border-radius:30px;
    color:#fff;
    position:relative;

    box-shadow:0 30px 70px rgba(8,55,84,.18);
}

.career-panel::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:30px;

    background:linear-gradient(
        135deg,
        rgba(244,151,15,.15),
        transparent
    );
}

.panel-top{
    position:relative;
    z-index:2;
}

.panel-icon{
    width:70px;
    height:70px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f4970f;
    color:#fff;

    font-size:28px;
    margin-bottom:25px;
}

.panel-top h3{
    font-size:34px;
    margin-bottom:15px;
}

.panel-top a{
    color:#f4970f;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
}

.panel-note{
    margin-top:35px;
    background:#fff;
    color:#5f6b7a;

    padding:20px;
    border-radius:16px;

    line-height:1.8;
    position:relative;
    z-index:2;
}

/* Hover */

.career-panel{
    transition:.4s;
}

.career-panel:hover{
    transform:translateY(-10px);
}

/* Responsive */

@media(max-width:991px){

    .career-journey-wrap{
        grid-template-columns:1fr;
        gap:40px;
    }

    .career-content h2{
        font-size:44px;
    }

    .career-panel{
        padding:35px;
    }

    .panel-top a{
        font-size:18px;
        word-break:break-word;
    }

}


/*insight page*/
/* ==================================
   FRAMEWORK ARTICLE
================================== */

.framework-article{
    padding:120px 0;
    background:#f8fafc;
    font-family:'Lato',sans-serif;
}

.framework-intro{
    text-align:center;
    max-width:900px;
    margin:0 auto 80px;
}

.section-label{
    display:inline-block;
    color:#f4970f;
    font-size:22px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.framework-intro h2{
    font-size:58px;
    color:#083754;
    line-height:1.2;
    margin-bottom:20px;
}

.framework-intro h2 span{
    color:#f4970f;
}

.framework-intro p{
    color:#64748b;
    font-size:18px;
    line-height:1.9;
}

/* ==================================
   FRAMEWORK BLOCK
================================== */

.framework-block{
    background:#fff;
    padding:70px;
    border-radius:30px;
    margin-bottom:80px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.framework-heading{
    text-align:center;
    margin-bottom:50px;
}

.framework-heading span{
    color:#f4970f;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.framework-heading h2{
    font-size:50px;
    color:#083754;
    margin:15px 0;
}

.framework-heading h3{
    color:#f4970f;
    font-size:24px;
    font-weight:600;
}

.framework-content{
    max-width:1000px;
    margin:0 auto 50px;
}

.framework-content p{
    color:#5f6b7a;
    line-height:2;
    margin-bottom:20px;
    font-size:17px;
}

/* ==================================
   FRAMEWORK GRID
================================== */

.framework-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.framework-card{
    background:#fff;
    border:1px solid #eef2f6;
    border-radius:22px;
    padding:35px 30px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.framework-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#f4970f;
}

.framework-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(8,55,84,.08);
}

.framework-card span{
    font-size:50px;
    font-weight:800;
    color:#f4970f;
    line-height:1;
}

.framework-card h4{
    margin:15px 0;
    color:#083754;
    font-size:22px;
}

.framework-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}

/* ==================================
   CONCLUSION
================================== */

.framework-conclusion{
    margin-top:60px;
    padding:40px;
    background:#f8fafc;
    border-radius:25px;
}

.framework-conclusion h3{
    color:#083754;
    font-size:30px;
    margin-bottom:20px;
}

.framework-conclusion p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:18px;
}

.framework-conclusion blockquote{
    background:#083754;
    color:#fff;
    padding:30px;
    border-radius:20px;
    margin-top:30px;
    font-size:22px;
    font-weight:700;
    line-height:1.6;
    border-left:5px solid #f4970f;
}

/* ==================================
   CLARITY BLOCK SPECIAL
================================== */

.clarity-block{
    border-top:6px solid #083754;
}

/* ==================================
   ANIMATION
================================== */

.framework-card{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:991px){

    .framework-grid{
        grid-template-columns:1fr;
    }

    .framework-block{
        padding:40px 25px;
    }

    .framework-heading h2{
        font-size:38px;
    }

    .framework-heading h3{
        font-size:20px;
    }

    .framework-intro h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .framework-article{
        padding:80px 0;
    }

    .framework-heading h2{
        font-size:32px;
    }

    .framework-conclusion blockquote{
        font-size:18px;
    }

}


/* work-page css */

/* ==================================
   STRATEGY SECTION
================================== */

.strategy-section{
    padding:120px 0;
    background:#fff;
    position:relative;
}

.strategy-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(
        to bottom,
        var(--gold),
        var(--navy)
    );
}

.strategy-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;
    align-items:center;
}

.strategy-label{
    display:inline-block;
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
}

.strategy-left h2{
    font-size:64px;
    line-height:1.1;
    color:var(--navy);
}

.strategy-left h2 span{
    color:var(--gold);
}

.strategy-right{
    position:relative;
}

.strategy-text{
    color:#64748b;
    font-size:19px;
    line-height:1.9;
    margin-bottom:25px;
}

.strategy-quote{
    margin-top:35px;
    padding:25px 30px;
    background:var(--navy);
    color:#fff;
    font-size:24px;
    font-weight:700;
    border-radius:18px;
    display:inline-block;
    box-shadow:0 20px 40px rgba(15,34,68,.15);
}

.strategy-quote::before{
    content:'✦';
    color:var(--gold);
    margin-right:12px;
}

/* Responsive */

@media(max-width:991px){

    .strategy-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .strategy-left h2{
        font-size:42px;
    }

    .strategy-quote{
        font-size:20px;
        width:100%;
    }

}

/* ==================================
   OUR WORK SHOWCASE
================================== */

.work-showcase{
    padding:120px 0;
    background:#f8fafc;
}

.work-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.work-header h2{
    font-size:58px;
    color:var(--navy);
    margin:15px 0;
}

.work-header h2 span{
    color:var(--gold);
}

.work-header p{
    color:#64748b;
    line-height:1.9;
}

.work-project{
    display:grid;
    grid-template-columns:45% 55%;
    gap:70px;
    align-items:center;
    margin-bottom:100px;
}

.work-project.reverse .work-image{
    order:2;
}

.work-project.reverse .work-content{
    order:1;
}

.work-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.work-no{
    color:var(--gold);
    font-weight:700;
    letter-spacing:3px;
}

.work-content h3{
    font-size:40px;
    color:var(--navy);
    margin:15px 0;
}

.work-content h4{
    color:var(--gold);
    font-size:24px;
    margin-bottom:20px;
}

.work-content p{
    color:#64748b;
    line-height:1.9;
}

.work-box{
    margin-top:25px;
    padding:25px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.work-box h5{
    color:var(--navy);
    margin-bottom:15px;
}

.work-box ul{
    margin:0;
    padding-left:20px;
}

.work-box li{
    margin-bottom:10px;
    color:#64748b;
}

.work-services{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:25px 0;
}

.work-services span{
    background:rgba(232,148,10,.12);
    color:var(--navy);
    padding:10px 16px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
}

.tagline{
    display:inline-block;
    background:var(--navy);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.work-outcome{
    margin-top:25px;
    background:var(--navy);
    color:#fff;
    padding:20px 25px;
    border-radius:16px;
    line-height:1.8;
}

@media(max-width:991px){

    .work-project{
        grid-template-columns:1fr;
        gap:40px;
    }

    .work-project.reverse .work-image,
    .work-project.reverse .work-content{
        order:unset;
    }

    .work-image img{
        height:350px;
    }

    .work-header h2{
        font-size:40px;
    }

    .work-content h3{
        font-size:30px;
    }
}


/*service page */
/*services left right*/

.service-detail{
    padding:100px 0;
}

.service-detail:nth-child(even){
    background:#f8fafc;
}

.service-row{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    align-items:center;
}

.service-row.reverse .service-image{
    order:2;
}

.service-row.reverse .service-content{
    order:1;
}

.service-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:30px;
    display:block;
}

.service-number{
    color:var(--gold);
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.service-content h2{
    color:var(--navy);
    font-size:42px;
    margin:12px 0;
    line-height:1.2;
}

.service-content h4{
    color:var(--gold);
    font-size:24px;
    margin-bottom:20px;
}

.service-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:30px;
}

.expertise-box{
    background:#fff;
    border:1px solid rgba(15,34,68,.08);
    border-radius:24px;
    padding:30px;
}

.expertise-box h5{
    color:var(--navy);
    margin-bottom:20px;
    font-size:18px;
}

.expertise-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.expertise-grid span{
    background:rgba(232,148,10,.08);
    color:var(--navy);
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

@media(max-width:991px){

    .service-row{
        grid-template-columns:1fr;
        gap:40px;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-content{
        order:unset;
    }

    .service-image img{
        height:350px;
    }

    .service-content h2{
        font-size:34px;
    }
}

/* ==================================
   FINAL CTA SECTION
================================== */

.growth-cta{
    padding:120px 0;
    background:#f8fafc;
}

.growth-cta-box{
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        var(--navy),
        #21406f
    );

    padding:80px 60px;
    border-radius:32px;
    text-align:center;
}

.growth-cta-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-180px;
    right:-120px;
}

.growth-cta-box::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(232,148,10,.08);
    bottom:-120px;
    left:-80px;
}

.cta-label{
    display:inline-block;
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
}

.growth-cta-box h2{
    color:#fff;
    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
}

.growth-cta-box h2 span{
    color:var(--gold);
}

.growth-cta-box p{
    max-width:750px;
    margin:auto;
    color:rgba(255,255,255,.8);
    font-size:18px;
    line-height:1.9;
}

.cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    background:var(--gold);
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:.4s;
}

.cta-primary:hover{
    transform:translateY(-4px);
}

.cta-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.cta-secondary:hover{
    background:rgba(255,255,255,.08);
}

/* Responsive */

@media(max-width:768px){

    .growth-cta{
        padding:80px 0;
    }

    .growth-cta-box{
        padding:60px 25px;
    }

    .growth-cta-box h2{
        font-size:38px;
    }

    .growth-cta-box p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }
}

/* ==================================
   ADVISORY JOURNEY
================================== */

.advisory-journey{
    padding:0px 0;
    background:linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );
}

.journey-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.journey-header h2{
    font-size:56px;
    color:var(--navy);
    line-height:1.2;
    margin:20px 0;
}

.journey-header h2 span{
    color:var(--gold);
}

.journey-header p{
    color:#64748b;
    line-height:1.8;
    font-size:18px;
}

.journey-layout{
    position:relative;
    height:700px;
    max-width:900px;
    margin:auto;
}

.journey-center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.journey-circle{
    width:260px;
    height:260px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    text-align:center;
    padding:50px 30px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 25px 60px rgba(15,34,68,.18);
}

.journey-circle h3{
    color:var(--gold);
    font-size:32px;
    margin-bottom:12px;
}

.journey-circle span{
    line-height:1.8;
}

/* Cards */

.journey-card{
    position:absolute;
    width:220px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    border-top:4px solid var(--gold);
    transition:.4s;
}

.journey-card:hover{
    transform:translateY(-8px);
}

.journey-card h4{
    color:var(--navy);
}

/* Positioning */

.card-1{
    top:20px;
    left:50%;
    transform:translateX(-50%);
}

.card-2{
    top:140px;
    right:20px;
}

.card-3{
    bottom:140px;
    right:20px;
}

.card-4{
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.card-5{
    bottom:140px;
    left:20px;
}

.card-6{
    top:140px;
    left:20px;
}

.journey-footer{
    max-width:950px;
    margin:50px auto 0;
    text-align:center;
    color:#64748b;
    line-height:1.9;
    font-size:17px;
}

/* Mobile */

@media(max-width:991px){

    .journey-layout{
        height:auto;
        display:grid;
        grid-template-columns:1fr;
        gap:20px;
    }

    .journey-center,
    .journey-card{
        position:relative;
        top:auto;
        left:auto;
        right:auto;
        bottom:auto;
        transform:none;
        width:100%;
    }

    .journey-circle{
        width:100%;
        height:auto;
        border-radius:30px;
        padding:40px;
    }

    .journey-header h2{
        font-size:38px;
    }
}


/*home page counter*/
/* IMPACT COUNTER ANIMATION */
.impact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}
.impact-cell{
    position:relative;
    overflow:hidden;
    transition:.4s ease;
}

.impact-cell:hover{
    transform:translateY(-10px);
}

.impact-num{
    opacity:0;
    transform:translateY(40px);
}

.impact-cell.animate .impact-num{
    animation:numberUp .8s ease forwards;
}

.impact-cell.animate:nth-child(1) .impact-num{animation-delay:.1s;}
.impact-cell.animate:nth-child(2) .impact-num{animation-delay:.2s;}
.impact-cell.animate:nth-child(3) .impact-num{animation-delay:.3s;}
.impact-cell.animate:nth-child(4) .impact-num{animation-delay:.4s;}
.impact-cell.animate:nth-child(5) .impact-num{animation-delay:.5s;}
.impact-cell.animate:nth-child(6) .impact-num{animation-delay:.6s;}
.impact-cell.animate:nth-child(7) .impact-num{animation-delay:.7s;}

@keyframes numberUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Glow Border Effect */

.impact-cell::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;
    background:linear-gradient(
        135deg,
        transparent,
        rgba(232,148,10,.5),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.impact-cell:hover::before{
    opacity:1;
}

/* Floating Effect */

.impact-grid .impact-cell:nth-child(odd),
.impact-row2 .impact-cell:nth-child(odd){
    animation:floatBox 5s ease-in-out infinite;
}

.impact-grid .impact-cell:nth-child(even),
.impact-row2 .impact-cell:nth-child(even){
    animation:floatBox 5s ease-in-out infinite 1.5s;
}

@keyframes floatBox{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}
/* about page */
/*core values section*/
/* ==================================
   TEAM & MEMBERSHIP SECTION
================================== */

.leadership-section{
    padding:120px 0;
    background:#f8fafc;
}

/* Heading */

.leadership-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.leadership-header h2{
    font-size:54px;
    line-height:1.2;
    color:var(--navy);
    margin-bottom:20px;
}

.leadership-header h2 span{
    color:var(--gold);
}

.leadership-header p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

.leadership-header strong{
    color:var(--navy);
}

/* Team */

.leadership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.leader-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    border:1px solid rgba(15,34,68,.08);
    box-shadow:0 10px 35px rgba(0,0,0,.04);

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:220px;
    transition:.4s ease;
}

.leader-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 60px rgba(15,34,68,.12);
}

.leader-card h3{
    color:var(--navy);
    font-size:24px;
    margin-bottom:12px;
    line-height:1.3;
}

.leader-card span{
    color:var(--gold);
    font-size:15px;
    font-weight:700;
    line-height:1.6;
}

/* Remove Offset */
.leader-card.offset{
    margin-top:0;
}

.leader-card h3{
    color:var(--navy);
    margin-bottom:10px;
    font-size:24px;
}

.leader-card span{
    color:var(--gold);
    font-weight:700;
}

/* Membership Area */

.membership-area{
    background:linear-gradient(
        135deg,
        var(--navy),
        #21406f
    );
    border-radius:30px;
    padding:70px;
    overflow:hidden;
    position:relative;
    margin-top: 50px;

}

.membership-area::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-120px;
    right:-120px;
}

.membership-top{
    text-align:center;
    margin-bottom:50px;
}

.membership-top span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;
    font-weight:700;
}

.membership-top h3{
    color:#fff;
    margin-top:15px;
    font-size:42px;
}

.membership-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.membership-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.membership-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
}

.membership-logo{
    width:100px;
    height:100px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:20px;
    padding:15px;
}

.membership-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.membership-card h4{
    color:#fff;
    font-size:20px;
    line-height:1.6;
    margin-bottom:12px;
}

.membership-card p{
    color:var(--gold);
    font-size:16px;
    font-weight:700;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .leadership-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .leader-card.offset{
        margin-top:0;
    }

    .membership-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .leadership-grid{
        grid-template-columns:1fr;
    }

    .leadership-header h2{
        font-size:38px;
    }

    .membership-top h3{
        font-size:30px;
    }

    .membership-area{
        padding:40px 25px;
    }
} 
/* ===================================
   IMPACT VALUES SECTION
=================================== */

.impact-section{
    padding:120px 0;
    background:#f8fafc;
    overflow:hidden;
    font-family:'Lato',sans-serif;
}

.impact-heading{
    text-align:center;
    margin-bottom:80px;
}

.impact-label{
    display:inline-block;
    color:#E8940A;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.impact-heading h2{
    font-size:56px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:15px;
}

.impact-heading h2 span{
    color:#E8940A;
}

.impact-heading p{
    color:#64748b;
    font-size:18px;
}

/* Timeline */

.impact-timeline{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.impact-timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:4px;
    background:linear-gradient(
        to bottom,
        #E8940A,
        #0f2244
    );
    transform:translateX(-50%);
}

.impact-row{
    position:relative;
    width:50%;
    padding:0 50px;
    margin-bottom:40px;
}

.impact-row.left{
    left:0;
}

.impact-row.right{
    left:50%;
}

.impact-row::before{
    content:'';
    position:absolute;
    top:40px;
    width:22px;
    height:22px;
    background:#0f2244;
    border:4px solid #E8940A;
    border-radius:50%;
    z-index:2;
}

.impact-row.left::before{
    right:-11px;
}

.impact-row.right::before{
    left:-11px;
}

/* Cards */

.impact-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
}

.impact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,34,68,.12);
}

.impact-letter{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;

    background:linear-gradient(
        135deg,
        #E8940A,
        #f6b13d
    );

    color:#fff;
    font-size:34px;
    font-weight:800;

    display:flex;
    align-items:center;
    justify-content:center;
}

.impact-content h3{
    color:#0f2244;
    font-size:24px;
    margin-bottom:10px;
}

.impact-content p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

/* Footer Quote */

.impact-footer{
    margin-top:80px;
    text-align:center;
}

.impact-footer h3{
    background:linear-gradient(
        135deg,
        #0f2244,
        #1f4278
    );

    color:#fff;
    padding:35px;
    border-radius:24px;
    font-size:26px;
    line-height:1.8;
    font-weight:700;
}

.impact-footer span{
    color:#E8940A;
}

/* Animation */

.impact-card{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:991px){

    .impact-heading h2{
        font-size:42px;
    }

    .impact-timeline::before{
        left:20px;
    }

    .impact-row,
    .impact-row.left,
    .impact-row.right{
        width:100%;
        left:0;
        padding-left:60px;
        padding-right:0;
    }

    .impact-row.left::before,
    .impact-row.right::before{
        left:9px;
    }
}

@media(max-width:768px){

    .impact-card{
        flex-direction:column;
    }

    .impact-heading h2{
        font-size:34px;
    }

    .impact-footer h3{
        font-size:20px;
    }
}
/* HERO ENTRY ANIMATIONS */
/* =========================
   HERO BANNER
========================= */

.hero-banner{
    position:relative;
    width:100%;
    height:100vh;
    min-height:750px;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    transition:all .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background: rgb(102 110 121 / 70%);
    
}

.hero-inner{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
    padding:0 20px;
}

.hero-tag{
    display:inline-block;
    padding:12px 28px;
    border:1px solid #d89a1c;
    border-radius:50px;
    color:#d89a1c;
    font-size:14px;
    letter-spacing:4px;
    margin-bottom:25px;
}

.hero-inner h1{
    font-size:78px;
    line-height:1.1;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
}

.hero-inner h1 span{
    display:block;
    color:#f2a118;
    font-style:italic;
}

.hero-inner p{
    color:#fff;
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:18px 42px;
    background:#f2a118;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .hero-banner{
        min-height:650px;
    }

    .hero-inner h1{
        font-size:58px;
    }

    .hero-inner p{
        font-size:18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hero-banner{
        height:700px;
        min-height:auto;
    }

    .hero-slide{
        background-size:cover !important;
        background-position:center center !important;
        background-repeat:no-repeat !important;
    }

    .hero-tag{
        font-size:12px;
        letter-spacing:2px;
        padding:10px 20px;
    }

    .hero-inner h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-inner p{
        font-size:16px;
        line-height:1.6;
    }

    .hero-btn{
        padding:15px 28px;
        font-size:15px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .hero-banner{
        height:650px;
    }

    .hero-inner h1{
        font-size:34px;
    }

    .hero-inner p{
        font-size:15px;
    }
}
/*2nd sec about*/
/* ===========================
   ABOUT STORY SECTION
=========================== */

.about-story-section{
    padding:120px 0;
    background:var(--off-white);
    position:relative;
    overflow:hidden;
}

.about-story-section::before{
    content:'';
    position:absolute;
    top:0;
    right:-150px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(232,148,10,.05);
}

.about-story-grid{
    display:grid;
    grid-template-columns:1.3fr .8fr;
    gap:60px;
    align-items:center;
}

.about-story-content p{
    margin-bottom:18px;
    line-height:1.9;
    color:var(--gray-600);
}

.impact-highlight{
    margin-top:30px;
    padding:25px;
    border-left:5px solid var(--gold);
    background:#fff;
    border-radius:0 16px 16px 0;
    font-size:20px;
    font-weight:600;
    color:var(--navy);
    box-shadow:var(--shadow-md);
}

.about-side-cards{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.vision-card,
.mission-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow-md);
    transition:.4s ease;
    border:1px solid rgba(0,0,0,.05);
}

.vision-card:hover,
.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.vision-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(232,148,10,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.vision-card h3,
.mission-card h3{
    color:var(--navy);
    margin-bottom:15px;
}

.vision-card p,
.mission-card p{
    color:var(--gray-600);
    line-height:1.8;
}

/* Reveal Animation */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

@media(max-width:991px){

    .about-story-grid{
        grid-template-columns:1fr;
    }

}

/* CONNECT CTA */
.connect-section{
    padding:120px 0;
    background:var(--off-white);
}

.connect-box{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        var(--navy) 0%,
        #223f72 100%
    );
    border-radius:30px;
    padding:80px;
    text-align:center;
    box-shadow:0 25px 60px rgba(26,53,96,.18);
}

.connect-content{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
}

.connect-label{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(232,148,10,.15);
    border:1px solid rgba(232,148,10,.25);
    color:var(--gold);
    font-size:12px;
    font-weight:600;
    letter-spacing:.15em;
    text-transform:uppercase;
    margin-bottom:25px;
}

.connect-box h2{
    color:#fff;
    font-size:clamp(38px,5vw,64px);
    line-height:1.1;
    margin-bottom:25px;
}

.connect-box h2 span{
    color:var(--gold);
    font-style:italic;
}

.connect-box p{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 40px;
}

.connect-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-connect-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:var(--gold);
    color:#fff;
    border-radius:60px;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

.btn-connect-primary:hover{
    transform:translateY(-3px);
}

.btn-connect-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    border-radius:60px;
    text-decoration:none;
    transition:.35s ease;
}

.btn-connect-outline:hover{
    background:rgba(255,255,255,.08);
}

.connect-shape{
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(232,148,10,.08);
    top:-120px;
    right:-100px;
}

.connect-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    left:-80px;
    bottom:-80px;
}

@media(max-width:768px){

    .connect-box{
        padding:60px 30px;
    }

    .connect-box h2{
        font-size:38px;
    }

    .connect-box p{
        font-size:16px;
    }
}
/* CLIENTS SECTION */
.clients-section{
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );
}

.clients-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.client-industries{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.industry-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(26,53,96,.08);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
    height:100%;
}

.industry-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--gold),
        #f3b347
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(26,53,96,.12);
}

.industry-card:hover::before{
    transform:scaleX(1);
}

.industry-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(232,148,10,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.industry-icon i{
    font-size:30px;
    color:var(--gold);
}

.industry-card h3{
    color:var(--navy);
    margin-bottom:18px;
    font-size:20px;
    line-height:1.4;
}

.industry-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.industry-card li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:18px;
    color:var(--gray-600);
}

.industry-card li:last-child{
    border-bottom:none;
}

.industry-card li::before{
    content:'•';
    color:var(--gold);
    position:absolute;
    left:0;
}

.client-stats{
    margin-top:70px;
    padding:40px;
    border-radius:24px;
    background:var(--navy);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.client-stat h3{
    color:var(--gold);
    font-size:42px;
    margin-bottom:8px;
}

.client-stat p{
    color:rgba(255,255,255,.8);
    margin:0;
}

@media(max-width:991px){
    .client-industries{
        grid-template-columns:repeat(2,1fr);
    }

    .client-stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .client-industries{
        grid-template-columns:1fr;
    }

    .client-stats{
        grid-template-columns:1fr;
    }
}



/* ===================================
   HERO SECTION
=================================== */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    background:#0f2744;
}

.hero-slider{
    position:relative;
    width:100%;
    height:100%;
}

.hero-slide{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    opacity:0;
    visibility:hidden;
    transition:.8s ease;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

/* Background Images */

.slide1{
    background:
    linear-gradient(rgba(8,30,54,.75),rgba(8,30,54,.75)),
    url('../images/slide1.png');
}

.slide2{
    background:
    linear-gradient(rgba(8,30,54,.75),rgba(8,30,54,.75)),
    url('../images/slide2.png');
}

.slide3{
    background:
    linear-gradient(rgba(8,30,54,.75),rgba(8,30,54,.75)),
    url('../images/slide3.png');
}

.hero-content{
    max-width:1000px;
    padding:0 20px;
}

.hero-badge{
    display:inline-block;
    padding:12px 30px;
    border-radius:50px;
    border:1px solid rgba(255,177,0,.4);
    color:#ffb100;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.hero h1{
    font-size:78px;
    line-height:1.1;
    color:#fff;
    font-weight:800;
    margin-bottom:25px;
}

.line-gold{
    display:block;
    color:#ff9f0a;
    font-style:italic;
}

.hero-desc{
    font-size:22px;
    color:rgba(255,255,255,.8);
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#ff9f0a;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

/* Dots */

.hero-dots{
    position:absolute;
    left:50%;
    bottom:155px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    cursor:pointer;
}

.dot.active{
    background:#ff9f0a;
}

/* Scroll */

.scroll-indicator{
    position:absolute;
    bottom:125px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
    font-size:12px;
    letter-spacing:2px;
    z-index:20;
}

/* Stats Bar */

.hero-stats-bar{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(17,51,82,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    z-index:20;
}

.hero-stat{
    padding:28px 35px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.08);
}

.hero-stat h3{
    color:#ff9f0a;
    font-size:42px;
    margin-bottom:5px;
}

.hero-stat p{
    color:#d0d7df;
    font-size:14px;
    text-transform:uppercase;
}

.hero-cta{
    padding:20px 30px;
}

.hero-cta a{
    background:#ff9f0a;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:50px;
    font-weight:700;
}

/* Responsive */

@media(max-width:768px){

.hero{
    height:900px;
}

.hero h1{
    font-size:42px;
}

.hero-desc{
    font-size:18px;
}

.hero-stats-bar{
    position:relative;
}

.hero-stat{
    width:50%;
}
}

:root {
  --navy: #1A3560;
  --navy-deep: #083754;
  --navy-mid: #083754;
  --gold: #f4970f;
  --gold-light: #f4970f;
  --gold-pale: #FEF3DC;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100: #F2F1EE;
  --gray-200: #E8E6E1;
  --gray-400: #9E9B94;
  --gray-600: #6B6860;
  --gray-800: #2E2C28;
  --text: #1A1816;
  --font-display: 'Lato', sans-serif;
  --font-body: 'Lato', sans-serif;
  --shadow-sm: 0 2px 8px rgba(26,53,96,0.08);
  --shadow-md: 0 8px 32px rgba(26,53,96,0.14);
  --shadow-lg: 0 20px 60px rgba(26,53,96,0.2);
  --radius: 6px;
  --radius-lg: 14px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:var(--font-body);color:var(--text);background:var(--white);overflow-x:hidden;}

/* ===== NAV ===== */
nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26,53,96,0.08);
  transition: box-shadow 0.3s, background 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(26,53,96,0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding:5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.logo-mark span {
  font-family: lato;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 2px;
}
.logo-text-wrap {line-height: 1.15;}
.logo-name {
  font-family: lato;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  display: block;
}
.logo-think { color: var(--navy); }
.logo-sure  { color: var(--gold); }
.logo-tagline {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-center a {
  text-decoration: none;
  color: var(--navy);
  font-size: 16.5px !important; /* custom css added*/
  font-weight: 600 !important; /* custom css added*/
  padding: 7px 14px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: all 0.22s;
  white-space: nowrap;
}
.nav-center a:hover { color: var(--gold); background: var(--gold-pale); }
.nav-center a.active { color: var(--gold); background: var(--gold-pale); }

.nav-right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f2a118 ; /* custom css added*/;
  color: var(--white) !important;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,148,10,0.35); }
.nav-cta svg { transition: transform 0.25s; }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(26,53,96,0.12);
  z-index: 999;
  padding: 20px 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s;
}
.mobile-nav.open {
  display: block;
  animation: slideDown 0.3s forwards;
}
@keyframes slideDown {
  to { transform: translateY(0); opacity: 1; }
}
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 40px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--off-white); border-left-color: var(--gold); color: var(--gold); }
.mobile-nav .mobile-cta {
  display: block;
  margin: 16px 40px 8px;
  background: var(--navy);
  color: var(--white) !important;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  border-left: none !important;
}
.mobile-nav .mobile-cta:hover { background: var(--gold); }

/* ===== HERO ===== 
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding-top: 72px; */
  
}
/* Animated gradient orbs 
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,148,10,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(33,61,112,0.5) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,148,10,0.15) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -5s;
  animation-duration: 12s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}
*/

/* Grid overlay 
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}*/
/* Noise texture 
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 60px 32px;
  max-width: 760px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,148,10,0.12);
  border: 1px solid rgba(232,148,10,0.3);
  color: var(--gold-light);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: heroFadeUp 0.8s ease 0.1s both;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: heroFadeUp 0.8s ease 0.25s both;
}
.hero h1 .line-gold { color: var(--gold-light); display: block; font-style: italic; }
.hero h1 .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  color: transparent;
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 300;
  animation: heroFadeUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease 0.55s both;
}
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 15px 32px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(232,148,10,0.3);
}
.hero-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,148,10,0.45);
}
.hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 15px 32px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.hero-btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(232,148,10,0.08); }
*/
/* Floating stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: heroFadeUp 0.8s ease 0.7s both;
}
.hero-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex; align-items: stretch;
  padding: 0 40px;
}
.hero-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(255,255,255,0.04); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: heroFadeUp 1s ease 1.2s both;
  z-index: 2;
}
.scroll-indicator-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  position: relative; overflow: hidden;
}
.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{top:-100%} 100%{top:100%} }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Floating word particles */
.hero-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  animation: wordFloat linear infinite;
  white-space: nowrap;
}
@keyframes wordFloat {
  0%   { transform: translateY(0) rotate(var(--rot)); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-120px) rotate(var(--rot)); opacity: 0; }
}

/* ===== VALUES MARQUEE ===== */
.marquee-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  padding: 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeAnim 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px;
  border-right: 1px solid var(--gray-200);
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.marquee-item .dot { color: var(--gold); font-weight: 700; font-size: 16px; }
@keyframes marqueeAnim { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTION BASE ===== */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.72; margin-top: 16px;
  font-weight: 300;
}
.divider { width: 48px; height: 3px; background: var(--gold); margin: 22px 0; border-radius: 2px; }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  text-decoration: none; padding: 13px 28px;
  font-size: 14px; font-weight: 600; border-radius: 100px;
  transition: all 0.25s; border: 2px solid transparent;
}
.btn-navy:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,148,10,0.3); }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  text-decoration: none; padding: 13px 28px;
  font-size: 14px; font-weight: 600; border-radius: 100px;
  border: 2px solid var(--navy); transition: all 0.25s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ===== WHO WE ARE ===== */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-visual-block {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 20px;
  padding: 52px 44px;
  color: white;
  display: none !important;
  position: relative; overflow: hidden;
}
.who-visual-block::before {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  top: -60px; right: -60px;
  background: rgba(232,148,10,0.15);
  border-radius: 50%;

}
.who-visual-block::after {
  /*content: 'IMPACT'; position: absolute;*/
  bottom: -20px; right: 20px;
  font-family: var(--font-display); font-size: 90px; font-weight: 800;
  color: rgba(255,255,255,0.04); letter-spacing: -2px;
  pointer-events: none;
}
.who-big-text {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1; margin-bottom: 20px;
  position: relative;
}
.who-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.who-pillars { display: flex; flex-direction: column; gap: 10px; }
.who-pillar {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07);
  padding: 12px 18px; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 13.5px; color: rgba(255,255,255,0.85); font-weight: 500;
}
.who-features { margin-top: 36px; display: flex; flex-direction: column; gap: 38px !important; }
.who-feature { display: flex; align-items: flex-start; gap: 16px; }
.who-feature-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.who-feature h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.who-feature p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
  cursor: default;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; }
.svc-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.svc-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.svc-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.svc-tag { font-size: 11px; background: var(--gray-100); color: var(--gray-600); padding: 3px 10px; border-radius: 100px; font-weight: 500; }

/* ===== IMPACT ===== */
.impact-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.impact-section::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,148,10,0.1) 0%, transparent 70%);
}
.impact-title { font-family: var(--font-display); font-size: clamp(28px,3vw,44px); color: var(--white); font-weight: 700; text-align: center; margin-bottom: 14px; position: relative; }
.impact-sub { text-align: center; color: rgba(255,255,255,0.5); font-size: 16px; max-width: 480px; margin: 0 auto 60px; font-weight: 300; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 2px; }
.impact-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.impact-cell {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 24px; text-align: center;
  transition: background 0.3s;
}
.impact-cell:first-child { border-radius: var(--radius-lg) 0 0 0; }
.impact-cell:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.impact-row2 .impact-cell:first-child { border-radius: 0 0 0 var(--radius-lg); }
.impact-row2 .impact-cell:last-child { border-radius: 0 0 var(--radius-lg) 0; }
.impact-cell:hover { background: rgba(255,255,255,0.09); }
.impact-num { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.impact-lbl { font-size: 15.5px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ===== WHY ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px 22px; border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card.navy { background: var(--navy); border-color: var(--navy); grid-column: span 2; }
.why-card-icon { font-size: 28px; margin-bottom: 10px; }
.why-card h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 12.5px; color: var(--gray-600); line-height: 1.55; }
.why-card.navy h4 { color: var(--white); font-size: 15px; }
.why-card.navy p { color: rgba(255,255,255,0.6); }
.why-list { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.why-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--gray-800); font-weight: 500; }
.why-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.vm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.vm-card { border-radius: var(--radius-lg); padding: 26px 22px; }
.vm-vision { background: var(--navy); }
.vm-mission { background: var(--gold); }
.vm-card h4 { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; margin-bottom: 10px; }
.vm-vision h4 { color: var(--gold-light); }
.vm-mission h4 { color: rgba(255,255,255,0.8); }
.vm-card p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.memberships { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.badge { display: flex; align-items: center; gap: 8px; background: var(--gold-pale); border: 1px solid rgba(232,148,10,0.2); padding: 9px 16px; border-radius: var(--radius); font-size: 12.5px; font-weight: 600; color: var(--navy); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.team-card { display: flex; align-items: center; gap: 12px; background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 14px 18px; transition: all 0.25s; }
.team-card:hover { border-color: var(--gold); background: var(--gold-pale); }
.team-avatar { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--white); flex-shrink: 0; }
.team-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.team-role { font-size: 11.5px; color: var(--gray-600); margin-top: 2px; }

/* ===== CLIENTS ===== */
.clients-section { background: var(--off-white); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-block { background: var(--white); border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--gray-200); transition: box-shadow 0.3s; }
.sector-block:hover { box-shadow: var(--shadow-md); }
.sector-block h4 { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sector-block ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sector-block li { font-size: 13.5px; color: var(--gray-800); display: flex; align-items: center; gap: 8px; }
.sector-block li::before { content: '→'; color: var(--gold); font-size: 11px; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-section{
    padding:100px 0;
}

.testimonialSwiper{
    padding:20px 10px 60px;
}

.swiper-slide{
    height:auto;
}

.testi-card{
    height:100%;
}
.testi-section { background: var(--navy-deep); position: relative; overflow: hidden; }
.testi-section::after {
  content: '"'; position: absolute;
  bottom: -80px; right: 20px;
  font-family: var(--font-display); font-size: 400px; font-weight: 800;
  color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-header .section-label { justify-content: center; }
.testi-header .section-label::before { display: none; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,148,10,0.3); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-mark { color: var(--gold); font-family: var(--font-display); font-size: 52px; line-height: 0.6; margin-bottom: 14px; display: block; }
.testi-text { font-size: 13.5px; line-height: 1.7; font-style: italic; margin-bottom: 22px; }
.testi-author{
    font-size:13px;
    font-weight:600;
    color:#000 !important;
}
.testi-role { font-size: 12px; color: var(--gold-light); margin-top: 3px; }

/* ===== OUR WORK ===== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.work-card-top { padding: 28px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; min-height: 120px; }
.work-card-icon { font-size: 48px; }
.work-card-body { padding: 28px 26px; }
.work-client { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.work-card-body h3 { font-family: var(--font-display); font-size: 17px; color: var(--navy); font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.work-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* ===== INSIGHTS ===== */
.insights-section { background: var(--off-white); }
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.insight-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.insight-card-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 34px 30px; position: relative; overflow: hidden;
}
.insight-card-top::after {
  content: attr(data-fw);
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 90px; font-weight: 800;
  color: rgba(255,255,255,0.06); letter-spacing: -2px; pointer-events: none;
}
.insight-fw-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(232,148,10,0.15);
  border: 1px solid rgba(232,148,10,0.3);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.insight-card-top h3 { font-family: var(--font-display); font-size: 19px; color: var(--white); line-height: 1.35; }
.insight-body { padding: 28px 30px; }
.insight-body > p { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; margin-bottom: 22px; }
.acronym-list { display: flex; flex-direction: column; gap: 9px; }
.acronym-item { display: flex; gap: 12px; align-items: flex-start; }
.acronym-letter { width: 28px; height: 28px; background: var(--navy); color: var(--white); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; font-family: var(--font-display); }
.acronym-letter.gold { background: var(--gold); }
.acronym-text h5 { font-size: 13px; font-weight: 600; color: var(--navy); }
.acronym-text p { font-size: 12px; color: var(--gray-600); margin-top: 1px; line-height: 1.4; }

/* ===== CAREERS ===== */
.careers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.careers-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 20px; padding: 52px 44px; color: white; position: relative; overflow: hidden;
}
.careers-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(232,148,10,0.15); border-radius: 50%;
}
.careers-visual h3 { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 16px; position: relative; }
.careers-visual p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; font-size: 15px; position: relative; }
.careers-email {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  text-decoration: none; padding: 14px 24px;
  border-radius: 100px; font-weight: 600; font-size: 14px;
  transition: all 0.25s; position: relative;
}
.careers-email:hover { background: var(--gold-light); transform: translateY(-2px); }
.careers-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip { font-size: 12px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); }
.careers-features { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.careers-feat { display: flex; align-items: flex-start; gap: 14px; }
.careers-feat-icon { width: 42px; height: 42px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.careers-feat h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.careers-feat p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ===== CONTACT ===== */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-text h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); font-weight: 600; margin-bottom: 4px; }
.contact-info-text p { font-size: 14.5px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.contact-info-text a { color: var(--navy); text-decoration: none; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray-600); margin-bottom: 30px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { min-height: 105px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.form-check input { flex-shrink: 0; margin-top: 2px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: 15px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 100px; cursor: pointer;
  transition: all 0.25s; text-transform: uppercase;
}
.form-submit:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,148,10,0.3); }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 72px 40px 48px; .footer-main{
    display:grid;
    grid-template-columns:minmax(320px,380px) repeat(3,minmax(180px,1fr));
    gap:35px;
} }
.footer-logo-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 14px 0 24px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; font-weight: 700; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.1); }
.footer-social a:hover { background: var(--gold); color: white; border-color: var(--gold); }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #f4970f; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 40px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }
.footer-disclaimer-bar { background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-disclaimer-bar p { max-width: 1200px; margin: 0 auto; padding: 16px 40px; font-size: 14px; color: rgba(255,255,255,0.25); line-height: 1.7; }

/* ===== FLOATING BTN ===== */
.fab {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--gold); color: var(--white);
  text-decoration: none; padding: 14px 24px;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(232,148,10,0.5);
  display: flex; align-items: center; gap: 8px;
  z-index: 998; transition: all 0.3s;
  animation: fabPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2s both;
}
@keyframes fabPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.fab:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,53,96,0.4); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 44px; }
  .hero-stats-inner { gap: 0; }
  .who-grid, .why-grid, .about-grid, .careers-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-row2 { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .services-grid, .sector-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fab { bottom: 20px; right: 20px; padding: 12px 18px; font-size: 12px; }
}

.work-image{
    width: 45%;      /* Change as needed */
    flex-shrink: 0;
}

.work-image img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .work-image img {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 0;
    }

   
}

.testimonial-section{
    padding:80px 0;
    position:relative;
}

.testi-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.swiper{
    padding-bottom:60px;
}

.swiper-button-next,
.swiper-button-prev{
    color:#0f172a;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.swiper-pagination-bullet-active{
    background:#0f172a;
}