/* index.css — extracted from index.html */

:root {
        --primary-blue: #2175b9;
        --light-blue: #4fa3d9;
        --darker-blue: #1a5e9a;
        --white: #ffffff;
        --light-gray: #f8fafc;
        --text-dark: #1e293b;
        --shadow-color: rgba(33, 117, 185, 0.1);
        --accent-blue: #3b82f6;
        --off-white: #f1f5f9;
        --text-medium: #475569;
        --border-light: #e2e8f0;
        --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        --gradient-light: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
        --shadow-light: 0 4px 12px rgba(33, 117, 185, 0.1);
        --shadow-medium: 0 8px 20px rgba(33, 117, 185, 0.15);
        --shadow-heavy: 0 12px 40px rgba(33, 117, 185, 0.2);
        --transition: all 0.3s ease;
    }

    /* Dark mode variables - MINIMAL ADDITION */
    body.dark-mode {
        --white: #0f172a;
        --light-gray: #1e293b;
        --text-dark: #f1f5f9;
        --text-medium: #cbd5e1;
        --off-white: #1e293b;
        --border-light: #334155;
        --shadow-color: rgba(0, 0, 0, 0.2);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: var(--white);
        overflow-x: hidden;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========== TEAMS PAGE NAVBAR STYLES ========== */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        box-shadow: 0 1px 20px rgba(0, 102, 204, 0.05);
    }

    body.dark-mode header {
        background: rgba(15, 23, 42, 0.75);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    }

    header.scrolled {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
    }

    body.dark-mode header.scrolled {
        background: rgba(15, 23, 42, 0.9);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 14px;
    }



    .logo-box:hover::before {
        animation: shine 0.6s ease;
    }

    @keyframes shine {
        0% { transform: rotate(-45deg) translateX(-200%); }
        100% { transform: rotate(-45deg) translateX(200%); }
    }

    .logo-box img {
        max-width: 100px;
        padding: 10px;
        height: auto;
        z-index: 2;
    }

    .brand {
        font-weight: 800;
        font-size: 1.4rem;
        background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.6px;
    }

    .nav-items {
        display: flex;
        gap: 40px;
    }

    .nav-items a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.95rem;
        position: relative;
        padding: 12px 0;
        transition: all 0.3s ease;
    }

    .nav-items a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .nav-items a:hover, 
    .nav-items a.active {
        color: var(--primary-blue);
    }

    .nav-items a:hover::after,
    .nav-items a.active::after {
        width: 100%;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    /* Dark Mode Toggle Button Styles - ONLY NEW ADDITION */
    .dark-mode-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--border-light);
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--text-dark);
        font-size: 1.1rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    body.dark-mode .dark-mode-toggle {
        background: var(--light-gray);
        border-color: var(--primary-blue);
        box-shadow: 0 2px 8px rgba(33, 117, 185, 0.2);
    }

    .dark-mode-toggle:hover {
        transform: scale(1.05);
        border-color: var(--primary-blue);
        box-shadow: 0 4px 12px rgba(33, 117, 185, 0.15);
    }

    .dark-mode-toggle i {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .dark-mode-toggle .fa-sun {
        position: absolute;
        opacity: 0;
        transform: scale(0.5) rotate(90deg);
    }

    .dark-mode-toggle .fa-moon {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    body.dark-mode .dark-mode-toggle .fa-sun {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    body.dark-mode .dark-mode-toggle .fa-moon {
        opacity: 0;
        transform: scale(0.5) rotate(-90deg);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transition: all 0.3s ease;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-outline {
        background: transparent;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }

    .btn-outline:hover {
        background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        color: white;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        background: none;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #334155;
    }

    .hamburger:hover {
        background: rgba(0, 102, 204, 0.1);
    }

    /* Custom hamburger lines — varying widths */
    .ham-line {
        display: block;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: background 0.25s ease, width 0.25s ease;
    }
    .ham-line-1 { width: 22px; }
    .ham-line-2 { width: 13px; }
    .ham-line-3 { width: 18px; }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        z-index: 2000;
        transition: all 0.3s ease;
        padding: 80px 40px 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    body.dark-mode .mobile-menu {
        background: rgba(15, 23, 42, 0.95);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        color: var(--text-dark);
    }

    body.dark-mode .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-dark);
    }

    .mobile-menu-close:hover {
        background: var(--primary-blue);
        color: white;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .mobile-menu-items a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 1.1rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    body.dark-mode .mobile-menu-items a {
        color: var(--text-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-items a:hover {
        color: var(--primary-blue);
        padding-left: 16px;
    }

    /* Responsive Breakpoints for Navbar */
    @media (max-width: 992px) {
        .nav-items {
            gap: 30px;
        }
        
        .dark-mode-toggle {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .nav-items {
            display: none;
        }
        
        .hamburger {
            display: flex;
        }

        /* Constrain logo inside navbar on mobile */
        .logo-box img {
            height: 38px;
            max-width: 110px;
            padding: 0;
            object-fit: contain;
        }
        .logo-container {
            overflow: hidden;
            max-height: 44px;
        }
        
        .brand {
            font-size: 1.2rem;
        }
        
        .btn {
            padding: 12px 20px;
            font-size: 0.85rem;
        }
        
        .mobile-menu {
            display: block;
        }
        
        .dark-mode-toggle {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .logo-box {
            width: 40px;
            height: 40px;
        }
        
        .brand {
            font-size: 1.1rem;
        }
        
        .btn {
            padding: 10px 16px;
            font-size: 0.8rem;
        }
        
        .mobile-menu {
            max-width: 320px;
            padding: 60px 25px 25px;
        }
        
        .mobile-menu-items a {
            font-size: 1rem;
            padding: 14px 0;
        }
        
        .dark-mode-toggle {
            width: 32px;
            height: 32px;
            font-size: 0.8rem;
        }
    }

    /* ========== HERO SECTION ========== */
    .hero {
        position: relative;
        overflow: hidden;
        height: 100vh;
        min-height: 600px;
    }

    /* Hero Carousel */
    .hero-carousel {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.2s ease;
    }

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

    /* Carousel controls — bottom-right, no background */
    .hero-controls {
        position: absolute;
        bottom: 36px;
        right: 40px;
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Arrows row */
    .hero-arrows {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-arrow {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.85);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        transition: color 0.22s ease, transform 0.22s ease;
        flex-shrink: 0;
        outline: none;
    }

    .hero-arrow:hover {
        color: #fff;
        transform: scale(1.18);
    }

    /* Dots row — beneath arrows */
    .hero-dots {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.38);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.32s ease;
    }

    .hero-dot.active {
        background: #ffffff;
        width: 22px;
        border-radius: 3px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgb(255, 255, 255) 0%,rgba(10, 20, 40, 0.287), rgba(33, 116, 185, 0.08) 100%);
        z-index: 1;
    }



    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        text-align: center;
        color: #ffffff;
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.28s ease, transform 0.28s ease;
        pointer-events: auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Slide content fade transition */
    .hero-content.transitioning {
        opacity: 0;
        transform: translateY(12px);
    }

    /* Eyebrow label above heading */
    .hero-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 14px;
        font-family: 'Inter', sans-serif;
    }

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .hero-content .subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: rgba(255, 255, 255, 0.92);
        max-width: 600px;
        line-height: 1.5;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .hero-content .description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.82);
        max-width: 700px;
        line-height: 1.6;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        letter-spacing: -0.005em;
    }

    .hero-explore-btn {
        background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    }

    .hero-explore-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
        background: var(--off-white);
    }

    .scroll-indicator {
        /* reset button defaults */
        appearance: none;
        -webkit-appearance: none;
        background: none;
        border: none;
        padding: 0;
        outline: none;
        /* positioning */
        position: absolute;
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.75);
        cursor: pointer;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .scroll-indicator:hover {
        color: #fff;
        transform: translateX(-50%) translateY(-3px);
    }

    .scroll-indicator .scroll-text {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        white-space: nowrap;
    }

    .scroll-arrow {
        width: 26px;
        height: 44px;
        border: 2px solid currentColor;
        border-radius: 13px;
        position: relative;
        flex-shrink: 0;
    }

    .scroll-arrow::before {
        content: '';
        position: absolute;
        top: 7px;
        left: 50%;
        width: 5px;
        height: 5px;
        background: currentColor;
        border-radius: 50%;
        transform: translateX(-50%);
        animation: scrollBounce 1.8s ease-in-out infinite;
    }
    
    @keyframes scrollBounce {
        0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 1; }
        50%       { transform: translateX(-50%) translateY(14px); opacity: 0.4; }
    }

    @media (max-width: 768px) {
        .hero-content {
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 18vh;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
        }

    .hero-eyebrow {
        text-align: center;
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
        }
        
        .hero-content .description {
            font-size: 1rem;
        }
        
        .hero-controls {
            bottom: 22px;
            right: 18px;
        }
        
        .scroll-indicator {
            bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .scroll-indicator .scroll-text {
            font-size: 0.65rem;
        }
        
        .scroll-arrow {
            width: 22px;
            height: 36px;
        }
    }

    @media (max-width: 480px) {
        .hero-content {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .hero-content .subtitle {
            font-size: 1rem;
        }
    }

    /* ========== ABOUT SECTION ========== */
    #about {
        background-color: var(--white);
        padding: 100px 0;
        margin-top: 80px;
    }

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

    .about .text h3 {
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
        font-size: 80px;
        margin-bottom: 24px;
        color: var(--primary-blue);
        line-height: 0.9;
    }

    .about .text .lead {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    /* Image Collage Styles */
    .image-collage {
        position: relative;
        width: 100%;
        max-width: 860px;
        height: 560px;
        margin: 0 auto;
        touch-action: none;
        user-select: none;
        overflow: visible;
    }

    .image-collage img {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 60%;
        height: 70%;
        max-width: 600px;
        max-height: 600px;
        transform: translate(-50%, -50%);
        transform-origin: center center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        border-radius: 12px;
        object-fit: cover;
        background-color: #ffffff;
        will-change: transform;
        transition: transform 320ms cubic-bezier(.2,.9,.2,1);
        pointer-events: none;
        border: 4px solid white;
    }

    body.dark-mode .image-collage img {
        background-color: var(--light-gray);
        border: 4px solid var(--light-gray);
    }

    /* stacking z-index */
    .image-collage img[data-index="0"] { z-index: 30; }
    .image-collage img[data-index="1"] { z-index: 29; }
    .image-collage img[data-index="2"] { z-index: 31; }
    .image-collage img[data-index="3"] { z-index: 28; }
    .image-collage img[data-index="4"] { z-index: 27; }

    /* Mobile display for image collage */
    @media (max-width: 768px) {
        .about {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .about .text h3 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .about .text .lead {
            font-size: 1rem;
            margin-bottom: 16px;
        }

        .image-collage {
            position: static !important;
            width: 100% !important;
            height: auto !important;
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 15px !important;
            margin: 0 auto !important;
            touch-action: auto !important;
            user-select: auto !important;
            overflow: visible !important;
            order: -1;
        }
        
        .image-collage img {
            position: static !important;
            left: auto !important;
            top: auto !important;
            width: 100% !important;
            height: 200px !important;
            max-width: none !important;
            max-height: none !important;
            transform: none !important;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
            border-radius: 12px !important;
            object-fit: cover !important;
            background-color: #ffffff !important;
            will-change: auto !important;
            transition: transform 0.2s ease !important;
            pointer-events: auto !important;
            border: 3px solid white !important;
            opacity: 1 !important;
            z-index: auto !important;
        }
        
        body.dark-mode .image-collage img {
            background-color: var(--light-gray) !important;
            border: 3px solid var(--light-gray) !important;
        }
        
        .image-collage img:hover {
            transform: scale(1.02) !important;
        }
        
        .image-collage img:last-child:nth-child(odd) {
            grid-column: 1 / -1 !important;
            max-width: 250px !important;
            margin: 0 auto !important;
        }
    }

    @media (max-width: 480px) {
        .about .text h3 {
            font-size: 36px;
        }

        .image-collage {
            grid-template-columns: 1fr 1fr !important;
            gap: 12px !important;
        }
        
        .image-collage img {
            height: 160px !important;
            border: 2px solid white !important;
        }
        
        body.dark-mode .image-collage img {
            border: 2px solid var(--light-gray) !important;
        }
        
        .image-collage img:last-child:nth-child(odd) {
            max-width: 200px !important;
        }
    }

    /* ========== SERVICES SECTION ========== */
    #services {
        background-color: var(--white);
        padding: 100px 0;
    }

    .service-title img {
        display: block;
        margin: 0 auto;
        height: 130px;
        width: auto;
        margin-bottom: 60px;
    }

    body.dark-mode .service-title img {
        filter: invert(1) brightness(2);
    }

    .services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .service {
        background: var(--white);
        padding: 30px 25px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }

    body.dark-mode .service {
        background: var(--light-gray);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .service:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    body.dark-mode .service:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .service .icon {
        color: var(--primary-blue);
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service h4 {
        color: var(--text-dark);
        margin-bottom: 15px;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .service p.muted {
        color: var(--text-medium);
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 768px) {
        .service-title img {
            height: 60px;
            margin-bottom: 40px;
        }
    }

    /* ========== TRUST SECTION ========== */
    .concerns {
        background: var(--white);
        padding: 100px 0;
    }

    body.dark-mode .concerns {
        background: var(--light-gray);
    }

    .text h3 {
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
        font-size: 80px;
        margin-bottom: 24px;
        color: var(--primary-blue);
        text-align: center;
    }

    .partner-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        align-items: center;
        justify-items: center;
    }

    /* RESTORED TO ORIGINAL - NO CONTAINERS */
    .partner-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
        transition: all 0.3s ease;
        width: 100%;
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
        /* Removed: background: var(--white); */
        /* Removed: border-radius: 8px; */
    }

    .partner-logo:hover {
        transform: scale(1.05);
    }

    .partner-logo img {
        max-width: 100%;
        max-height: 100px;
        object-fit: contain;
        filter: grayscale(0.2);
        transition: filter 0.3s ease;
    }

    .partner-logo:hover img {
        filter: grayscale(0);
    }

    @keyframes bounceIn{
        0% { 
            transform: translateY(-100px) scale(0.3);
            opacity: 0;
        }
        50% { 
            transform: translateY(30px) scale(1.1);
            opacity: 0.8;
        }
        70% { 
            transform: translateY(-15px) scale(0.95);
            opacity: 1;
        }
        85% { 
            transform: translateY(8px) scale(1.02);
            opacity: 1;
        }
        100% { 
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    .partner-logo.animate {
        animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

    /* Staggered animation delays */
    .partner-logo:nth-child(1) { animation-delay: 0.1s; }
    .partner-logo:nth-child(2) { animation-delay: 0.2s; }
    .partner-logo:nth-child(3) { animation-delay: 0.3s; }
    .partner-logo:nth-child(4) { animation-delay: 0.4s; }
    .partner-logo:nth-child(5) { animation-delay: 0.5s; }
    .partner-logo:nth-child(6) { animation-delay: 0.6s; }
    .partner-logo:nth-child(7) { animation-delay: 0.7s; }
    .partner-logo:nth-child(8) { animation-delay: 0.8s; }
    .partner-logo:nth-child(9) { animation-delay: 0.9s; }
    .partner-logo:nth-child(10) { animation-delay: 1.0s; }
    .partner-logo:nth-child(11) { animation-delay: 1.1s; }
    .partner-logo:nth-child(12) { animation-delay: 1.2s; }
    .partner-logo:nth-child(13) { animation-delay: 1.3s; }
    .partner-logo:nth-child(14) { animation-delay: 1.4s; }
    .partner-logo:nth-child(15) { animation-delay: 1.5s; }
    .partner-logo:nth-child(16) { animation-delay: 1.6s; }

    @media (max-width: 768px) {
        .text h3 {
            font-size: 48px;
            margin-bottom: 30px;
        }

        .partner-logos {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 0 10px;
        }
        
        .partner-logo {
            padding: 10px;
        }
        
        .partner-logo img {
            max-height: 60px;
        }
    }

    @media (max-width: 480px) {
        .text h3 {
            font-size: 36px;
            margin-bottom: 25px;
        }

        .partner-logos {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 5px;
        }
        
        .partner-logo {
            padding: 8px;
        }
        
        .partner-logo img {
            max-height: 50px;
        }
    }

    /* ========== HYPE SECTION ========== */
    #hype {
        background-color: var(--white);
        padding: 100px 0;
    }

    .hype-title img {
        display: block;
        margin: 0 auto;
        height: 130px;
        width: auto;
        margin-bottom: 60px;
    }

    body.dark-mode .hype-title img {
        filter: invert(1) brightness(2);
    }

    /* Awards Marquee Styles */
    .awards-marquee-outer {
        overflow: hidden;
        padding: 20px 0 50px;
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .awards-marquee-track {
        display: flex;
        gap: 28px;
        width: max-content;
        animation: awardsScroll 48s linear infinite;
    }

    .awards-marquee-track:hover {
        animation-play-state: paused;
    }

    @keyframes awardsScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .award-card {
        width: 230px;
        flex-shrink: 0;
        background: var(--white);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(33, 117, 185, 0.12);
        border: 1px solid rgba(33, 117, 185, 0.1);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        position: relative;
        cursor: default;
    }

    body.dark-mode .award-card {
        background: #1e293b;
        border-color: rgba(33, 117, 185, 0.25);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .award-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(33, 117, 185, 0.22);
    }

    body.dark-mode .award-card:hover {
        box-shadow: 0 20px 50px rgba(33, 117, 185, 0.35);
    }

    .award-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
        z-index: 1;
    }

    .award-card-year {
        position: absolute;
        top: 14px;
        right: 14px;
        background: var(--primary-blue);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 4px 11px;
        border-radius: 20px;
        z-index: 2;
        letter-spacing: 0.5px;
    }

    .award-card-img-wrap {
        height: 185px;
        background: #f4f6f9;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    body.dark-mode .award-card-img-wrap {
        background: #0f172a;
    }

    .award-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .award-card:hover .award-card-img-wrap img {
        transform: scale(1.06);
    }

    .award-card-body {
        padding: 16px 16px 20px;
    }

    .award-card-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 5px;
        line-height: 1.3;
    }

    body.dark-mode .award-card-title {
        color: #f1f5f9;
    }

    .award-card-sub {
        font-size: 0.78rem;
        color: var(--primary-blue);
        font-weight: 600;
        margin: 0;
    }

    @media (max-width: 768px) {
        .hype-title img {
            height: 60px;
            margin-bottom: 40px;
        }

        .award-card {
            width: 200px;
        }

        .award-card-img-wrap {
            height: 155px;
        }
    }

    @media (max-width: 480px) {
        .hype-title img {
            height: 50px;
            margin-bottom: 30px;
        }

        .award-card {
            width: 175px;
        }

        .award-card-img-wrap {
            height: 135px;
        }

        .award-card-body {
            padding: 12px 12px 16px;
        }
    }

    /* ========== FOOTER ========== */
    footer {
        background: #1a1a1a;
        color: #e0e0e0;
        padding: 80px 0 0;
        position: relative;
    }

    footer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px;
        margin-bottom: 60px;
    }

    footer .brand {
        color: var(--primary-blue);
        font-weight: 700;
        font-size: 1.4rem;
    }

    footer h4 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 25px;
        position: relative;
    }

    footer h4:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary-blue);
        border-radius: 2px;
    }

    .footer-links a {
        color: #b0b0b0;
        text-decoration: none;
        display: block;
        margin-bottom: 12px;
        transition: var(--transition);
        position: relative;
        padding-left: 0;
    }

    .footer-links a:before {
        content: '→';
        position: absolute;
        left: -20px;
        opacity: 0;
        color: var(--primary-blue);
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--primary-blue);
        padding-left: 20px;
    }

    .footer-links a:hover:before {
        opacity: 1;
        left: 0;
    }

    .contact-info {
        color: #b0b0b0;
        line-height: 1.8;
    }

    .contact-info i {
        color: var(--primary-blue);
        width: 20px;
        margin-right: 10px;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        color: #999;
        padding: 25px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-legal a {
        color: #999;
        text-decoration: none;
        margin-left: 25px;
        transition: var(--transition);
    }

    .footer-legal a:hover {
        color: var(--primary-blue);
    }

    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .social-links a {
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        text-decoration: none;
        transition: background 0.25s ease, border-color 0.25s ease,
                    color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .social-links a:hover {
        color: #fff;
        transform: translateY(-4px);
        border-color: transparent;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }

    /* Per-platform brand colours on hover */
    .social-links a[aria-label="LinkedIn"]:hover   { background: #0A66C2; }
    .social-links a[aria-label="Twitter"]:hover    { background: #1DA1F2; }
    .social-links a[aria-label="Facebook"]:hover   { background: #1877F2; }
    .social-links a[aria-label="Instagram"]:hover  {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }
    .social-links a[aria-label="YouTube"]:hover    { background: #FF0000; }

body.dark-mode .service-title img,
body.dark-mode .hype-title img {
    filter: none !important;
}

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
        
        .footer-legal a {
            margin: 0 12px;
        }
    }

    
    /* ========== HERO SECTION RESPONSIVE FIXES ========== */
/* Mobile-specific fixes for hero image */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    /* Hero content adjustments for mobile */
    .hero-content {
        padding: 20px 20px 18vh;
        align-items: center;
        text-align: center;
    }
    
    body.dark-mode .hero-content {
        background: transparent;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 15px 15px 18vh;
    }
}

/* Landscape mode on mobile - different approach needed */
@media (max-height: 500px) and (max-width: 900px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content .subtitle {
        font-size: 1rem !important;
    }
    
    .hero-content .description {
        font-size: 0.9rem !important;
        margin-bottom: 1rem;
    }
}

/* Tablet adjustments */



/* Mobile responsive fixes for hero section */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh; /* Ensure full viewport height */
    height: auto; /* Allow content to determine height */
  }
  
  .hero-section img,
  .hero-background,
  .hero-image {
    object-fit: contain !important; /* Show full image instead of cropping */
    object-position: center;
    height: 100%;
    width: 100%;
  }
  
  /* Alternative approach if you want to keep cover but adjust position */
  .hero-section img.cover-style,
  .hero-background.cover-style {
    object-fit: cover;
    object-position: center top; /* Adjust to show heads instead of feet */
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem;
  }
  
  .hero-section img,
  .hero-background {
    object-fit: contain !important;
    max-height: 60vh; /* Limit image height to leave room for text */
  }
}


/* Nuclear option - remove all blur effects on mobile */
@media (max-width: 768px) {
  * {
    backdrop-filter: none !important;
              -webkit-backdrop-filter: none !important;
  }
  
  /* Keep your image sharp */
  .hero-section img {
    filter: none !important;
  }
}


/* Fix for blur overlay on medium-sized mobile devices (iPhone 12 Pro, etc.) */
@media (min-width: 375px) and (max-width: 428px) {
  /* Remove or adjust blur overlay */
  .hero-section::before,
  .hero-section::after,
  .hero-overlay,
  .blur-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.3) !important; /* Light overlay instead of blur */
  }
  
  /* If the blur is on a specific container */
  .hero-content,
  .text-container {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
  }
  
  /* Ensure text remains readable without blur background */
  .hero-section h1,
  .hero-section p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

/* Specific fix for iPhone 12 Pro (390px width) */
@media (width: 390px) {
  .hero-section::before,
  .hero-overlay {
    display: none !important;
  }
}

/* General fix for all mobile if blur persists */
@media (max-width: 768px) {
  .hero-section *[style*="backdrop-filter"],
  .hero-section *[style*="blur"] {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Remove middle blur overlay for iPhone 12 Pro and similar devices */
@media (min-width: 375px) and (max-width: 430px) {
  /* Target the specific blur container */
  .hero-section .blur-container,
  .hero-section .content-wrapper,
  .hero-section .text-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
  }
  
  /* Ensure content container doesn't have blur */
  .hero-section > div {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  /* Keep text readable without background blur */
  .hero-section h1,
  .hero-section .heading,
  .hero-section p,
  .hero-section .description {
    text-shadow: 
      0 2px 4px rgba(0, 0, 0, 0.8),
      0 0 10px rgba(0, 0, 0, 0.5);
    background: transparent !important;
    backdrop-filter: none !important;
  }
  
  /* Fix for the entire hero section */
  .hero-section {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  /* Remove blur from any child elements */
  .hero-section * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  /* Keep button visible */
  .hero-section button,
  .hero-section .cta-button {
    background: #2175b9 !important;
    backdrop-filter: none !important;
  }
}

/* Fix for iPhone 12 Pro and similar devices (375px - 430px) */
@media (min-width: 375px) and (max-width: 430px) {
  
  /* Show more of the image - reduce cropping on sides */
  .hero-section {
    min-height: 100vh;
    overflow: hidden;
  }
  
  .hero-section img,
  .hero-background,
  .background-image {
    object-fit: cover;
    object-position: center 20%; /* Show more of upper body */
    width: 100%;
    height: 100%;
    transform: scale(0.85); /* Zoom out slightly to show people on sides */
  }
  
  /* Move text content down to avoid covering middle person's face */
  .hero-content,
  .text-container,
  .hero-section > div {
    display: flex;
    flex-direction: column;
   
    padding-bottom: 100px; /* Space from bottom */
    padding-top: 200px; /* Push away from faces */
  }
  
  /* Adjust heading position */
  .hero-section h1,
  .hero-section .heading {
    margin-top: auto; /* Push down */
    padding-top: 250px; /* Move below faces */
  }
  
  /* Adjust paragraph text */
  .hero-section p,
  .hero-section .description {
    margin-top: 1rem;
  }
  
  /* Keep button at bottom */
  .hero-section button,
  .hero-section .cta-button {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}

/* Alternative approach - split layout */
@media (min-width: 375px) and (max-width: 430px) {
  .hero-section {
    position: relative;
    min-height: 100vh;
  }
  
  /* Image container - top 60% */
  .hero-section .image-container,
  .hero-section .background-image {
    height: 60vh;
    object-fit: contain; /* Show full width of image */
    object-position: center top;
  }
  
  /* Content container - bottom 40% */
  .hero-section .content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    backdrop-filter: none !important;
  }
  
  /* Text styling for readability */
  .hero-section h1,
  .hero-section p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  }
}

/* Most flexible solution - using flexbox */
@media (min-width: 375px) and (max-width: 430px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
  }
  
  /* Background image settings */
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-image);
    background-size: contain; /* Show full image width */
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
  }
  
  /* Content positioning */
  .hero-section .content {
    margin-top: auto; /* Push to bottom */
    padding: 2rem 1.5rem 3rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(
      to top, 
      rgba(0, 0, 0, 0.85) 0%, 
      rgba(0, 0, 0, 0.6) 50%,
      transparent 100%
    );
  }
}

