/* ==========================================================================
   Insight by Harsh - CSS Stylesheet (Phase 1)
   Recreating KSL Capital Partners visual template & interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Global CSS Reset & Variables
   -------------------------------------------------------------------------- */


   
:root {
    /* Insight by Harsh Color Brand Guide */
    --brand-dark-green: #0f2c20;      /* Deep Forest Green replacing KSL dark blue */
    --brand-dark-green-rgb: 15, 44, 32;
    --brand-gold: #c79a2e;            /* Primary Accent Gold */
    --brand-gold-rgb: 199, 154, 46;
    --brand-gold-muted: #ede7d9;      /* Warm Gold border/lines */
    
    /* Backgrounds & Text Colors */
    --bg-light: #fdfdfd;              /* Off-white */
    --bg-smoke: #f5f7f6;              /* Warm light smoke background */
    --text-dark: #163c2d;             /* Primary Green text for light sections */
    --text-dark-muted: #5c7067;       /* Muted Green-Gray */
    --text-light: #fdfdfd;            /* Ice White text for dark sections */
    --text-light-muted: #a3b3ac;      /* Muted light text */
    
    /* Transition Timings (Matching premium webflow easing) */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}


/*  */

.approach-3d-unique{
    width:100%;
    padding:70px 24px;
    background:
        radial-gradient(circle at 75% 35%, rgba(22,60,45,.18), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(22,60,45,.12), transparent 35%),
        linear-gradient(135deg,#f7fbf8,#ffffff,#eef6f1);
    font-family:Arial, Helvetica, sans-serif;
    overflow:hidden;
}

.approach-3d-container{
    max-width:1120px;
    margin:auto;
    display:grid;
    grid-template-columns:.9fr 1fr;
    gap:45px;
    align-items:center;
}

.approach-3d-content span{
    color:#163c2d;
    font-size:12px;
    font-weight:900;
    letter-spacing:2.8px;
}

.approach-3d-content h2{
    margin:14px 0 18px;
    font-size:52px;
    line-height:1;
    font-weight:900;
    color:#163c2d;
}

.approach-3d-content p{
    margin:0 0 28px;
    max-width:420px;
    font-size:16px;
    line-height:1.8;
    color:#53645d;
}

.approach-3d-content a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 25px;
    background:#163c2d;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.3px;
    box-shadow:0 18px 45px rgba(22,60,45,.30);
    transition:.35s ease;
}

.approach-3d-content a:hover{
    background:#245b45;
    transform:translateY(-5px);
}

.approach-stage{
    height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    perspective:1100px;
}

.scene-3d{
    width:500px;
    height:500px;
    position:relative;
    transform-style:preserve-3d;
    animation:sceneMove 13s ease-in-out infinite;
}

.floor-grid{
    position:absolute;
    left:50%;
    top:58%;
    width:440px;
    height:440px;
    transform:translate(-50%,-50%) rotateX(72deg);
    border-radius:50%;
    background:
      repeating-radial-gradient(circle, rgba(22,60,45,.20) 0 2px, transparent 2px 34px),
      repeating-conic-gradient(from 0deg, rgba(22,60,45,.16) 0 8deg, transparent 8deg 18deg);
    animation:gridSpin 32s linear infinite;
}

.main-sphere{
    position:absolute;
    left:50%;
    top:50%;
    width:145px;
    height:145px;
    transform:translate(-50%,-50%) translateZ(90px);
    border-radius:50%;
    background:
      radial-gradient(circle at 32% 24%,
        rgba(255,255,255,.75) 0%,
        rgba(209,226,218,.55) 14%,
        #3c7a5f 38%,
        #1d4d39 65%,
        #0e2f22 100%);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:
        0 28px 65px rgba(22,60,45,.34),
        inset 10px 10px 20px rgba(255,255,255,.28),
        inset -18px -22px 32px rgba(0,0,0,.42);
    z-index:20;
    animation:centerPulse 6s ease-in-out infinite;
}

.main-sphere strong{
    font-size:15px;
    line-height:1;
    font-weight:900;
    color:#fff;
}

.main-sphere span{
    display:block;
    margin-top:3px;
    font-size:15px;
    line-height:1;
    font-weight:900;
    color:#fff;
}

.main-sphere small{
    margin-top:5px;
    font-size:11px;
    line-height:1;
    font-weight:800;
    letter-spacing:1px;
    color:#f8fff9;
}

.orbit-path{
    position:absolute;
    left:50%;
    top:50%;
    border-radius:50%;
    border:2px solid rgba(22,60,45,.32);
    transform-style:preserve-3d;
    pointer-events:none;
}

.path-one{
    width:380px;
    height:380px;
    transform:translate(-50%,-50%) rotateX(68deg);
    animation:orbitOne 24s linear infinite;
}

.path-two{
    width:450px;
    height:260px;
    border-color:rgba(22,60,45,.42);
    transform:translate(-50%,-50%) rotateX(58deg) rotateY(35deg);
    animation:orbitTwo 22s linear infinite reverse;
}

.path-three{
    width:300px;
    height:450px;
    border-style:dashed;
    transform:translate(-50%,-50%) rotateX(62deg) rotateY(-36deg);
    animation:orbitThree 28s linear infinite;
}

.planet{
    position:absolute;
    width:110px;
    height:110px;
    border-radius:50%;
    background:
      radial-gradient(circle at 32% 24%,
        rgba(255,255,255,.70) 0%,
        rgba(209,226,218,.50) 13%,
        #3c7a5f 38%,
        #1d4d39 65%,
        #0e2f22 100%);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:
        0 28px 65px rgba(22,60,45,.34),
        inset 10px 10px 20px rgba(255,255,255,.25),
        inset -18px -22px 32px rgba(0,0,0,.42);
    z-index:12;
}

.planet span{
    color:#f5fff8 !important;
    font-size:12px;
    line-height:1;
    font-weight:900;
    letter-spacing:1px;
    text-shadow:0 2px 8px rgba(0,0,0,.45);
}

.planet h3{
    color:#ffffff !important;
    margin:7px 0 0;
    padding:0 10px;
    font-size:13px;
    line-height:1.25;
    font-weight:900;
    text-shadow:0 2px 10px rgba(0,0,0,.55);
}

.p1{
    left:50%;
    top:-20px;
    margin-left:-55px;
    animation:planetOne 10s ease-in-out infinite;
}

.p2{
    right:-35px;
    top:50%;
    margin-top:-55px;
    animation:planetTwo 10.5s ease-in-out infinite;
}

.p3{
    left:50%;
    bottom:-20px;
    margin-left:-55px;
    animation:planetThree 10.2s ease-in-out infinite;
}

.p4{
    left:-35px;
    top:50%;
    margin-top:-55px;
    animation:planetFour 10.8s ease-in-out infinite;
}

@keyframes sceneMove{
    0%,100%{
        transform:rotateX(0deg) rotateY(-8deg);
    }
    50%{
        transform:rotateX(6deg) rotateY(8deg);
    }
}

@keyframes gridSpin{
    from{
        transform:translate(-50%,-50%) rotateX(72deg) rotateZ(0);
    }
    to{
        transform:translate(-50%,-50%) rotateX(72deg) rotateZ(360deg);
    }
}

@keyframes centerPulse{
    50%{
        transform:translate(-50%,-50%) translateZ(120px) scale(1.05);
    }
}

@keyframes orbitOne{
    to{
        transform:translate(-50%,-50%) rotateX(68deg) rotateZ(360deg);
    }
}

@keyframes orbitTwo{
    to{
        transform:translate(-50%,-50%) rotateX(58deg) rotateY(35deg) rotateZ(360deg);
    }
}

@keyframes orbitThree{
    to{
        transform:translate(-50%,-50%) rotateX(62deg) rotateY(-36deg) rotateZ(360deg);
    }
}

@keyframes planetOne{
    0%,100%{
        transform:translateZ(0) translateY(0);
    }
    50%{
        transform:translateZ(75px) translateY(-8px);
    }
}

@keyframes planetTwo{
    0%,100%{
        transform:translateZ(0) translateX(0);
    }
    50%{
        transform:translateZ(75px) translateX(8px);
    }
}

@keyframes planetThree{
    0%,100%{
        transform:translateZ(0) translateY(0);
    }
    50%{
        transform:translateZ(75px) translateY(8px);
    }
}

@keyframes planetFour{
    0%,100%{
        transform:translateZ(0) translateX(0);
    }
    50%{
        transform:translateZ(75px) translateX(-8px);
    }
}

@media(max-width:991px){
    .approach-3d-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .approach-3d-content p{
        margin-left:auto;
        margin-right:auto;
    }
}

@media(max-width:575px){
    .approach-3d-unique{
        padding:50px 15px;
    }

    .approach-3d-content h2{
        font-size:38px;
    }

    .approach-stage{
        height:430px;
        transform:scale(.72);
    }
}


@media(max-width:991px){
    .approach-3d-unique{
        padding:60px 18px;
    }

    .approach-3d-container{
        grid-template-columns:1fr;
        gap:25px;
        text-align:center;
    }

    .approach-3d-content h2{
        font-size:44px;
    }

    .approach-3d-content p{
        max-width:520px;
        margin-left:auto;
        margin-right:auto;
        font-size:15px;
    }

    .approach-stage{
        height:500px;
        overflow:visible;
    }
}

@media(max-width:575px){
    .approach-3d-unique{
        padding:45px 14px;
    }

    .approach-3d-content h2{
        font-size:36px;
        margin:10px 0 14px;
    }

    .approach-3d-content p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:22px;
    }

    .approach-3d-content a{
        padding:12px 20px;
        font-size:11px;
    }

    .approach-stage{
        height:390px;
        transform:none;
    }

    .scene-3d{
        width:330px;
        height:330px;
    }

    .floor-grid{
        width:300px;
        height:300px;
        top:58%;
    }

    .main-sphere{
        width:105px;
        height:105px;
    }

    .main-sphere strong,
    .main-sphere span{
        font-size:12px;
    }

    .main-sphere small{
        font-size:8px;
        letter-spacing:.5px;
    }

    .planet{
        width:78px;
        height:78px;
    }

    .planet span{
        font-size:9px;
    }

    .planet h3{
        font-size:9px;
        line-height:1.15;
        padding:0 6px;
    }

    .path-one{
        width:260px;
        height:260px;
    }

    .path-two{
        width:310px;
        height:180px;
    }

    .path-three{
        width:210px;
        height:310px;
    }

    .p1{
        top:-5px;
        margin-left:-39px;
    }

    .p2{
        right:-12px;
        margin-top:-39px;
    }

    .p3{
        bottom:-5px;
        margin-left:-39px;
    }

    .p4{
        left:-12px;
        margin-top:-39px;
    }

    @keyframes centerPulse{
        50%{
            transform:translate(-50%,-50%) translateZ(70px) scale(1.03);
        }
    }

    @keyframes planetOne{
        50%{
            transform:translateZ(45px) translateY(-5px);
        }
    }

    @keyframes planetTwo{
        50%{
            transform:translateZ(45px) translateX(5px);
        }
    }

    @keyframes planetThree{
        50%{
            transform:translateZ(45px) translateY(5px);
        }
    }

    @keyframes planetFour{
        50%{
            transform:translateZ(45px) translateX(-5px);
        }
    }
}

@media(max-width:380px){
    .scene-3d{
        width:300px;
        height:300px;
    }

    .approach-stage{
        height:360px;
    }

    .planet{
        width:70px;
        height:70px;
    }

    .main-sphere{
        width:98px;
        height:98px;
    }

    .path-one{
        width:235px;
        height:235px;
    }

    .path-two{
        width:285px;
        height:165px;
    }

    .path-three{
        width:190px;
        height:285px;
    }

    .p1{
        margin-left:-35px;
    }

    .p2{
        margin-top:-35px;
    }

    .p3{
        margin-left:-35px;
    }

    .p4{
        margin-top:-35px;
    }
}
/* ===============================
   FIXED SCROLL HEADER
================================ */
/*==========================================================
 HEADER
==========================================================*/

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;

    transition:
        background .35s ease,
        height .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

/*==========================================================
 DEFAULT TRANSPARENT
==========================================================*/

.site-header,
.site-header.is-transparent{
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.12);
    height: 100px;
}

