   /* =========================================
   1. Global Settings & Variables
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');


:root {
    --primary-color: #D5A879; 
    --accent-color: #D5A879; 
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --bg-dark: #0f172a;       
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}


/* =========================================
   2. Hero Section Layout
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden; 
    padding: 80px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10; 
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================================
   3. Background Elements (Animated Blobs)
   ========================================= */
.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.6;
    animation: floatBg 10s infinite alternate;
}

.bg-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -10%;
    left: -10%;
}

.bg-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: 10%;
    right: -5%;
    animation-delay: -2s;
}

.bg-3 {
    width: 200px;
    height: 200px;
    background: #D5A879; /* Violet */
    top: 40%;
    left: 40%;
    opacity: 0.4;
    animation-delay: -5s;
}

@keyframes floatBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}

/* =========================================
   4. Left Content Styling
   ========================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid black;
    color: #D5A879;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    width: fit-content;
    font-weight: 600;
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; 
}

.hero-subtitle {
    font-size: 1.1rem;
        color: black;
    max-width: 500px;
}

/* CTA Buttons */
.cta-wrapper {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.cta-button {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: #D5A879;
    color: white;
    box-shadow: 0 10px 20px -5px #D5A879;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px #D5A879;
}

.cta-button.secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: black;
    backdrop-filter: blur(5px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Stats */
.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: black;
}

.stat-value::after {
    content: "+";
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color:#ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.whatsapp-floating-box {
    position: fixed;
    bottom: 20px;
    left: 20px; 
    z-index: 9999; 
}

/* 2. Button Styling */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px; /* Icon size */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}


.whatsapp-btn:hover {
    background-color: #D5A879;
    color: #fff;
    transform: scale(1.1);
}


.whatsapp-btn i {
    animation: bell-ring 4s infinite ease-in-out;
    transform-origin: center top; 
}


@keyframes bell-ring {
    0% { transform: rotate(0); }
    5% { transform: rotate(30deg); }
    10% { transform: rotate(-28deg); }
    15% { transform: rotate(34deg); }
    20% { transform: rotate(-32deg); }
    25% { transform: rotate(30deg); }
    30% { transform: rotate(-28deg); }
    35% { transform: rotate(34deg); }
    40% { transform: rotate(-32deg); }
    45% { transform: rotate(30deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); } 
}




/* =========================================
   5. Right Visual Styling (Floating Cards)
   ========================================= */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: absolute;
    background: #D5A879;
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 25px 50px -12px #D5A879;
    transition: transform 0.3s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.visual-card:hover {
    z-index: 50 !important;
    transform: scale(1.05);
    background: #f7c896;
}