@media (max-width: 430px) {
  /* Reduce image zoom to show sides */
  .hero-section img {
    object-fit: contain !important;
    height: 55vh !important;
    margin-top: 80px;
  }
  
  /* Move all text down */
  .hero-section h1 { margin-top: 300px !important; }
  .hero-section p { margin-top: 1rem; }
  .hero-section button { margin-top: 1.5rem; }
}

@media (max-width: 430px) {
  /* Container adjustments */
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
  }
  
  /* Show complete image - no cropping */
  .hero-section img,
  .hero-section .background-image {
    object-fit: contain !important; /* This is key - shows entire image */
    width: 100% !important;
    height: 45vh !important; /* Adjust this value */
    object-position: center top !important;
  }
  
  /* Compact text to fit everything */
  .hero-section h1 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
  }
  
  .hero-section p {
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0.5rem 0;
  }
  
  .hero-section button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Show full image width on mobile - display all three people */
@media (max-width: 430px) {
  .hero-section img,
  .hero-section .background-image,
  .hero-background {
    object-fit: contain !important; /* Show full width without cropping */
    object-position: center top !important;
    width: 100% !important;
    height: auto !important;
    max-height: 50vh; /* Limit height to leave room for text */
    margin-top: 60px; /* Space from header */
  }
  
  /* Adjust hero section height */
  .hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Ensure text content has proper spacing */
  .hero-section .content,
  .hero-section .text-content {
    margin-top: auto;
    padding: 1.5rem;
  }
  
  /* Adjust text size if needed for smaller space */
  .hero-section h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .hero-section p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Alternative: Scale down the image to fit */
@media (max-width: 430px) {
  .hero-section img {
    transform: scale(0.8) !important; /* Zoom out to show sides */
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Best solution: Use aspect-ratio to maintain proportions */
@media (max-width: 430px) {
  .hero-section {
    position: relative;
    min-height: 100vh;
  }
  
  .hero-section img,
  .hero-background {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Adjust based on your image */
    object-fit: cover;
    object-position: 50% 30%; /* Center horizontally, show upper portion */
    transform: scale(0.85); /* Slight zoom out */
    transform-origin: center center;
  }
}

/* =============================================================
   HERO-PAGE: Transparent navbar — only applies to index.html
   ============================================================= */

/* Default (over hero): fully transparent */
body.hero-page #header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

/* Nav links → white over dark hero */
body.hero-page #header .nav-items a {
    color: rgba(255, 255, 255, 0.88);
}
body.hero-page #header .nav-items a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
body.hero-page #header .nav-items a.active {
    color: #fff;
}
body.hero-page #header .nav-items a.active::after {
    background: #fff;
}