.site-header .nav-link{
    color:#fff !important;
}

.site-header .nav-link:hover{
    color:#C79A2E !important;
}

.site-header .brand-logo .logo-title,
.site-header .brand-logo .logo-tagline,
.site-header .brand-logo .logo-subtitle-span{
    color:#fff !important;
}

/*==========================================================
 SCROLLED
==========================================================*/

.site-header.is-scrolled,
.site-header.header-fixed{

    top:0;

    height:82px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(0,0,0,.06);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.site-header.is-scrolled .nav-link,
.site-header.header-fixed .nav-link{

    color:#12382f !important;

}

.site-header.is-scrolled .nav-link:hover,
.site-header.header-fixed .nav-link:hover{

    color:#C79A2E !important;

}

.site-header.is-scrolled .brand-logo .logo-title{

    color:#12382f !important;

}

.site-header.is-scrolled .brand-logo .logo-subtitle-span{

    color:#C79A2E !important;

}

.site-header.is-scrolled .brand-logo .logo-tagline{

    color:#5d6965 !important;

}

/*==========================================================
 SHOW / HIDE
==========================================================*/

.site-header.nav-hidden{

    transform:translateY(-110%);

}

.site-header.nav-visible{

    transform:translateY(0);

}

/*==========================================================
 CONTAINER
==========================================================*/

.navbar-container{

    max-width:1400px;

    height:100%;

    margin:auto;

    padding:0 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==========================================================
 BRAND
==========================================================*/

.brand-logo{

    display:flex;

    align-items:center;

    text-decoration:none;

    height:100%;

}

.logo-title{

    font-family:'Cormorant Garamond',serif;

    font-size:22px;

    font-weight:600;

    line-height:1.1;

    letter-spacing:.05em;

    text-transform:uppercase;

}

.logo-subtitle-span{

    display:block;

    margin-top:3px;

    font-size:10px;

    font-weight:700;

    letter-spacing:.25em;

    text-transform:uppercase;

}

.logo-divider{

    width:1px;

    height:34px;

    margin:0 20px;

    background:rgba(199,154,46,.45);

}

.logo-tagline{

    font-size:10px;

    line-height:1.4;

    font-weight:500;

    letter-spacing:.04em;

}

/*==========================================================
 MENU
==========================================================*/

.nav-menu{

    height:100%;

}

.nav-list{

    display:flex;

    align-items:center;

    gap:32px;

    height:100%;

    list-style:none;

}

.nav-item{

    position:relative;

    display:flex;

    align-items:center;

    height:100%;

}

/*==========================================================
 NAV LINK
==========================================================*/

.nav-link{

    position:relative;

    display:flex;

    align-items:center;

    gap:6px;

    height:100%;

    font-size:15px;

    font-weight:600;

    letter-spacing:.01em;

    text-decoration:none;

    transition:.3s;

}

/*==========================================================
 PREMIUM UNDERLINE
==========================================================*/

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:20px;

    width:0;

    height:2px;

    border-radius:10px;

    background:#C79A2E;

    transition:width .35s ease;

}

.nav-link:hover::after{

    width:100%;

}

.site-header.is-scrolled .nav-link::after{

    bottom:16px;

}

.site-header.header-fixed .nav-link::after{

    bottom:16px;

}
/* 
 */

 .innsight-footer{
    position:relative;
    width:100%;
    background:#123f25;
    color:#fff;
    padding:38px 70px 30px;
    font-family:Georgia, 'Times New Roman', serif;
    overflow:hidden;
}

.footer-container{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.45fr .9fr 1.05fr 1fr;
    gap:75px;
    align-items:flex-start;
}

.footer-brand h2{
    margin:0 0 12px;
    font-size:27px;
    line-height:1.1;
    font-weight:700;
    color:#fff7dd;
    letter-spacing:.2px;
}

.footer-brand h4{
    margin:0 0 18px;
    font-size:13px;
    font-weight:700;
    color:#d7c98d;
    font-family:Arial, sans-serif;
}

.footer-brand p{
    max-width:380px;
    margin:0;
    font-size:13px;
    line-height:1.9;
    color:#b7c9b5;
    text-align:center;
}

.footer-col h5{
    margin:8px 0 25px;
    font-size:9px;
    letter-spacing:6px;
    color:#9eb49f;
    font-family:Arial, sans-serif;
    font-weight:700;
}

.footer-col a{
    display:block;
    margin-bottom:20px;
    color:#f2fff4;
    text-decoration:none;
    font-size:14px;
    line-height:1.2;
    font-family:Arial, sans-serif;
    transition:.25s ease;
}

.footer-col a:hover{
    color:#d7c98d;
    padding-left:5px;
}

.footer-social{
    position:absolute;
    left:18px;
    top:0;
    width:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:26px;
    z-index:3;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:23px;
}

.footer-social a:first-child{
    font-size:24px;
}

.help-box{
    position:absolute;
    right:55px;
    top:135px;
    background:rgba(255,255,255,.05);
    color:#fff;
    padding:14px 18px;
    border-radius:30px;
    font-size:13px;
    font-family:Georgia, 'Times New Roman', serif;
    font-weight:700;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.help-box span{
    margin-right:7px;
}

.chat-btn{
    position:absolute;
    right:40px;
    bottom:22px;
    width:58px;
    height:58px;
    border:0;
    border-radius:50%;
    background:#17492d;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 14px 35px rgba(0,0,0,.22);
}

.chat-btn i{
    color:#eafff0;
}

@media(max-width:992px){
    .innsight-footer{
        padding:45px 25px 35px 75px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:38px;
    }

    .help-box,
    .chat-btn{
        position:fixed;
        z-index:99;
    }
}

@media(max-width:576px){
    .innsight-footer{
        padding:40px 20px 35px 62px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-brand p{
        text-align:left;
    }

    .footer-col h5{
        margin-bottom:18px;
    }

    .help-box{
        right:18px;
        bottom:90px;
        top:auto;
    }

    .chat-btn{
        right:18px;
        bottom:22px;
    }
}

 /*  */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*  */
/* MAIN BOX */
.approach-box{
    width:465px;
    height:430px;
    background:#002633;

    display:flex;
    align-items:center;
    justify-content:center;
}


/* SVG */
.approach-svg{
    width:100%;
    height:100%;
}


/* WHITE LINES */
.line{
    fill:none;
    stroke:#ffffff;
    stroke-width:4.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* TEXT */
.big-text{
    fill:#ffffff;
    font-size:15px;
    letter-spacing:4px;
    font-weight:500;
}


.small-text{
    fill:#ffffff;
    font-size:10.5px;
    letter-spacing:2.5px;
}

.approach-diagram-wrapper{
    width:465px;
    height:433px;
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.ksl-diagram{
    width:465px;
    height:433px;
    display:block;
    overflow:visible;
}

.ksl-line{
    fill:none;
    stroke:#ffffff;
    stroke-width:4.2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.ksl-text{
    fill:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    font-weight:400;
    letter-spacing:6px;
}

.ksl-center{
    fill:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:400;
    letter-spacing:4px;
}

.approach-svg,
.diag-card,
.diag-center-text{
    display:none !important;
}
/* 
 */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    min-height: 100%;
    overflow-x: hidden;
    line-height: 1.5;
    font-weight: 300;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   2. Helper / Utility Layout Classes
   -------------------------------------------------------------------------- */
.container-large {
    width: 100%;
    max-width: 88.5rem; /* 1416px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.container-medium {
    width: 100%;
    max-width: 80.75rem; /* 1292px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.container-small {
    width: 100%;
    max-width: 75rem; /* 1200px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
    background-color: var(--brand-dark-green);
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(var(--brand-gold-rgb), 0.2);
}

/* --------------------------------------------------------------------------
   4. Site Header & Sticky Navbar
   -------------------------------------------------------------------------- */
.site-header {
    width: 100%;
    position: fixed;
    top: 0px !important;
    left: 0;
    z-index: 1000;
    transition: var(--transition-smooth), top 0.3s ease-in-out;
}

/* ===========================
   WHITE NAV ITEMS (DEFAULT)
=========================== */

.site-header,
.site-header.is-transparent{
    background: transparent;
}

.site-header .nav-link{
    color: #ffffff !important;
}

.site-header .nav-link:hover{
    color: #c79a2e !important;
}

.site-header .brand-logo .logo-title,
.site-header .brand-logo .logo-tagline,
.site-header .brand-logo .logo-subtitle-span{
    color: #ffffff !important;
}

/* Scroll hone ke baad */
.site-header.is-scrolled .nav-link,
.site-header.header-fixed .nav-link{
    color:#163c2d !important;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.header-fixed .nav-link:hover{
    color:#c79a2e !important;
}
/* Transparent State (Default at scroll top) */
.site-header.is-transparent {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    height: 100px;
}

.site-header.is-transparent .brand-logo .logo-title {
    color: var(--text-light);
}

.site-header.is-transparent .brand-logo .logo-subtitle-span {
    color: var(--brand-gold);
}

.site-header.is-transparent .brand-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.site-header.is-transparent .nav-link {
    color: var(--text-light);
}

.site-header.is-transparent .nav-link:hover {
    color: var(--brand-gold);
}

.site-header.is-transparent .btn-secondary {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-transparent .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}

.site-header.is-transparent .hamburger-line {
    background-color: var(--text-light);
}

/* Scrolled/Sticky Solid State */
.site-header.is-scrolled {
    background-color: rgba(253, 253, 253, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--brand-gold-muted);
    height: 80px;
    top: 0; /* Align directly to top when scrolled */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header.is-scrolled .brand-logo .logo-title {
    color: var(--text-dark);
}

.site-header.is-scrolled .brand-logo .logo-subtitle-span {
    color: var(--brand-gold);
}

.site-header.is-scrolled .brand-logo .logo-tagline {
    color: var(--text-dark-muted);
}

.site-header.is-scrolled .nav-link {
    color: var(--text-dark);
}

.site-header.is-scrolled .nav-link:hover {
    color: var(--brand-gold);
}

.site-header.is-scrolled .btn-secondary {
    color: var(--text-dark);
    border-color: rgba(var(--brand-dark-green-rgb), 0.3);
}

.site-header.is-scrolled .btn-secondary:hover {
    background-color: rgba(var(--brand-dark-green-rgb), 0.05);
    border-color: var(--brand-dark-green);
}

.site-header.is-scrolled .hamburger-line {
    background-color: var(--text-dark);
}

/* Header Hide/Reveal on Scroll Direction */
.site-header.nav-hidden {
    transform: translateY(-110%);
}

.site-header.nav-visible {
    transform: translateY(0);
}

/* Navbar Layout Container */
.navbar-container {
    height: 100%;
    max-width: 88.5rem; /* 1416px */
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

/* Brand Logo Styling */
.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    color:#fff !important;
}

.brand-logo .logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.brand-logo .logo-subtitle-span {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    display: block;
}

.brand-logo .logo-divider {
    width: 1px;
    height: 32px;
    background-color: var(--brand-gold-muted);
    opacity: 0.7;
    margin: 0 1.25rem;
}

.brand-logo .logo-tagline {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

/* Navigation Links */
.nav-menu {
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 1.75rem; /* 28px spacing */
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 0.25rem;
    position: relative;
    cursor: pointer;
}

/* Hover underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;   /* gap increase */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: var(--transition-fast);
    margin-top:50px !important;
}

.nav-link:hover::after {
    width: 100%;
}
.site-header.is-scrolled .nav-link::after {
    bottom: 18px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Arrow indicator on hover */
.dropdown-icon {
    width: 8px;
    height: 5px;
    transition: transform 0.2s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.dropdown-menu {
    position: absolute;
    top: calc(100% - 15px); /* Pre-bridge spacing */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-light);
    border: 1px solid var(--brand-gold-muted);
    border-radius: 6px;
    padding: 0.75rem 0.5rem;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.25s;
    z-index: 1000;
    
    margin-top:100px !important;
}

/* Bridging spacing gap for hover */
.nav-item.dropdown::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: block;
    text-align: left;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: rgba(var(--brand-gold-rgb), 0.08);
    color: var(--brand-dark-green);
    transform: translateX(3px);
}

/* Dropdown Hover State */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Header CTAs */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button Classes */
.btn {
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid currentColor;
    padding: 8px 16px;
}

.btn-primary {
    background-color: var(--brand-dark-green);
    color: var(--text-light);
    border: 1.5px solid var(--brand-dark-green);
    padding: 8px 18px;
}

.btn-primary:hover {
    background-color: #081711;
    border-color: #081711;
}

/* Scrolled overrides for secondary/primary buttons */
.site-header.is-scrolled .btn-primary {
    background-color: var(--brand-dark-green);
    border-color: var(--brand-dark-green);
    color: var(--text-light);
}

.site-header.is-scrolled .btn-primary:hover {
    background-color: #081711;
    border-color: #081711;
}

/* Mobile Toggle Hamburger Icon */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Hero Section with Background Video overlay
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 44, 32, 0.75) 0%, rgba(10, 20, 16, 0.4) 60%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 88.5rem; /* 1416px */
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px; /* Offset for header overlay */
}

.hero-content-card {
    max-width: 680px;
    text-align: left;
    margin-top: auto;
    margin-bottom: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.hero-badge {
    border: 1px solid var(--brand-gold);
    background-color: rgba(var(--brand-gold-rgb), 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    width: fit-content;
    color: var(--brand-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem); /* Responsive fluid header sizes */
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero-title .highlight-gold {
    color: var(--brand-gold);
    font-weight: 500;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-hero {
    font-size: 15px;
    font-weight: 600;
    height: 48px;
    padding: 0 28px;
    border-radius: 6px;
}

.btn-hero-primary {
    background-color: var(--brand-dark-green);
    color: var(--text-light);
    border: 1.5px solid var(--brand-dark-green);
    gap: 10px;
}

.btn-hero-primary:hover {
    background-color: #0c241a;
    border-color: #0c241a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    width: 16px;
    height: 10px;
    transition: transform 0.25s ease-in-out;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-hero-secondary:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 2.5rem;
    align-self: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-scroll-indicator:hover {
    color: var(--text-light);
}

.scroll-arrow {
    width: 12px;
    height: 42px;
    animation: scrollBounce 2s infinite ease-in-out;
}

/* Keyframes Animations */
@keyframes heroFadeReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* --------------------------------------------------------------------------
   6. Responsive Adaptations (Breakpoints matching KSL template)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 991px) {
    .container-large {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .navbar-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Menu Drawer Layout */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--brand-dark-green);
        z-index: 1001;
        padding: 100px 2.5rem 2.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow-y: auto;
    }

    .site-header.menu-open .nav-menu {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 1.5rem;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }

    .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 20px;
        color: var(--text-light) !important;
        padding: 0.5rem 0;
        width: 100%;
        justify-content: space-between;
    }

    .nav-link::after {
        display: none; /* Hide hover line on mobile */
    }

    .dropdown-icon {
        width: 12px;
        height: 8px;
    }

    /* Inline mobile dropdown lists */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-item.dropdown.is-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0 0.5rem 1rem;
        border-left: 1px solid rgba(var(--brand-gold-rgb), 0.3);
        margin-top: 0.25rem;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a:hover {
        background-color: transparent;
        color: var(--brand-gold);
        transform: none;
    }

    /* Actions positioning on mobile */
    .nav-actions {
        gap: 0.75rem;
    }

    .btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .site-header.menu-open .nav-actions .btn {
        display: none; /* Hide primary nav CTA buttons behind overlay when open */
    }

    /* Toggle Hamburger Animation */
    .site-header.menu-open .line-top {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--text-light) !important;
    }

    .site-header.menu-open .line-middle {
        opacity: 0;
    }

    .site-header.menu-open .line-bottom {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--text-light) !important;
    }
}

@media screen and (max-width: 767px) {
    .container-large {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .navbar-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .site-header.is-transparent {
        height: 80px;
    }

    .brand-logo .logo-divider {
        display: none;
    }

    .brand-logo .logo-tagline {
        display: none;
    }

    .hero-content-card {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   7. Search Icon & Fullscreen Search Overlay Styles
   -------------------------------------------------------------------------- */
.search-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light); /* Default transparent header state */
    transition: var(--transition-fast);
}

.search-toggle:hover {
    color: var(--brand-gold);
}

.site-header.is-scrolled .search-toggle {
    color: var(--text-dark); /* Solid header state */
}

.site-header.is-scrolled .search-toggle:hover {
    color: var(--brand-gold);
}

.search-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Overlay Background */
.search-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 44, 32, 0.96); /* Deep forest green translucent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Initially hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s;
}

/* Visible State */
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Modal Inner Container */
.search-modal-container {
    width: 100%;
    max-width: 720px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-overlay.is-open .search-modal-container {
    transform: scale(1) translateY(0);
}

/* Header inside modal (Brand logo) */
.search-modal-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.search-modal-header .brand-logo {
    cursor: default;
}

.search-modal-header .brand-logo .logo-title {
    color: var(--text-light);
}

.search-modal-header .brand-logo .logo-subtitle-span {
    color: var(--brand-gold);
}

.search-modal-header .brand-logo .logo-tagline {
    color: var(--text-light-muted);
}

/* Search input elements */
.search-modal-content {
    width: 100%;
}

.search-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.3s ease-in-out;
}

.search-input-wrapper:focus-within {
    border-color: var(--brand-gold);
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-light);
    padding: 0.75rem 3.5rem 0.75rem 0.5rem;
    line-height: 1.2;
}

/* Hide default browser search cancellations */
.search-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-results-button,
.search-input::-webkit-search-results-decoration {
    display: none;
}

.search-input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input-wrapper:focus-within .search-input-icon {
    color: var(--brand-gold);
}

.search-placeholder-msg {
    font-family: 'Inter', sans-serif;
    color: var(--text-light-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 1.25rem;
    text-align: center;
}

/* Close Button (×) in top right */
.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.search-close:hover {
    color: var(--text-light);
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Make sure the navbar search stays responsive and aligns with hamburgers */
@media screen and (max-width: 991px) {
    .search-toggle {
        padding: 6px;
    }
    .search-icon {
        width: 18px;
        height: 18px;
    }
    .search-close {
        top: 20px;
        right: 20px;
    }
}


/* services */

/* --------------------------------------------------------------------------
   9. Our Approach Section Styles
   -------------------------------------------------------------------------- */
.premium-approach-section{
    width:100%;
    padding:25px 24px 25px;
    background:
        radial-gradient(circle at 12% 15%, rgba(199,154,46,.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(22,60,45,.15), transparent 30%),
        linear-gradient(135deg,#f8f6f0 0%,#ffffff 48%,#eef4f6 100%);
    font-family:'Inter', Arial, Helvetica, sans-serif;
    overflow:hidden;
}

.premium-approach-container{
    max-width:1240px;
    margin:0 auto;
}

.premium-approach-head{
    text-align:left;
    margin-bottom:28px;
}

.premium-approach-head span{
    display:inline-block;
    margin-bottom:12px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2.5px;
    color:#c79a2e;
}

.premium-approach-head h2{
    margin:0;
    font-size:52px;
    line-height:1;
    font-weight:900;
    color:#163c2d;
}

.premium-approach-head p{
    margin:16px 0 0;
    font-size:18px;
    color:#4b5563;
    font-weight:500;
}


/* GRID */
.premium-approach-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}


/* STEP */
.premium-step{
    --clr:#163c2d;
    position:relative;
    padding-top:82px;
    color:var(--clr);
}


/* TOP CIRCLE */
.premium-icon-wrap{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:112px;
    height:112px;
    border-radius:50%;

    background:
    linear-gradient(
        145deg,
        var(--clr),
        color-mix(in srgb, var(--clr) 72%, #000)
    );

    display:flex;
    align-items:center;
    justify-content:center;
    z-index:4;

    box-shadow:
        0 18px 35px color-mix(in srgb, var(--clr) 38%, transparent),
        inset 0 5px 12px rgba(255,255,255,.35);
}


/* DOWN ARROW */
.premium-icon-wrap:after{
    content:"";
    position:absolute;
    bottom:-16px;
    left:50%;
    width:34px;
    height:34px;

    transform:translateX(-50%) rotate(45deg);

    background:var(--clr);
    border-radius:0 0 9px 0;
    z-index:-1;
}


/* INNER ICON */
.premium-icon{
    width:72px;
    height:72px;
    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    inset 0 0 0 6px rgba(255,255,255,.65);
}

.premium-icon i{
    font-size:31px;
    color:var(--clr);
}



/* CARD */
.premium-card{
    position:relative;

    min-height:235px;

    padding:52px 22px 25px;

    border-radius:22px;

    background:rgba(255,255,255,.85);

    border:2px solid var(--clr);

    box-shadow:
        0 22px 50px rgba(15,23,42,.12),
        inset 0 1px 0 rgba(255,255,255,.85);

    backdrop-filter:blur(10px);

    transition:.35s ease;
}


/* LIGHT TOP EFFECT */
.premium-card:before{
    content:"";
    position:absolute;
    inset:0;

    border-radius:20px;

    background:
    linear-gradient(
        180deg,
        color-mix(in srgb, var(--clr) 12%, transparent),
        transparent 55%
    );

    pointer-events:none;
}


/* SIDE DOT */
.premium-card:after{
    content:"";
    position:absolute;

    right:-7px;
    top:50%;

    width:13px;
    height:13px;

    border-radius:50%;

    background:var(--clr);

    transform:translateY(-50%);

    box-shadow:
    0 0 0 6px
    color-mix(in srgb, var(--clr) 15%, transparent);
}


/* HOVER */
.premium-step:hover .premium-card{

    transform:translateY(-8px);

    box-shadow:
        0 32px 70px rgba(15,23,42,.18),
        0 0 35px color-mix(in srgb, var(--clr) 18%, transparent);
}



/* TEXT */
.premium-card h3{
    position:relative;

    margin:0 0 17px;

    font-size:24px;
    font-weight:900;

    color:#163c2d;
}


.premium-card ul{
    position:relative;

    margin:0;

    padding-left:18px;
}


.premium-card li{

    font-size:13.5px;

    line-height:1.8;

    color:#374151;

    font-weight:600;
}



/* ONLY GIVEN COLORS */

.orange{
    --clr:#c79a2e;
}

.green{
    --clr:#163c2d;
}

.cyan{
    --clr:#c79a2e;
}

.blue{
    --clr:#163c2d;
}



/* RESPONSIVE */

@media(max-width:991px){

    .premium-approach-grid{
        grid-template-columns:repeat(2,1fr);
        gap:50px 28px;
    }

}



@media(max-width:575px){

    .premium-approach-section{
        padding:60px 15px 75px;
    }


    .premium-approach-head h2{
        font-size:38px;
    }


    .premium-approach-grid{
        grid-template-columns:1fr;
    }

}
/* ABOUT SHOWCASE FINAL CSS */

.about-showcase-section{
    width:100%;
    padding:2rem 2rem;
    background:#FDFBF8;
    position:relative;
    overflow:hidden;
}

.about-bg-glow{
    position:absolute;
    width:650px;
    height:650px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(199,154,46,.08), transparent 70%);
    pointer-events:none;
}

.container-large{
    max-width:1320px;
    margin:0 auto;
    padding:0 20px;
}

.about-showcase-wrapper{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:4.5rem;
    align-items:start;
    position:relative;
    z-index:2;
}

.about-image-container{
    position:relative;
    width:100%;
    height:620px;
    overflow:hidden;
    border-radius:30px;
    padding:12px;
    background:linear-gradient(135deg, rgba(190,143,32,.8), rgba(8,45,35,.95));
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.about-premium-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:22px;
    transition:transform .8s ease;
}

.about-image-container:hover .about-premium-image{
    transform:scale(1.06);
}

.about-image-container::after{
    content:"";
    position:absolute;
    inset:12px;
    border-radius:22px;
    background:linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
    pointer-events:none;
}

.about-floating-badge{
    position:absolute;
    left:35px;
    bottom:35px;
    z-index:5;
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 18px 45px rgba(0,0,0,.25);
}

.badge-number{
    font-size:22px !important;
    line-height:1;
    font-weight:800;
    color:#0b3328;
}

.badge-text{
    font-size:13px;
    font-weight:700;
    line-height:1.4;
    color:#263d35;
}

.about-label{
    display:inline-block;
    margin-bottom:16px;
    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:800;
    letter-spacing:2.5px;
    color:#b88618;
}

.about-heading{
    margin:0 0 24px;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.4rem,4vw,3.3rem);
    line-height:1.1;
    font-weight:600;
    color:#092f26;
}

.about-paragraph{
    margin:0 0 20px;
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.85;
    color:#42534d;
    text-align:justify;
}

.about-paragraph strong{
    color:#092f26;
}

.about-features-grid{
    margin-top:32px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.about-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border-radius:16px;
    border:1px solid rgba(9,47,38,.08);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    font-size:14px;
    font-weight:700;
    color:#173d33;
}

.about-check{
    width:28px;
    height:28px;
    min-width:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0b3328;
    color:#d6a22b;
    font-size:15px;
    font-weight:800;
}

/* STATS 4 CARD ONE LINE */
.image-bottom-stats{
    margin-top:45px;
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    position:relative;
    z-index:2;
}

.about-stat-card{
    background:#ffffff;
    padding:28px 20px;
    min-height:135px;
    border-radius:22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(184,134,24,.25);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.about-stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.14);
}

.about-stat-number{
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    line-height:1;
    font-weight:800;
    color:#b88618;
}

.about-stat-label{
    margin-top:12px;
    font-size:13px;
    font-weight:700;
    text-align:center;
    color:#173d33;
}

.about-cta-container{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.btn-hero-primary{
    min-height:54px;
    padding:0 30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#b98a19;
    color:#061f19;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
    transition:.3s ease;
}

.btn-hero-primary:hover{
    background:#d2a334;
    transform:translateY(-3px);
}

.about-secondary-link{
    color:#0b3328;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    border-bottom:1px solid currentColor;
}

@media(max-width:991px){
    .about-showcase-section{
        padding:4rem 2rem;
    }

    .about-showcase-wrapper{
        grid-template-columns:1fr;
        gap:3rem;
    }

    .about-image-container{
        height:460px;
    }

    .image-bottom-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .about-heading{
        font-size:40px;
    }
}

@media(max-width:575px){
    .about-showcase-section{
        padding:3rem 1.2rem;
    }

    .container-large{
        padding:0;
    }

    .about-image-container{
        height:350px;
    }

    .about-floating-badge{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .about-features-grid,
    .image-bottom-stats{
        grid-template-columns:1fr;
    }

    .about-heading{
        font-size:34px;
    }

    .about-cta-container{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* --------------------------------------------------------------------------
   11. About Vision Banner Section Styles
   -------------------------------------------------------------------------- */
/* =====================================
   PREMIUM MISSION VISION SECTION
===================================== */

.vision-banner-section{
    width:100%;
    padding:2rem 2rem;
    background:#FDFBF8;
}


.vision-banner-wrapper{

    max-width:1350px;

    margin:0 auto;

}



.vision-image-container{

    position:relative;

    height:650px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 35px 80px rgba(0,0,0,.22);

}


/* IMAGE */

.vision-premium-image{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.9s ease;

}


.vision-image-container:hover 
.vision-premium-image{

    transform:scale(1.07);

}



/* DARK OVERLAY */


.vision-gradient-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(4,35,28,.95),
        rgba(4,35,28,.70),
        rgba(4,35,28,.10)
    );

}


/* CONTENT */


.vision-content{

    position:absolute;

    left:70px;

    top:50%;

    transform:translateY(-50%);

    max-width:700px;

    z-index:3;

}


.vision-label{

    display:inline-block;

    margin-bottom:18px;

    font-size:13px;

    font-weight:800;

    letter-spacing:3px;

    color:#d8a733;

}



.vision-heading{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    line-height:1.05;

    font-weight:700;

    color:#fff;

}



.vision-text{

    margin-top:22px;

    max-width:520px;

    font-size:17px;

    line-height:1.7;

    color:rgba(255,255,255,.82);

}



/* CARDS */


.vision-card-wrapper{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}


.vision-info-card{

    padding:28px;

    border-radius:22px;


    background:
    rgba(255,255,255,.12);


    backdrop-filter:blur(16px);


    border:
    1px solid rgba(255,255,255,.25);


    transition:.35s ease;

}



.vision-info-card:hover{

    transform:translateY(-8px);

    background:
    rgba(255,255,255,.18);

}



.vision-icon{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;


    background:#d8a733;

    color:#092f26;

    font-size:22px;

    margin-bottom:18px;

}



.vision-info-card h3{

    margin:0 0 12px;

    font-size:26px;

    color:#fff;

    font-family:'Cormorant Garamond',serif;

}



.vision-info-card p{

    margin:0;

    font-size:14px;

    line-height:1.7;

    color:rgba(255,255,255,.75);

}




.vision-caption{

    position:absolute;

    right:35px;

    bottom:30px;

    z-index:4;


    padding:12px 20px;


    background:
    rgba(255,255,255,.15);


    backdrop-filter:blur(10px);


    border-radius:50px;


    color:#fff;


    font-size:13px;

}




/* RESPONSIVE */


@media(max-width:991px){

.vision-image-container{

    height:auto;

    min-height:750px;

}


.vision-content{

    left:35px;

    right:35px;

}


.vision-heading{

    font-size:45px;

}


}


@media(max-width:600px){


.vision-banner-section{

    padding:3rem 1rem;

}


.vision-card-wrapper{

    grid-template-columns:1fr;

}


.vision-heading{

    font-size:36px;

}


.vision-content{

    left:22px;

    right:22px;

}

}





/* slider css  */
.brand-slider-section{
    width:100%;
    padding:22px 40px;
    background:#f7f7f7;
    position:relative;
    overflow:hidden;
}

.brand-slider-wrap{
    width:100%;
    overflow:hidden;
}

.brand-slider-track{
    display:flex;
    gap:48px;
    transition:transform .45s ease;
}

.brand-slide{
    min-width:358px;
    height:322px;
    position:relative;
    overflow:hidden;
    flex-shrink:0;
    background:#ddd;
}

.brand-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.brand-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
}

.brand-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.brand-overlay h2{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    font-size:54px;
    line-height:1;
    font-weight:900;
    letter-spacing:6px;
    color:#fff;
}

.brand-overlay p{
    margin:12px 0 0;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:8px;
    color:#fff;
}

.script-logo h2{
    font-family:"Brush Script MT", cursive;
    font-size:68px;
    font-weight:400;
    letter-spacing:1px;
}

.brand-icon{
    width:78px;
    height:78px;
    border:2px solid #fff;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:18px;
    color:#fff;
}

.brand-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    width:44px;
    height:44px;
    border-radius:50%;
    border:0;
    background:none;
    font-size:34px;
    line-height:44px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}


.brand-prev{
    left:12px;
}

.brand-next{
    right:12px;
}

@media(max-width:768px){
    .brand-slider-section{
        padding:18px 20px;
    }

    .brand-slider-track{
        gap:22px;
    }

    .brand-slide{
        min-width:300px;
        height:270px;
    }

    .brand-overlay h2{
        font-size:40px;
    }
}
/* sider cs end */




.insight-hero-section{
    position:relative;
    width:100%;
    min-height:680px;
    padding:110px 24px;
    overflow:hidden;
    background:
        linear-gradient(135deg, rgba(22,60,45,.94), rgba(10,28,22,.96)),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    font-family:'Inter', Arial, sans-serif;
    color:#fff;
}

.insight-hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 25%, rgba(199,154,46,.35), transparent 28%),
        linear-gradient(90deg, rgba(5,18,14,.85), rgba(5,18,14,.35));
    z-index:1;
}

.insight-bg-circle{
    position:absolute;
    border-radius:50%;
    z-index:2;
    filter:blur(2px);
}

.insight-bg-circle.one{
    width:280px;
    height:280px;
    background:rgba(199,154,46,.18);
    top:90px;
    right:12%;
}

.insight-bg-circle.two{
    width:170px;
    height:170px;
    background:rgba(255,255,255,.10);
    bottom:70px;
    left:7%;
}

.insight-container{
    position:relative;
    z-index:3;
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.insight-tag{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(199,154,46,.55);
    border-radius:40px;
    background:rgba(255,255,255,.08);
    color:#f0c76a;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:24px;
}

.insight-content h1{
    margin:0;
    max-width:760px;
    font-size:52px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:-2px;
    color:#fff !important;
}

.insight-content h1 span{
    color:#f2c45c;
}

.insight-desc{
    max-width:700px;
    margin:26px 0 0;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.82);
}

.promise-box{
    max-width:720px;
    margin-top:28px;
    padding:22px 24px;
    border-left:5px solid #c79a2e;
    border-radius:18px;
    background:rgba(255,255,255,.11);
    backdrop-filter:blur(16px);
    box-shadow:0 18px 50px rgba(0,0,0,.25);
    color:#fff;
    font-size:16px;
    line-height:1.7;
}

.promise-box b{
    color:#f2c45c;
}

.insight-buttons{
    margin-top:34px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.insight-buttons a{
    height:54px;
    padding:0 26px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    letter-spacing:.8px;
    transition:.35s ease;
}

.primary-btn{
    background:linear-gradient(135deg,#c79a2e,#f2c45c);
    color:#163c2d;
    box-shadow:0 16px 40px rgba(199,154,46,.35);
}

.primary-btn i{
    font-style:normal;
    margin-left:12px;
    font-size:20px;
}

.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 60px rgba(199,154,46,.5);
}

.outline-btn{
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
    background:rgba(255,255,255,.08);
}

.outline-btn:hover{
    background:#fff;
    color:#163c2d;
    transform:translateY(-4px);
}

.insight-visual{
    position:relative;
    min-height:430px;
}

.hero-card{
    position:absolute;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.13);
    backdrop-filter:blur(18px);
    box-shadow:0 25px 70px rgba(0,0,0,.35);
    border-radius:28px;
}

.main-card{
    width:360px;
    min-height:300px;
    right:35px;
    top:55px;
    padding:38px;
}

.main-card::before{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(199,154,46,.5);
    border-radius:22px;
}

.main-card span{
    position:relative;
    display:inline-block;
    color:#f2c45c;
    font-size:12px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:-100px;
    margin-left:100px;
}

.main-card h3{
    position:relative;
    margin:0;
    font-size:34px;
    line-height:1.12;
    font-weight:900;
    color:#fff;
}

.main-card p{
    position:relative;
    margin:16px 0 0;
    color:rgba(255,255,255,.78);
    line-height:1.6;
}

.small-card{
    width:190px;
    padding:22px;
}

.small-card h4{
    margin:0 0 8px;
    font-size:20px;
    color:#f2c45c;
}

.small-card p{
    margin:0;
    color:rgba(255,255,255,.8);
}

.card-one{
    left:0;
    top:20px;
}

.card-two{
    right:0;
    bottom:35px;
}

@media(max-width:991px){
    .insight-hero-section{
        padding:80px 20px;
    }

    .insight-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .insight-content h1{
        font-size:44px;
    }

    .insight-visual{
        min-height:360px;
    }

    .main-card{
        left:50%;
        right:auto;
        transform:translateX(-50%);
        width:320px;
    }
}

@media(max-width:575px){
    .insight-content h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .insight-desc{
        font-size:15px;
    }

    .insight-buttons a{
        width:100%;
    }

    .insight-visual{
        display:none;
    }
}
/*  */

.vendor-early-section{
    width:100%;
    padding:40px 24px;
    background:
        radial-gradient(circle at 12% 18%, rgba(199,154,46,.22), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(22,60,45,.16), transparent 30%),
        linear-gradient(135deg,#f5eedc,#e8dfc8);
    font-family:'Inter', Arial, sans-serif;
    overflow:hidden;
}

.vendor-wrap{
    max-width:1220px;
    margin:0 auto;
    text-align:center;
}

.vendor-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#b88720;
    font-size:12px;
    font-weight:900;
    letter-spacing:5px;
}

.vendor-wrap h2{
    margin:0 auto 40px;
    max-width:900px;
    font-family:Georgia, serif;
    font-size:42px;
    line-height:1.18;
    font-weight:500;
    color:#082f25;
}


/* =======================
   CARD GRID FIX
======================= */

.vendor-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:16px;
}


/* SAME SIZE ALL 5 CARDS */

.vendor-card{
    position:relative;

    width:100%;
    min-height:210px;

    padding:28px 18px;

    background:
    linear-gradient(145deg,#ffffff,#f7f1e5);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.9);

    box-shadow:
    0 18px 45px rgba(22,60,45,.12);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    transition:.35s ease;
}



/* TABLET */

@media(max-width:1100px){

.vendor-grid{
    grid-template-columns:repeat(3,1fr);
}

}


/* MOBILE */

@media(max-width:767px){

.vendor-grid{
    grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:480px){

.vendor-grid{
    grid-template-columns:1fr;
}

}

/* SAME SIZE ALL CARD */

.vendor-card{
    position:relative;
    width:100%;
    min-height:210px;
    padding:30px 24px;

    background:
    linear-gradient(145deg,#ffffff,#f7f1e5);

    border-radius:20px;
    border:1px solid rgba(255,255,255,.9);

    box-shadow:
    0 18px 45px rgba(22,60,45,.12);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    overflow:hidden;
    transition:.35s ease;
}


.vendor-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(22,60,45,.15),
        rgba(199,154,46,.20)
    );
    opacity:0;
    transition:.35s ease;
}


.vendor-card:hover{
    transform:translateY(-10px);
    border-color:#c79a2e;

    box-shadow:
    0 30px 70px rgba(22,60,45,.22);
}

.vendor-card:hover::before{
    opacity:1;
}



/* ICON */

.vendor-icon{
    position:relative;

    width:55px;
    height:55px;

    margin-bottom:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #163c2d,
        #071d15
    );

    color:#f4c45c;

    font-size:22px;

    box-shadow:
    0 14px 30px rgba(22,60,45,.28);
}


.vendor-card h3{
    position:relative;

    margin:0 0 12px;

    font-family:Georgia, serif;

    font-size:21px;
    font-weight:500;

    color:#062d23;
}


.vendor-card p{
    position:relative;

    margin:0;

    font-size:15px;
    line-height:1.6;

    color:#111827;
}



/* NOTE */

.vendor-note{

    margin-top:35px;

    padding:20px 30px;

    background:#fff8e9;

    border-left:5px solid #c79a2e;

    border-radius:16px;

    box-shadow:
    0 15px 40px rgba(22,60,45,.12);

    font-size:15px;

    line-height:1.7;

    color:#10231d;
}

.vendor-note b{
    color:#8a5c05;
}



/* TAB */

@media(max-width:991px){

.vendor-grid{
    grid-template-columns:repeat(2,1fr);
}

.vendor-wrap h2{
    font-size:34px;
}

}



/* MOBILE */

@media(max-width:575px){

.vendor-early-section{
    padding:55px 16px;
}


.vendor-grid{
    grid-template-columns:1fr;
}


.vendor-wrap h2{
    font-size:29px;
}


.vendor-tag{
    font-size:10px;
    letter-spacing:3px;
}

}



/*  */


.profile-strength-section{
    width:100%;
    padding:30px 24px;
    background:
        radial-gradient(circle at 10% 15%, rgba(199,154,46,.16), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(22,60,45,.14), transparent 32%),
        linear-gradient(135deg,#f8f3e7,#eee4cf);
    font-family:'Inter', Arial, sans-serif;
    overflow:hidden;
}

.profile-wrap{
    max-width:1220px;
    margin:auto;
    text-align:center;
}

.profile-tag{
    display:inline-block;
    margin-bottom:16px;
    color:#b88720;
    font-size:12px;
    font-weight:900;
    letter-spacing:5px;
}

.profile-wrap h2{
    max-width:920px;
    margin:0 auto 20px;
    font-family:Georgia, serif;
    font-size:44px;
    line-height:1.15;
    font-weight:500;
    color:#062d23;
}

.profile-sub{
    max-width:900px;
    margin:0 auto 34px;
    font-size:17px;
    line-height:1.8;
    color:#1f2937;
}

.profile-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.profile-card{
    position:relative;
    min-height:330px;
    padding:34px 28px 28px;
    border-radius:22px;
    background:rgba(255,255,255,.58);
    border:1px solid rgba(255,255,255,.85);
    box-shadow:0 18px 45px rgba(22,60,45,.10);
    text-align:left;
    overflow:hidden;
    transition:.35s ease;
}

.profile-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(199,154,46,.16),rgba(22,60,45,.12));
    opacity:0;
    transition:.35s ease;
}

.profile-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 70px rgba(22,60,45,.18);
}

.profile-card:hover::before{
    opacity:1;
}

.profile-card.featured{
    background:linear-gradient(145deg,#fff8e8,#eadfca);
}

.profile-card.verified{
    border:1px solid #163c2d;
    background:linear-gradient(145deg,#fff9e9,#e8dcc3);
}

.profile-badge{
    position:relative;
    display:inline-flex;
    height:34px;
    padding:0 16px;
    align-items:center;
    justify-content:center;
    border-radius:30px;
    color:#fff;
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    margin-bottom:22px;
}

.profile-badge.dark{
    background:#4b4b4f;
}

.profile-badge.gold{
    background:#c79a2e;
}

.profile-badge.green{
    background:#163c2d;
}

.profile-card h3{
    position:relative;
    margin:0 0 12px;
    font-size:16px;
    color:#082f25;
}

.profile-card h3 b{
    font-family:Georgia, serif;
    font-size:32px;
    color:#062d23;
}

.profile-line{
    position:relative;
    width:100%;
    height:6px;
    background:rgba(22,60,45,.13);
    border-radius:20px;
    overflow:hidden;
    margin-bottom:22px;
}

.profile-line span{
    display:block;
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,#163c2d,#c79a2e);
}

.profile-card ul{
    position:relative;
    list-style:none;
    padding:0;
    margin:0 0 26px;
}

.profile-card ul li{
    margin-bottom:14px;
    padding-left:26px;
    font-size:15px;
    line-height:1.5;
    color:#111827;
}

.profile-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#b88720;
    font-weight:900;
}

.unlock{
    position:relative;
    border-top:1px solid rgba(22,60,45,.12);
    padding-top:18px;
    font-size:14px;
    line-height:1.6;
    color:#1f2937;
}

.unlock b{
    color:#062d23;
}

@media(max-width:991px){
    .profile-grid{
        grid-template-columns:1fr;
    }

    .profile-wrap h2{
        font-size:34px;
    }
}

@media(max-width:575px){
    .profile-strength-section{
        padding:55px 16px;
    }

    .profile-wrap h2{
        font-size:29px;
    }

    .profile-sub{
        font-size:15px;
    }
}




/*  */
.vendor-category-section{
    width:100%;
    padding:25px 24px;
    background:
        radial-gradient(circle at 12% 18%, rgba(199,154,46,.20), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(22,60,45,.14), transparent 30%),
        linear-gradient(135deg,#f5eedc,#e8dfc8);
    font-family:'Inter', Arial, sans-serif;
}

.category-wrap{
    max-width:1220px;
    margin:auto;
    text-align:center;
}

.category-tag{
    color:#b88720;
    font-size:12px;
    font-weight:900;
    letter-spacing:5px;
}

.category-wrap h2{
    max-width:950px;
    margin:22px auto 18px;
    font-family:Georgia, serif;
    font-size:42px;
    line-height:1.18;
    font-weight:500;
    color:#062d23;
}

.category-desc{
    max-width:900px;
    margin:0 auto 28px;
    font-size:17px;
    line-height:1.7;
    color:#1f2937;
}

.category-tabs{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding-bottom:12px;
    margin-bottom:18px;
}

.category-tabs::-webkit-scrollbar{
    height:4px;
}

.category-tabs::-webkit-scrollbar-thumb{
    background:#c79a2e;
    border-radius:20px;
}

.cat-tab{
    flex:0 0 auto;
    border:1px solid rgba(22,60,45,.16);
    background:#fffaf0;
    color:#082f25;
    padding:12px 16px;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
    transition:.3s ease;
}

.cat-tab.active,
.cat-tab:hover{
    background:#163c2d;
    color:#fff;
    border-color:#163c2d;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    text-align:left;
}

.category-card{
    position:relative;
    min-height:150px;
    padding:24px 24px 22px 82px;
    border-radius:10px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(22,60,45,.15);
    border-top:4px solid #163c2d;
    box-shadow:0 16px 40px rgba(22,60,45,.10);
    transition:.35s ease;
    overflow:hidden;
}

.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(22,60,45,.10),rgba(199,154,46,.16));
    opacity:0;
    transition:.35s ease;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 65px rgba(22,60,45,.18);
}

.category-card:hover::before{
    opacity:1;
}

.category-icon{
    position:absolute;
    left:24px;
    top:25px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#e9e2d3;
    color:#163c2d;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
}

.category-card h3{
    position:relative;
    z-index:1;
    margin:0 0 8px;
    font-family:Georgia, serif;
    font-size:20px;
    font-weight:500;
    color:#062d23;
}

.category-card p{
    position:relative;
    z-index:1;
    margin:0 0 14px;
    font-size:14px;
    line-height:1.55;
    color:#1f2937;
}

.card-meta{
    position:relative;
    z-index:1;
    display:flex;
    gap:7px;
    flex-wrap:wrap;
}

.card-meta span{
    padding:5px 10px;
    border-radius:30px;
    background:#f3ead7;
    border:1px solid #d9c7a7;
    color:#6d4b0d;
    font-size:12px;
    font-weight:700;
}

.card-plus{
    position:absolute;
    right:18px;
    top:24px;
    z-index:2;
    color:#163c2d;
    font-size:22px;
    font-weight:900;
}

@media(max-width:991px){
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .category-wrap h2{
        font-size:34px;
    }
}

@media(max-width:575px){
    .vendor-category-section{
        padding:45px 16px;
    }

    .category-grid{
        grid-template-columns:1fr;
    }

    .category-wrap h2{
        font-size:29px;
    }

    .category-card{
        padding-left:76px;
    }
}
/*  */


.workbook-section{
    position:relative;
    width:100%;
    padding:20px 24px;
    background:
        radial-gradient(circle at 15% 20%, rgba(199,154,46,.20), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(22,60,45,.15), transparent 30%),
        linear-gradient(135deg,#fbf7ee,#eee4cf);
    font-family:'Inter', Arial, sans-serif;
    overflow:hidden;
}

.workbook-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:radial-gradient(circle,#c79a2e55,transparent 65%);
    animation:floatGlow 6s ease-in-out infinite;
}

.workbook-wrap{
    position:relative;
    z-index:2;
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.workbook-content{
    text-align:center;
    animation:fadeSlideLeft .9s ease both;
}

.workbook-tag{
    display:inline-block;
    margin-bottom:22px;
    color:#b88720;
    font-size:12px;
    font-weight:900;
    letter-spacing:5px;
}

.workbook-content h2{
    max-width:680px;
    margin:0 auto 22px;
    font-family:Georgia, serif;
    font-size:46px;
    line-height:1.12;
    font-weight:500;
    color:#062d23;
}

.workbook-content p{
    max-width:720px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.75;
    color:#1f2937;
}

.workbook-btn{
    position:relative;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    gap:12px;
    min-height:56px;
    padding:0 32px;
    border-radius:50px;
    background:linear-gradient(135deg,#163c2d,#071d15);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    letter-spacing:1.5px;
    box-shadow:0 18px 45px rgba(22,60,45,.25);
    transition:.35s ease;
}

.workbook-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:70%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
    transform:skewX(-25deg);
    animation:btnShine 2.8s infinite;
}

.workbook-btn:hover{
    transform:translateY(-5px);
    background:linear-gradient(135deg,#c79a2e,#f0c15b);
    color:#163c2d;
    box-shadow:0 28px 65px rgba(199,154,46,.35);
}

.workbook-card{
    position:relative;
    padding:34px;
    border-radius:24px;
    background:rgba(255,255,255,.58);
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 25px 70px rgba(22,60,45,.15);
    overflow:hidden;
    transform-style:preserve-3d;
    perspective:1000px;
    animation:fadeSlideRight .9s ease both, cardFloat 4s ease-in-out infinite;
    transition:.4s ease;
}

.workbook-card:hover{
    transform:translateY(-12px) rotateX(6deg) rotateY(-6deg);
}

.workbook-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(199,154,46,.16),rgba(22,60,45,.12));
    pointer-events:none;
}

.workbook-card::after{
    content:"";
    position:absolute;
    inset:18px;
    border-radius:20px;
    border:1px solid rgba(199,154,46,.35);
    pointer-events:none;
}

.card-tag{
    position:relative;
    z-index:1;
    display:block;
    text-align:center;
    margin-bottom:22px;
    color:#b88720;
    font-size:12px;
    font-weight:900;
    letter-spacing:3px;
}

.info-row{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:17px 0;
    border-bottom:1px solid rgba(22,60,45,.10);
    font-size:15px;
    transition:.3s ease;
}

.info-row:hover{
    padding-left:14px;
    padding-right:14px;
    background:rgba(255,255,255,.45);
    border-radius:12px;
}

.info-row:last-child{
    border-bottom:0;
}

.info-row span{
    color:#374151;
}

.info-row b{
    color:#062d23;
    text-align:right;
}

@keyframes fadeSlideLeft{
    from{
        opacity:0;
        transform:translateX(-45px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeSlideRight{
    from{
        opacity:0;
        transform:translateX(45px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes cardFloat{
    0%,100%{
        translate:0 0;
    }
    50%{
        translate:0 -12px;
    }
}

@keyframes floatGlow{
    0%,100%{
        transform:translateY(0) scale(1);
    }
    50%{
        transform:translateY(25px) scale(1.08);
    }
}

@keyframes btnShine{
    0%{
        left:-100%;
    }
    60%,100%{
        left:130%;
    }
}

@media(max-width:991px){
    .workbook-wrap{
        grid-template-columns:1fr;
        gap:35px;
    }

    .workbook-content h2{
        font-size:35px;
    }
}

@media(max-width:575px){
    .workbook-section{
        padding:55px 16px;
    }

    .workbook-content h2{
        font-size:30px;
    }

    .workbook-content p{
        font-size:15px;
    }

    .workbook-btn{
        width:100%;
        justify-content:center;
        padding:0 18px;
    }

    .workbook-card{
        padding:28px 22px;
    }

    .info-row{
        flex-direction:column;
        gap:6px;
    }

    .info-row b{
        text-align:left;
    }
}


/* form */
.submit-profile-section{
    width:100%;
    padding:70px 20px 0;
    background:#e9e0c8;
    font-family:Georgia, 'Times New Roman', serif;
}

.submit-wrap{
    max-width:1080px;
    margin:auto;
    text-align:center;
}

.submit-wrap h2{
    max-width:820px;
    margin:0 auto 18px;
    color:#062f25;
    font-size:36px;
    line-height:1.12;
    font-weight:500;
}

.submit-desc{
    max-width:720px;
    margin:0 auto 26px;
    font-family:Arial, sans-serif;
    color:#163c2d;
    font-size:15px;
    line-height:1.6;
}

.profile-form-box{
    background:rgba(238,232,210,.82);
    border:1px solid rgba(120,105,70,.25);
    border-radius:6px;
    padding:18px 18px 20px;
    text-align:left;
}

.step-lines{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-bottom:28px;
}

.step-line{
    position:relative;
    padding-top:14px;
    text-align:center;
    font-family:Arial, sans-serif;
    font-size:11px;
    font-weight:700;
    color:#1f2f28;
}

.step-line::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d8d0b8;
    border-radius:20px;
}

.step-line.active::before{
    background:#b98b2e;
}

.form-step{
    display:none;
}

.form-step.active{
    display:block;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px 14px;
}

.form-group{
    text-align:center;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-family:Arial, sans-serif;
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#b08223;
}

.form-group input,
.form-group select{
    width:100%;
    height:34px;
    border:1px solid #cfc6ae;
    background:#fff;
    padding:0 10px;
    font-family:Arial, sans-serif;
    font-size:13px;
    color:#111;
    outline:none;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#163c2d;
}

.form-actions{
    margin-top:18px;
    display:flex;
    justify-content:flex-end;
    gap:12px;
}

.prev-btn,
.next-btn,
.submit-btn{
    border:none;
    padding:14px 28px;
    font-family:Arial, sans-serif;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.2px;
    cursor:pointer;
}

.prev-btn{
    background:#d8d0b8;
    color:#163c2d;
    display:none;
}

.next-btn,
.submit-btn{
    background:#0b3b2c;
    color:#fff;
}

.submit-btn{
    display:none;
}

.review-card{
    max-width:620px;
    margin:20px auto 5px;
    padding:35px;
    background:#fff;
    border:1px solid #d2c7aa;
    text-align:center;
}

.review-card h3{
    margin:0 0 10px;
    color:#063126;
    font-size:28px;
    font-weight:500;
}

.review-card p,
.check-box{
    font-family:Arial, sans-serif;
    color:#243b33;
}

.check-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:18px;
    font-size:14px;
}

.email-note{
    margin:30px 0 0;
    text-align:center;
    font-family:Arial, sans-serif;
    font-size:12px;
    color:#18392f;
}

@media(max-width:768px){
    .submit-wrap h2{
        font-size:28px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .step-line{
        font-size:10px;
    }

    .profile-form-box{
        padding:15px;
    }
}


/* 
 */

 .upload-box{
    width:100%;
    height:42px;
    border:1px dashed #b98b2e !important;
    background:#fff;
    display:flex !important;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    margin:0 !important;
    font-family:Arial, sans-serif;
    font-size:12px !important;
    font-weight:400 !important;
    letter-spacing:0 !important;
    text-transform:none !important;
    color:#163c2d !important;
}

.upload-box input{
    display:none;
}

.upload-box span{
    font-family:Arial, sans-serif;
    font-size:12px;
    color:#163c2d;
}

.full-field{
    grid-column:1 / -1;
}

.full-field input{
    margin-bottom:8px;
}

.document-grid{
    gap:18px 14px;
}



 .review-step h4{
    margin:0 0 14px;
    text-align:center;
    font-family:Arial, sans-serif;
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#b08223;
}

.checklist-box{
    background:#f7f4ea;
    border:1px solid #d5ccb4;
    border-radius:4px;
    overflow:hidden;
}

.check-row{
    height:42px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #ddd3bb;
    font-family:Arial, sans-serif;
    font-size:13px;
    color:#0b221b;
}

.check-row:last-child{
    border-bottom:none;
}

.check-row b{
    font-size:12px;
    color:#8b5b00;
}

.confirm-box{
    margin-top:14px !important;
    min-height:52px;
    padding:10px 12px;
    background:#f7f4ea;
    border:1px solid #d5ccb4;
    border-radius:3px;
    display:flex !important;
    align-items:center;
    gap:14px;
    font-family:Arial, sans-serif !important;
    font-size:12px !important;
    font-weight:400 !important;
    letter-spacing:0 !important;
    text-transform:none !important;
    color:#0b221b !important;
    text-align:center;
    line-height:1.5;
}

.confirm-box input{
    width:12px;
    height:12px;
    flex:0 0 12px;
}

.confirm-box span{
    flex:1;
}

.complete-note{
    margin:14px 0 0;
    text-align:center;
    font-family:Arial, sans-serif;
    font-size:12px;
    color:#9a6400;
}

.text-danger {
    color: red;
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    text-align: left;
}

.form-success-msg {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 14px;
}

.form-error-msg {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 14px;
}

.text-danger {
    color: #dc3545 !important;
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.check-complete {
    color: #198754 !important;
}

.check-missing {
    color: #dc3545 !important;
}
/*  */
.vendor-password-wrap {
    position: relative;
    width: 100%;
}

.vendor-password-input {
    width: 100%;
    padding-right: 46px !important;
}

.vendor-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 2;
    transform: translateY(-50%);
    padding: 4px;
    border: 0;
    background: transparent;
    color: #bd8c29;
    cursor: pointer;
}

.vendor-password-toggle:focus {
    outline: none;
}