/* Specific Card Positioning */
.card-1 {
    top: 110px;
    left: 0;
    z-index: 2;
    background: linear-gradient(145deg, #D5A879, #D5A879);
}

.card-2 {
    top: 110px;
    right: 0;
    z-index: 3;
    animation-delay: 1s;
    background: linear-gradient(145deg, #D5A879, #D5A879);
   
}

.card-3 {
    bottom:110px;
    left: 0px;
    z-index: 1;
    animation-delay: 2s;
    background: linear-gradient(145deg, #D5A879, #D5A879);
}

.card-4 {
    bottom: 110px;
    right: 0;
    z-index: 3;
    animation-delay: 1s;
    background: linear-gradient(145deg, #D5A879, #D5A879);
   
}
/* Card Content styling */
.card-header img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #ffff
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #e2e8f0;
}

.card-description {
    font-size: 0.8rem;
    color: black;
    line-height: 1.4;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* =========================================
   6. Responsive Design (Mobile)
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        align-items: center; /* Centers items in column */
    }
    .badge {
        margin: 0 auto;
    }
    .cta-wrapper {
        justify-content: center;
    }
    .stats-grid {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Adjust cards for smaller screens */
    .visual-card {
        width: 220px;
        padding: 15px;
    }
    .card-1 { left: 10%; top: 20px; }
    .card-2 { right: 10%; top: 120px; }
    .card-3 { left: 20%; bottom: 20px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .cta-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .cta-button {
        justify-content: center;
        width: 100%;
    }
    
    /* On very small screens, stack cards or hide visual */
    .hero-visual {
        display: none; /* Often better to hide complex visuals on tiny screens */
    }
}

:root {
    --gold: #D5A879;
    --black: #121212;
    --dark-grey: #1e1e1e;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: #fcfcfc;
}

.interactive-services-gold {
    padding: 100px 20px;
    background-color: var(--white);
}

.container-gold {
    max-width: 1250px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 10px;
}

.text-gold {
    color: var(--gold);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ============================
   Layout: Grid Left, Image Right
   ============================ */
.split-layout {
    display: flex;
    gap: 40px;
    position: relative;
}


.grid-wrapper {
    flex: 1.2; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card Styling */
.gold-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Icon Box */
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Typography */
.card-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    transition: color 0.3s ease;
}

/* Arrow */
.card-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}




.gold-card:hover, .gold-card.active {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.4);
}

.gold-card:hover .card-icon, .gold-card.active .card-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.gold-card:hover .card-text h3, .gold-card.active .card-text h3 {
    color: var(--white);
}

.gold-card:hover .card-arrow, .gold-card.active .card-arrow {
    color: var(--white);
    transform: translateX(5px);
}

/* RIGHT SIDE: Sticky Preview */
.preview-wrapper {
    flex: 1; 
    position: relative;
}

.sticky-frame {
    position: sticky;
    top: 30px; 
    height: 600px; 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.sticky-frame img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.sticky-frame:hover img {
    transform: scale(1.05);
}

/* Overlay Text on Image */
.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.overlay-text h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column-reverse; 
    }
    
    .grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sticky-frame {
        height: 300px;
        position: relative;
        top: 0;
    }
}



/* --- AI PROMO SECTION --- */
    .ai-promo-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(135deg, #D5A879 0%, #D5A879 60%, #fff 60%);
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    
    .bg-text-overlay {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        font-size: 15vw; 
        font-weight: 900;
        color: rgba(0, 0, 0, 0.05);
        white-space: nowrap;
        pointer-events: none;
        z-index: 0;
        font-family: 'Outfit', sans-serif;
        letter-spacing: -5px;
    }

    .ai-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* Left Side Content */
    .ai-text-col {
        color: white;
    }

    .ai-text-col h2 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 24px;
        color: white;
    }

    .ai-text-col p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        margin-bottom: 35px;
        max-width: 90%;
    }

    .ai-btn {
        display: inline-block;
        padding: 16px 32px;
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
    }

    .ai-btn:hover {
        background: white;
        color: #D5A879;
    }

    /* Right Side Slider */
    .ai-slider-col {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .slider-window {
        background: white;
        border-radius: var(--radius-lg);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        position: relative;
        aspect-ratio: 1 / 1; 
    }

    .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .slide {
        min-width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Dots Navigation */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }

    .dot.active {
        background: #D5A879;
        transform: scale(1.2);
    }

    @media (max-width: 900px) {
        .ai-promo-section { background: linear-gradient(180deg, #D5A879 0%, #D5A879 100%); }
        .ai-content-wrapper { grid-template-columns: 1fr; }
        .bg-text-overlay { display: none; }
    }


.nav-item {
    position: relative;
    height: 100%;      
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-indicator {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 25px; 
    height: 3px;  
    background-color: var(--primary); 
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; 
    z-index: 5;
}


.nav-item:hover .nav-indicator,
.nav-item.active .nav-indicator {
    transform: translateX(-50%) scaleX(1); 
    width: 50%; 
    opacity: 1;
}


.nav-item.active .nav-link {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}


/* =========================================
   Why Choose Us Section Styling
   ========================================= */
:root {
    --gold-primary: #D5A879;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-white: #ffffff;
    --bg-soft: #f4f6f9;
}

.why-choose-section {
    padding: 100px 20px;
    background-color: var(--bg-white); 
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Left Column Styling --- */

.sub-badge {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(212, 165, 116, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
}

.why-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight-gold {
    color: var(--gold-primary);
    position: relative;
}

/* Optional underline for emphasis */
.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 165, 116, 0.2);
    z-index: -1;
}

.why-content p {
    color: black;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Checklist Styling */
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.check-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* Button Styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--text-dark);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.4);
}

/* --- Right Column (Feature Grid) --- */

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}


.why-features .feature-box:nth-child(even) {
    transform: translateY(30px);
}

.feature-box {
    background: var(--bg-soft);
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-box:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px); 
    border-color: rgba(0,0,0,0.05);
}


.why-features .feature-box:nth-child(even):hover {
    transform: translateY(25px); 
}

/* Icon Box Styling */
.f-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Icon Colors */
.icon-blue { background: rgba(59, 130, 246, 0.1); color: #D5A879; }
.icon-gold { background: rgba(212, 165, 116, 0.1); color: #D5A879; }
.icon-green { background: rgba(16, 185, 129, 0.1); color: #D5A879; }
.icon-red { background: rgba(239, 68, 68, 0.1); color: #D5A879; }

.f-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.f-text p {
    font-size: 0.9rem;
    color: black;
    line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .check-list {
        display: inline-block;
        text-align: left;
    }

 
    .why-features .feature-box:nth-child(even) {
        transform: translateY(0);
    }
    
    .why-features .feature-box:nth-child(even):hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .why-features {
        grid-template-columns: 1fr; 
    }
    
    .why-content h2 {
        font-size: 2.2rem;
    }
}

:root {
   
    --tros-gold: #D5A879;
    --tros-gold-gradient: linear-gradient(135deg, #D5A879 0%, #D5A879 100%);
    
   
    --tros-light-bg: #f8f9fa; 
    --tros-glass-bg: rgba(255, 255, 255, 0.7); 
    --tros-glass-border: 1px solid rgba(255, 255, 255, 0.8); 
    --tros-text-primary: #222222;
    --tros-text-secondary: #555555; 
    --tros-shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.tros-journey-section {
   
    background: linear-gradient(to bottom right, #ffffff, var(--tros-light-bg));
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
    color: var(--tros-text-primary); 
}


.tros-section-header {
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tros-badge {
    background: rgba(207, 177, 101, 0.1);
    color: var(--tros-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(207, 177, 101, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.tros-title {
    color: var(--tros-text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tros-highlight {
    background: var(--tros-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tros-desc {
    color: var(--tros-text-secondary);
    max-width: 600px;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto; 
    text-align: center;
}


.tros-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}


.tros-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}


.tros-step-card {
    position: relative;
    width: 50%;
    padding: 0 40px;
    box-sizing: border-box;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}


.tros-step-card {
    left: 0;
    text-align: right;
    justify-content: flex-end;
}


.tros-step-card.right-align {
    left: 50%;
    text-align: left;
    justify-content: flex-start;
}

.tros-step-card.right-align .tros-step-content {
    align-items: flex-start;
}


.tros-step-content {
    background: var(--tros-glass-bg);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    
  
    border: var(--tros-glass-border);
    box-shadow: var(--tros-shadow-soft);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}


.tros-step-card:hover .tros-step-content {
    transform: translateY(-5px);
    border-color: var(--tros-gold);
    box-shadow: 0 15px 40px rgba(207, 177, 101, 0.2);
    background: rgba(255, 255, 255, 0.85);
}


.tros-step-marker {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid var(--tros-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transform: translateY(-50%);
    box-shadow: 0 0 0 5px var(--tros-light-bg); 
}


.tros-step-card .tros-step-marker { right: -25px; }
.tros-step-card.right-align .tros-step-marker { left: -25px; }

.tros-step-num {
    color: var(--tros-gold);
    font-weight: 700;
    font-size: 1rem;
}


.tros-icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--tros-text-primary); 
    background: linear-gradient(135deg, #f0f2f5 0%, #e1e5ea 100%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    transition: 0.3s;
}

.tros-step-card:hover .tros-icon-box {
    background: var(--tros-gold-gradient);
    color: #000; 
}

.tros-step-content h3 {
    color: var(--tros-text-primary); 
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tros-step-content p {
    color: var(--tros-text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .tros-title { font-size: 2rem; }
    .tros-timeline-line { left: 30px; transform: translateX(0); }
    
    .tros-step-card, 
    .tros-step-card.right-align {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left;
        justify-content: flex-start;
        margin-bottom: 40px;
    }

    .tros-step-card .tros-step-marker,
    .tros-step-card.right-align .tros-step-marker {
        left: 5px; 
        right: auto;
    }
    
    .tros-step-card .tros-step-content {
        text-align: left;
    }
}

    /* Create a Vertical Line for Mobile */
    .process-wrapper::before {
        content: '';
        position: absolute;
        top: 0; left: 50%;
        width: 2px; height: 100%;
        background: #e2e8f0;
        transform: translateX(-50%);
        z-index: 0;
    }

    .step-marker {
        height: auto;
        margin-bottom: 15px;
    }

  
    .step-dot {
        margin-top: 10px;
        background: var(--bg-white); 
    }


:root {
    --gold: #D5A879;
    --black: #121212;
    --grey-logo: #a0a0a0;
}

.brands-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}


.brand-header {
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
    justify-content: center;
    text-align: center;
}

.brand-tittlel {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 10px 0; 
    display: block; 
}

.brand-header h3 {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
    margin: 0; 
}

.brand-header h3 span.text-gold {
    color: var(--gold);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    background: #fff; 
}

.marquee-track {
    display: flex;
    width: fit-content;
    gap: 80px;
    animation: scroll 30s linear infinite;
    align-items: center; 
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.brand-logo {
    height: 80px; 
    width: auto;  
    object-fit: contain; 
    
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}


.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1); 
}

.overlay-left, .overlay-right {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.overlay-left {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.overlay-right {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
     
        transform: translateX(-50%); 
    }
}


@media (max-width: 768px) {
    .brand-header h3 {
        font-size: 1.5rem; 
    }

    .marquee-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .brand-logo {
        height: 35px; 
    }
    
    .overlay-left, .overlay-right {
        width: 50px; 
    }
}
:root {
    --gold: #D5A879;
    --black: #121212;
    --text-grey: #666;
    --bg-light: #f9f9f9;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    font-family: 'Outfit', sans-serif;
}

/* Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 10px 0;
}

.text-gold { color: var(--gold); }

.header-content p {
    color: var(--text-grey);
    font-size: 1.1rem;
}


.google-badge {
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e0e0e0;
}

.g-icon img { width: 28px; height: 28px; }

.g-text { display: flex; flex-direction: column; }
.g-label { font-size: 0.65rem; color: #999; letter-spacing: 1px; font-weight: 700; }
.g-stars { color: #D5A879; font-size: 0.8rem; margin: 1px 0; }
.g-count { font-size: 0.75rem; font-weight: 700; color: #333; }


.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}


.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.15); 
    border-color: rgba(212, 165, 116, 0.3);
}


.quote-icon {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 2rem;
    color: #f0f0f0;
    z-index: 0;
}


.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.client-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.client-role {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 3px;
}

.client-stars {
    color: var(--gold);
    font-size: 0.75rem;
}


.review-body { position: relative; z-index: 1; }

.review-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.review-body p {
    color: var(--text-grey);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}


@media (max-width: 768px) {
    .header-content h2 { font-size: 2.2rem; }
    .testimonial-grid { grid-template-columns: 1fr; } 
}


.testimonial-grid {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
    padding: 20px 0 60px 0; 
}

.testimonial-track {
    display: flex;
    gap: 30px; 
    width: max-content; 
  
    animation: scroll-left 40s linear infinite; 
}

.testimonial-grid:hover .testimonial-track {
    animation-play-state: paused;
    cursor: grab;
}


.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    
    
    min-width: 350px; 
    max-width: 350px;
    flex-shrink: 0;
}


.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}


@keyframes scroll-left {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        
        transform: translateX(-50%); 
    }
}


@media (max-width: 768px) {
    .testimonial-track {
        gap: 20px;
        animation: scroll-left 25s linear infinite; 
    }
    .review-card {
        min-width: 280px; 
        max-width: 280px;
    }
}



    :root {
        --primary: #D5A879;
        --dark: #1a1a1a;
        --text-light: #666;
        --bg-light: #f9f9f9;
    }

    .recent-blogs-section {
        padding: 40px 5%; 
        background-color: #ffffff;
        position: relative;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- SECTION TITLE --- */
    .section-title-wrapper {
        text-align: center;
        margin-bottom: 60px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .sub-title {
        color: var(--primary);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .main-title {
        font-size: 38px;
        color: var(--dark);
        font-weight: 800;
        margin: 0 0 15px 0;
        line-height: 1.2;
    }

    .section-desc {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.6;
    }

    /* --- BLOG GRID --- */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* --- BLOG CARD --- */
    .blog-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.03);
        transition: all 0.4s ease;
        position: relative;
        top: 0;
    }

    /* Hover Effect: Lift Up */
    .blog-card:hover {
        top: -10px;
        box-shadow: 0 20px 40px rgba(197, 157, 95, 0.15); /* Gold tinted shadow */
    }

    /* Image Area */
    .blog-image-wrapper {
        position: relative;
        height: 240px;
        overflow: hidden;
    }

    .blog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    
    .blog-card:hover .blog-img {
        transform: scale(1.1);
    }


    .blog-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(5px);
        color: var(--dark);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }


    .blog-content {
        padding: 30px;
    }

    .blog-meta {
        display: flex;
        gap: 15px;
        font-size: 13px;
        color: #999;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .blog-meta i { color: var(--primary); margin-right: 5px; }

    .blog-title {
        font-size: 20px;
        line-height: 1.4;
        margin: 0 0 15px 0;
        font-weight: 700;
    }

    .blog-title a {
        color: var(--dark);
        transition: 0.3s;
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card:hover .blog-title a {
        color: var(--primary);
    }

    .blog-excerpt {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

   
    .blog-grid {
        display: grid;
        
        grid-template-columns: repeat(3, 1fr); 
        gap: 30px;

    }
 
    .read-more-btn {
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        transition: 0.3s;
        border-bottom: 2px solid rgba(0,0,0,0.05);
        padding-bottom: 2px;
    }

    .read-more-btn i {
        margin-left: 8px;
        font-size: 12px;
        transition: 0.3s;
        color: var(--primary);
    }

    .read-more-btn:hover {
        color: var(--primary);
        border-color: var(--primary);
    }
    
    .read-more-btn:hover i {
        transform: translateX(5px);
    }

    
    @media (max-width: 768px) {
        .recent-blogs-section { padding: 60px 20px; }
        .main-title { font-size: 28px; }
        .blog-grid { grid-template-columns: 1fr; }
    }



:root {
    --gold: #D5A879;
    --black: #1a1a1a;
    --dark-grey: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

.faq-premium-section {
    padding: 120px 20px;
    background-color: var(--light-bg);
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 80px;
}


.faq-sidebar {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 50px; 
    z-index: 2;
}

.badge-gold {
    display: inline-block;
    background: rgba(212, 165, 116, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sticky-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.text-gold { color: var(--gold); }

.sticky-content p {
    color: black;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Contact Button */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-contact:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.4);
}

/* Decorative Gold Blob behind text */
.gold-blob {
    position: absolute;
    top: -50px; left: -50px;
    width: 200px; height: 200px;
    background: var(--gold);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

/* --- Right Column (FAQ List) --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Styling */
.faq-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    position: relative;
    overflow: hidden;
}

.faq-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.q-number {
    font-size: 1.2rem;
    color: #ddd;
    font-weight: 700;
    transition: 0.3s;
    font-family: 'Courier New', monospace;
}

.faq-header h3 {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    transition: 0.3s;
}

.toggle-icon {
    width: 15px;
    height: 15px;
    position: relative;
}

.toggle-icon span {
    position: absolute;
    background-color: var(--black);
    transition: 0.3s;
}


.toggle-icon span:nth-child(1) {
    width: 100%; height: 2px;
    top: 50%; left: 0; transform: translateY(-50%);
}


.toggle-icon span:nth-child(2) {
    width: 2px; height: 100%;
    top: 0; left: 50%; transform: translateX(-50%);
}


.faq-body {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    padding: 0 30px;
    opacity: 0;
}

.faq-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px; 
}


.faq-card.active {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-left: 5px solid var(--gold); 
}

.faq-card.active .q-number {
    color: var(--gold);
}

.faq-card.active h3 {
    color: var(--gold);
}

.faq-card.active .toggle-icon span {
    background-color: var(--gold);
}

.faq-card.active .toggle-icon span:nth-child(2) {
    transform: translateX(-50%) rotate(90deg); 
    opacity: 0; 
}

.faq-card.active .faq-body {
    height: auto; 
    opacity: 1;
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr; 
        gap: 50px;
    }
    
    .sticky-content {
        position: relative;
        top: 0;
        text-align: center;
    }

    .btn-contact { margin: 0 auto; }
    
    .gold-blob { left: 50%; transform: translateX(-50%); }
    
    .sticky-content h2 { font-size: 2.5rem; }
}



:root {
    --gold: #D5A879;
    --dark: #333;
    --light-bg: #f9f9f9;
}

.dino-game-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Outfit', sans-serif;
    user-select: none; 
}

.game-header { margin-bottom: 40px; }
.text-gold { color: var(--gold); }


.game-wrapper {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background-color: var(--light-bg);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


.score-board, .high-score-board {
    position: absolute;
    top: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark);
    z-index: 10;
}
.score-board { right: 20px; }
.high-score-board { right: 150px; color: black; }


.start-msg, .game-over-msg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
}

.game-over-msg { display: none; } 

.restart-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}
.restart-btn:hover { transform: scale(1.05); }


.dino {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 50px; 
    z-index: 5;
    color: var(--dark);
}

.dino svg { width: 100%; height: 100%; }


.animate-dino {
    animation: jump 0.5s ease-in-out;
}

@keyframes jump {
    0% { bottom: 0; }
    30% { bottom: 100px; } 
    60% { bottom: 100px; } 
    100% { bottom: 0; }
}


.cactus {
    width: 30px;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 800px; 
    color: var(--gold);
    z-index: 4;
}

.cactus svg { width: 100%; height: 100%; }


.animate-cactus {
    animation: blockMove 1.5s infinite linear;
}

@keyframes blockMove {
    0% { left: 800px; }
    100% { left: -40px; }
}


.ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    z-index: 1;
}

.cloud {
    position: absolute;
    color: #e0e0e0;
    font-size: 2rem;
    z-index: 0;
}
.cloud-1 { top: 40px; right: 100px; animation: cloudMove 20s linear infinite; }
.cloud-2 { top: 80px; right: 400px; animation: cloudMove 25s linear infinite; }

@keyframes cloudMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-900px); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .game-wrapper { height: 250px; }
    @keyframes blockMove {
        0% { left: 100%; }
        100% { left: -40px; }
    }
}

 
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--b-gold); 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--b-black);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}


@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}


/* About Page */

    :root {
        --color-bg: #ffffff;
        --color-text: #1a1a1a;
        --color-muted: #6b7280;
        --color-accent: #D5A879;
        --color-accent-light: #F3E5D8;
        --color-dark-surface: #0f172a;
        
        --container-width: 1280px;
        --radius: 4px; 
        --spacing-section: 120px;
        --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* Reset & Base */
    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: var(--color-bg);
        color: var(--color-text);
        overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    
    .ab-container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 24px;
    }

    .ab-section { padding: var(--spacing-section) 0; }

    /* Typography */
    .ab-overline {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-accent);
        font-weight: 700;
        margin-bottom: 16px;
        display: block;
    }

    .ab-heading {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }

    .ab-heading-md {
        font-size: clamp(2rem, 3vw, 3rem);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .ab-text {
        font-size: 1.125rem;
        line-height: 1.7;
        color: var(--color-muted);
        font-weight: 300;
    }

    /* --- Hero Section (Minimal Split) --- */
    .hero-split {
        min-height: 90vh;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        position: relative;
    }

    .hero-content {
        padding-right: 60px;
        z-index: 2;
    }

    .hero-visual {
        height: 100%;
        position: relative;
    }

    .hero-visual img {
        width: 100%;
        height: 90vh;
        object-fit: cover;
        /* Asymmetric clip-path for "something different" */
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }

    /* --- Wrapper --- */
.stats-strip-modern {
    position: relative;
    margin-top: -100px; /* Overlap the hero section */
    z-index: 10;
    padding: 0 20px;
}

/* --- The Card Grid --- */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(145deg, #1e293b, #0f172a); /* Deep premium dark gradient */
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); /* Soft shadow for depth */
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); 
}

/* --- Individual Stat Box --- */
.stat-card {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, background 0.4s ease;
    cursor: default;
    border-right: 1px solid rgba(255,255,255,0.05); /* Divider */
}

/* Remove border from last item */
.stat-card:last-child {
    border-right: none;
}

/* Hover Effect */
.stat-card:hover {
    background: rgba(255,255,255,0.03);
    transform: translateY(-5px);
}

.stat-card:hover .stat-number-wrapper {
    color: var(--color-accent, #D5A879); /* Glows brand color on hover */
    transform: scale(1.05);
}

/* --- Typography --- */
.stat-number-wrapper {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Tabular nums prevents jittering during animation */
.counter {
    font-variant-numeric: tabular-nums; 
}

.suffix {
    font-size: 2rem; /* Smaller symbol */
    margin-left: 2px;
    color: var(--color-accent, #D5A879);
    transform: translateY(-5px);
}

.stat-label {
    display: block;
    color: black;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .stats-strip-modern { margin-top: 0; padding: 60px 20px; background: #fafafa; }
    
    .stats-grid-modern {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid */
        background: #1e293b; /* Fallback for mobile */
    }
    
    .stat-card { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }
}

@media (max-width: 500px) {
    .stats-grid-modern { grid-template-columns: 1fr; } /* Stack on small screens */
    .stat-card { border-right: none; }
}

    /* --- Narrative Section (Sticky Side) --- */
    .narrative-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .narrative-sticky {
        position: sticky;
        top: 40px;
        height: fit-content;
    }

    .core-values-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
    }

    .value-item {
        border-top: 1px solid #eee;
        padding: 30px 0;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .value-icon {
        font-size: 1.5rem;
        color: var(--color-accent);
    }

    .value-content h4 { margin: 0 0 8px 0; font-size: 1.25rem; }
    .value-content p { margin: 0; font-size: 0.95rem; color: var(--color-muted); }

    /* --- Video Section (Parallax Feel) --- */
    .video-wrapper {
        position: relative;
        height: 600px;
        width: 100%;
        overflow: hidden;
        margin: 80px 0;
    }

    .video-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6);
        transition: transform 0.5s ease;
    }

    .video-wrapper:hover .video-bg {
        transform: scale(1.05);
    }

    .play-trigger {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        border: 1px solid rgba(255,255,255,0.3);
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
    }

    .play-trigger:hover {
        background: var(--color-accent);
        border-color: var(--color-accent);
        transform: translate(-50%, -50%) scale(1.1);
        color: var(--color-dark-surface);
    }

  /* ================= LEADERS SECTION ================= */

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
    margin-top: 60px;
    justify-items: center;
}

/* Card */
.leader-card {
    max-width: 340px;
    width: 100%;
    text-align: center;
}

/* Image box */
.leader-img-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

/* Image */
.leader-img-box img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
   
    transition: var(--transition);
}

/* Hover effect */
.leader-card:hover .leader-img-box img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Text */
.leader-role {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leader-meta h3 {
    font-size: 1.5rem;
    margin: 6px 0;
}

.leader-meta p {
    font-size: 0.9rem;
    color: #777;
}

/* Socials */
.leader-socials {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.leader-card:hover .leader-socials {
    opacity: 1;
    transform: translateY(0);
}

.leader-socials a {
    color: var(--color-text);
    margin-right: 12px;
    font-size: 1.1rem;
}

.leader-socials a:hover {
    color: var(--color-accent);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }
}