/* CTA button → white outlined */
body.hero-page .nav-actions .btn-outline,
body.hero-page .nav-actions .btn.btn-outline {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
}
body.hero-page .nav-actions .btn-outline:hover,
body.hero-page .nav-actions .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: #fff;
    box-shadow: none;
}

/* Dark mode toggle → white tint */
body.hero-page .dark-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}
body.hero-page .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* Hamburger → white */
body.hero-page .hamburger {
    color: rgba(255, 255, 255, 0.88);
}
body.hero-page .hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---- Scrolled: revert to full glassmorphic style ---- */
body.hero-page #header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(33, 117, 185, 0.07);
    box-shadow: 0 2px 24px rgba(33, 117, 185, 0.08);
}
body.hero-page #header.scrolled .nav-items a {
    color: #334155;
}
body.hero-page #header.scrolled .nav-items a:hover {
    color: #2175b9;
    background: rgba(33, 117, 185, 0.06);
}
body.hero-page #header.scrolled .nav-items a.active {
    color: #2175b9;
}
body.hero-page #header.scrolled .nav-items a.active::after {
    background: #2175b9;
}
body.hero-page #header.scrolled .btn-outline,
body.hero-page #header.scrolled .btn.btn-outline {
    color: #2175b9;
    border-color: #2175b9;
}
body.hero-page #header.scrolled .btn-outline:hover,
body.hero-page #header.scrolled .btn.btn-outline:hover {
    background: #2175b9;
    color: #fff;
    box-shadow: 0 4px 14px rgba(33, 117, 185, 0.25);
}
body.hero-page #header.scrolled .dark-mode-toggle {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #475569;
}
body.hero-page #header.scrolled .dark-mode-toggle:hover {
    border-color: #2175b9;
    color: #2175b9;
    background: rgba(33, 117, 185, 0.06);
}
body.hero-page #header.scrolled .hamburger {
    color: #334155;
}
body.hero-page #header.scrolled .hamburger:hover {
    background: rgba(33, 117, 185, 0.08);
    color: #2175b9;
}

/* Dark mode scrolled variant */
body.hero-page.dark-mode #header.scrolled {
    background: rgba(15, 23, 42, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}
body.hero-page.dark-mode #header.scrolled .nav-items a { color: #cbd5e1; }
body.hero-page.dark-mode #header.scrolled .nav-items a.active,
body.hero-page.dark-mode #header.scrolled .nav-items a:hover { color: #60a5fa; }
