        /* CSS Reset & Variables */
        :root {
            --header-height: 80px;
            --color-black: #000000;
            --color-white: #ffffff;
            --color-bg: var(--color-black);
            --color-text: var(--color-white);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Guardian Sans', 'Montserrat', 'Poppins', sans-serif;
            background-color: var(--color-black);
            color: var(--color-white);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* HEADER */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 10000; /* above overlay */
            background-color: transparent;
            color: var(--color-white);
            transition: var(--transition);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .site-header.scrolled {
        background-color: #000000 !important;
        color: var(--color-white);
        border-bottom-color: rgba(255,255,255,0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .site-header.menu-open {
            background-color: transparent !important;
            color: var(--color-white) !important;
            border-bottom-color: rgba(255,255,255,0.1) !important;
        }

        .preloader-logo {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: serif !important;
            letter-spacing: -0.5px !important;
            text-decoration: none !important;
            color: #fff !important;
            border: none !important;
            padding: 28px 28px 28px 28px !important;
            text-transform: none !important;
            transform-origin: center center !important;
            transform: scale(1.5);
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            height: auto;
            line-height: 1;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: serif;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #fff !important;
            border: none !important;
            padding: 28px 28px 28px 28px !important;
            text-transform: none;
            z-index: 10001;
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            height: auto;
            line-height: 1;
        }

        /* DESKTOP NAV */
        .main-nav {
            height: 100%;
        }

        .nav-list {
            display: flex;
            list-style: none;
            height: 100%;
            align-items: center;
            gap: 32px;
        }

        .nav-item {
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: inherit;
            font-size: 1.15rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .nav-link:hover {
            opacity: 0.7;
        }

        .nav-link svg {
            transition: transform 0.2s;
        }
        
        .nav-item.has-mega-menu:hover .nav-link svg {
            transform: rotate(180deg);
        }

        /* DESKTOP MEGA MENU */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background-color: var(--color-black);
            color: var(--color-white);
            width: 100vw;
            padding: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr) auto;
            gap: 60px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            pointer-events: none;
            padding-left: max(40px, calc((100vw - 1200px) / 2));
            padding-right: max(40px, calc((100vw - 1200px) / 2));
            z-index: 10002;
        }

        .site-header.scrolled .mega-menu {
        background-color: var(--color-black);
        color: var(--color-white);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-item.has-mega-menu:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .mega-column h3 {
            font-size: 1.3rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 24px;
            padding-bottom: 10px;
            opacity: 0.9;
        }

        .mega-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mega-column ul li a {
            text-decoration: none;
            color: inherit;
            font-size: 1.05rem;
            opacity: 0.7;
            transition: opacity 0.2s;
            display: block;
        }

        .mega-column ul li a:hover {
            opacity: 1;
        }

        /* FULLSCREEN OVERLAY MENU */
        .fullscreen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            display: flex;
            align-items: center;
            padding: 40px 10%;
        }

        .fullscreen-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .overlay-nav {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .overlay-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .overlay-nav-item {
            position: relative;
        }

        .overlay-nav-link {
            text-decoration: none;
            color: var(--color-white);
            font-size: 3rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .overlay-nav-link:hover {
            color: rgba(255,255,255,0.5);
        }

        .overlay-mega-panel {
            flex: 1;
            margin-left: 10%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px);
            transition: all 0.4s ease;
        }

        .overlay-nav-item.has-mega-menu:hover ~ .overlay-mega-panel,
        .overlay-mega-panel:hover {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .overlay-mega-column h3 {
            font-size: 1.3rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 24px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .overlay-mega-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .overlay-mega-column ul li a {
            text-decoration: none;
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            transition: color 0.3s;
        }

        .overlay-mega-column ul li a:hover {
            color: var(--color-white);
        }

        /* HEADER ACTIONS */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 30px;
            z-index: 10001;
        }

        .header-login-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.2s;
            width: 24px;
            height: 24px;
        }

        .header-login-link:hover {
            opacity: 0.7;
        }

        .search-icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .search-icon:hover {
            opacity: 0.7;
        }

        /* Hamburger Icon */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 32px;
            height: 20px;
            cursor: pointer;
        }

        .hamburger .line {
            width: 100%;
            height: 2px;
            background-color: currentColor;
            transition: all 0.3s ease;
            transform-origin: left center;
        }

        .hamburger.open .line:nth-child(1) {
            transform: rotate(45deg);
        }
        .hamburger.open .line:nth-child(2) {
            opacity: 0;
            width: 0;
        }
        .hamburger.open .line:nth-child(3) {
            transform: rotate(-45deg);
        }


        /* MEGA SCROLL SECTION (UNIFIED HERO + Slider) */
        .mega-scroll-section {
            position: relative;
            height: 600vh; /* 200vh for text animations, 400vh for canvas sliding */
            background-color: var(--color-black);
            z-index: 10;
        }

        .sticky-container {
            position: sticky;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--color-black);
        }

        .hero-title {
            position: absolute;
            z-index: 20; /* Keep it above canvas */
            font-size: 4.5vw; /* Made text significantly larger */
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-align: center;
            display: flex; 
            flex-wrap: wrap; /* Allows text to drop to a second line gracefully if huge */
            gap: 1.5vw; 
            justify-content: center;
            align-items: center; 
            line-height: 1.2; 
            width: 100vw;
            max-width: 1600px;
            padding: 0 40px;
            margin: 0;
            pointer-events: none;
        }

        .hero-word {
            opacity: 0; /* initially hidden */
            filter: blur(10px);
            transform: translateY(30px); /* ready to animate in */
            will-change: opacity, filter, transform;
            transition: opacity 0.1s, filter 0.1s, transform 0.1s; /* rapid tweening */
        }

        .scroll-down-indicator {
            position: absolute;
            top: 50px;
            z-index: 20;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.5s ease;
        }

        .scroll-down-indicator svg {
            width: 24px;
            height: 24px;
            opacity: 0.8;
        }

        .mouse-wheel {
            animation: wheelDrop 1.5s infinite;
        }

        @keyframes wheelDrop {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(6px); opacity: 0; }
        }

        canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: 10;
            opacity: 0; /* completely hidden at start so area is PITCH BLACK */
            transition: opacity 0.2s;
        }

        .footer-spacer {
            height: 60vh;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #444;
            font-size: 1.2rem;
            border-top: 1px solid #111;
        }

        /* ABOUT SECTION */
        .about-section {
            background-color: var(--color-white);
            color: var(--color-black);
            padding: 120px 40px;
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 20;
        }

        .about-container {
            max-width: 1200px;
            width: 100%;
        }

        .about-subtitle {
            display: block;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 40px;
            color: #333;
        }

        .about-title {
            text-align: center;
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 4.5rem;
            font-weight: 400; 
            margin-bottom: 100px;
            letter-spacing: -1px;
            color: #000;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .about-content {
            padding-right: 40px;
        }

        .content-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 25px;
            color: #111;
        }

        .content-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 40px;
        }

        .learn-more-link {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: #000;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .learn-more-link:hover {
            opacity: 0.7;
        }

        .arrow-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .learn-more-link:hover .arrow-circle {
            background-color: #000;
            color: #fff;
        }

        .arrow-circle svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
        }

        .learn-more-link:hover .arrow-circle svg {
            transform: translateX(3px);
        }

        .about-stats {
            padding-left: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stat-number {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 6.5rem;
            font-weight: 400;
            line-height: 1;
            letter-spacing: -2px;
            margin-bottom: 15px;
            color: #000;
        }

        .stat-label {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: #111;
            margin-bottom: 40px;
        }

        .stat-disclaimer {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            line-height: 1.5;
            color: #666;
        }

        .stat-disclaimer p {
            margin-bottom: 10px;
        }

        .footnote {
            font-size: 0.75rem;
        }

        /* FAQ SECTION */
        .faq-section {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: 120px 40px;
            display: flex;
            justify-content: center;
        }

        .faq-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 60px;
        }

        .faq-left {
            display: flex;
            flex-direction: column;
            padding-right: 40px;
        }

        .faq-eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 50px;
        }

        .faq-eyebrow span {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .eyebrow-line {
            height: 1px;
            width: 50px;
            background-color: rgba(255, 255, 255, 0.4);
        }

        .faq-title {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 60px;
            color: var(--color-white);
            letter-spacing: -1px;
        }

        .faq-desc-wrapper {
            padding-left: 15%; 
        }

        .faq-desc {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #ddd;
            margin-top: 50px;
        }

        .faq-learn-more {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-white);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .faq-learn-more:hover {
            opacity: 0.7;
        }

        .faq-arrow-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-learn-more:hover .faq-arrow-circle {
            background-color: var(--color-white);
            color: var(--color-black);
        }

        .faq-arrow-circle svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .faq-learn-more:hover .faq-arrow-circle svg {
            transform: translateX(3px);
        }

        .faq-right {
            display: flex;
            align-items: stretch;
        }

        .faq-card {
            background-color: #121214;
            padding: 70px 60px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-item-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            padding: 30px 0;
            color: var(--color-white);
            transition: opacity 0.3s;
            gap: 30px;
        }

        .faq-item-link:hover {
            opacity: 0.8;
        }

        .faq-question {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            font-weight: 400;
            line-height: 1.5;
            color: #f1f1f1;
        }

        .faq-item.open .faq-question {
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .faq-answer {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #aaa;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease;
            padding-right: 40px;
            margin-top: 0;
        }

        .faq-item.open .faq-answer {
            max-height: 300px; /* safe height for average text */
            opacity: 1;
            margin-top: -10px;
            margin-bottom: 30px;
        }

        .faq-item-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            color: var(--color-white);
        }

        .faq-item.open .faq-item-arrow,
        .faq-item-link:hover .faq-item-arrow {
            background-color: var(--color-white);
            color: var(--color-black);
        }

        .faq-item-arrow svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .faq-line-v {
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform-origin: center;
        }

        .faq-item.open .faq-line-v {
            opacity: 0;
            transform: scaleY(0);
        }

        .faq-item-link:hover .faq-item-arrow svg {
            transform: scale(1.1);
        }

        /* WORLD SHOWCASE GSAP SECTION */
        .world-showcase-section {
            height: 400vh;
            background-color: var(--color-white); /* Starts white, GSAP will morph to black */
            position: relative;
        }
        
        .world-sticky {
            position: sticky;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: visible; /* ALLOW GLOBE TO DROP DOWN */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* The main texts that are layered */
        .world-bg-text {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-size: 15vw;
            font-weight: 700;
            color: #f0f0f0; 
            z-index: 1; /* BEHIND THE GLOBE */
            pointer-events: none;
            opacity: 0; /* Animated by GSAP */
            transform: translateY(50px);
            white-space: nowrap;
        }
        
        .world-globe-container {
            position: absolute;
            z-index: 10;
            max-width: 65vh; /* HUGE size */
            width: 100%;
            height: auto;
            aspect-ratio: 1/1; /* Ensure perfect square for precise dot positioning */
            display: flex;
            align-items: center;
            justify-content: center;
            transform-origin: center center;
            /* Move manipulated by GSAP x/y/scale/rotation */
        }

        .world-globe-img {
            width: 100%;
            height: auto;
            pointer-events: none;
        }

        .world-point {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0; /* GSAP Stagger fade in */
            transform: scale(0.5); /* GSAP Scale up */
        }

        .world-point-dot {
            width: 1vh;
            height: 1vh;
            background-color: var(--color-white);
            border-radius: 50%;
            box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 2;
        }

        .world-point-dot::after {
            content: '';
            position: absolute;
            top: -1vh; left: -1vh;
            width: 3vh; height: 3vh;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.5);
            animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
            z-index: 1;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.5); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .world-point-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: #fff;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0,0,0,1);
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            margin-left: 5px;
            white-space: nowrap;
        }

        .world-side-content {
            position: absolute;
            width: 30vw;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 0; /* GSAP manipulates */
            pointer-events: none;
        }

        .world-text-right {
            right: 8vw;
            text-align: left;
            color: var(--color-black); /* Initially white bg */
        }

        .world-text-left {
            left: 8vw;
            text-align: left;
            color: var(--color-white); /* Since bg becomes black */
        }

        .world-content-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            line-height: 1.1;
        }

        .world-content-desc {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            line-height: 1.6;
            color: inherit;
        }

        /* FADE-UP ENTRY ANIMATIONS */
        .fade-up-element {
            opacity: 0;
            transform: translateY(50px);
            /* Handled by GSAP ScrollTrigger */
        }

        /* NEW SERVICES CAROUSEL SECTION */
        .services-slider-section {
            background-color: #ffffff; /* White bg instead of dark */
            padding: 50px 5vw 100px 5vw;
            overflow: hidden;
            position: relative;
        }

        .world-services-header {
            position: absolute;
            top: 50px;
            left: 5vw;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            z-index: 1; /* Keep it below the globe */
        }

        .services-logo-box {
            width: 40px;
            height: 40px;
            background-color: var(--color-black);

            
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }
        
        .services-logo-box svg {
            width: 20px; height: 20px;
        }

        .services-main-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--color-black);
        }

        .services-main-desc {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin-bottom: 60px;
            font-weight: 500;
        }

        .services-carousel-wrapper {
            position: relative;
            width: 100%;
            margin-top: 200px;
        }

        .services-carousel-track {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 40px;
            /* Hide scrollbar */
            scrollbar-width: none; 
            -ms-overflow-style: none;
        }
        
        .services-carousel-track::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            flex: 0 0 500px;
            height: 600px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        }

        .service-card-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-card-bg {
            transform: scale(1.05);
        }

        .service-card-content {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transform: translateY(0);
            transition: transform 0.4s ease;
        }

        .service-card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-black);
            margin-bottom: 15px;
        }

        .service-card-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
        }

        .services-nav-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }

        .service-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: #555;
        }

        .service-nav-btn:hover {
            background: var(--color-black);
            color: #fff;
            border-color: var(--color-black);
        }

        /* Mobile specific adjustments */
        @media(max-width: 1024px) {
            .nav-list { display: none; }
            .hero-title { font-size: 3rem; }
            .overlay-nav { flex-direction: column; }
            .overlay-mega-panel { display: none; }
            
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-content { padding-right: 0; }
            .about-stats { padding-left: 0; }
            .about-title { font-size: 3rem; margin-top: 50px; }
            .stat-number { font-size: 4rem; }
        }

        /* FOOTER SECTION */
        .site-footer {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: 100px 60px 40px 60px;
            font-family: 'Montserrat', sans-serif;
            border-top: 1px solid #1a1a1a;
            position: relative;
            z-index: 50;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 100px;
        }

        .footer-logo-area {
            display: flex;
            align-items: center;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            line-height: 1.1;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-logo-box {
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 10px 15px;
            display: inline-block;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }

        .footer-column-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #fff;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-column a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            font-size: 0.85rem;
            color: #a0a0a0;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: flex-end;
            max-width: 60%;
        }

        .footer-bottom-links a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }
        
        .footer-copyright {
            color: #fff;
            font-weight: 500;
        }

        @media(max-width: 1024px) {
            .footer-top { flex-direction: column; gap: 60px; margin-bottom: 60px; }
            .footer-links-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
            .footer-bottom-links { justify-content: flex-start; max-width: 100%; }
        }
    
        /* PRELOADER */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--color-black);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            pointer-events: none;
        }


        /* SEARCH OVERLAY */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #f1f1f1;
            z-index: 10005;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .search-overlay-content {
            width: 100%;
            max-width: 900px;
            padding: 40px;
            position: relative;
        }

        .search-close-btn {
            position: absolute;
            top: -20px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e5e5e5;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #555;
            transition: all 0.3s;
        }
        
        .search-close-btn:hover {
            background: #ddd;
            color: #000;
        }

        .search-close-btn svg {
            width: 18px;
            height: 18px;
        }

        .search-input-group {
            display: flex;
            align-items: center;
            gap: 20px;
            border-bottom: 2px solid #ccc;
            padding-bottom: 15px;
            margin-bottom: 40px;
            margin-top: 20px;
        }

        .search-input-group svg {
            width: 24px;
            height: 24px;
            color: #888;
        }

        .search-input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            font-size: 2.2rem;
            font-family: 'Poppins', sans-serif;
            color: #333;
            font-weight: 500;
        }
        
        .search-input::placeholder {
            color: #555;
        }

        .quick-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .quick-links-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: #888;
            letter-spacing: 1px;
        }

        .quick-links-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .quick-links-tags a {
            text-decoration: none;
            color: #777;
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .quick-links-tags a:hover {
            background: #fff;
            border-color: #aaa;
            color: #333;
        }

    
        /* FEATURED BLOGS SECTION */
        .featured-blogs-section {
            background-color: var(--color-white);
            color: var(--color-black);
            padding: 120px 40px;
            display: flex;
            justify-content: center;
        }

        .blog-container {
            max-width: 1400px;
            width: 100%;
        }

        .blog-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .blog-eyebrow {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #333;
        }

        .blog-eyebrow-line {
            height: 1px;
            width: 60px;
            background-color: #000;
        }

        .blog-main-title {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 60px;
            color: #000;
            letter-spacing: -1px;
        }

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

        .blog-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image-wrapper {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background-color: #f0f0f0;
        }

        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }

        .blog-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            font-weight: 500;
            line-height: 1.4;
            color: #111;
        }

        @media(max-width: 1024px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }
        @media(max-width: 768px) {
            .blog-grid { grid-template-columns: 1fr; }
        }

    
        /* CONTACT SECTION */
        .contact-section {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: 120px 5vw;
            display: flex;
            justify-content: center;
        }

        .contact-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-left {
            display: flex;
            flex-direction: column;
        }

        .contact-eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .contact-eyebrow span {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .contact-eyebrow-line {
            height: 1px;
            width: 60px;
            background-color: rgba(255, 255, 255, 0.4);
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.15;
            color: var(--color-white);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            width: 100%;
        }

        .contact-form input,
        .contact-form select {
            width: 100%;
            background-color: #151517;
            border: 1px solid #222;
            padding: 20px 25px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            appearance: none;
        }

        .contact-form input::placeholder {
            color: #888;
        }

        .contact-form input:focus,
        .contact-form select:focus {
            border-color: #555;
        }
        
        .contact-form select {
            color: #888;
            cursor: pointer;
        }

        .contact-consent {
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            cursor: pointer;
            position: relative;
        }

        .checkbox-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            height: 20px;
            width: 20px;
            background-color: transparent;
            border: 1px solid #555;
            flex-shrink: 0;
            position: relative;
            margin-top: 2px;
        }

        .checkbox-container input:checked ~ .checkmark {
            background-color: #fff;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .checkbox-container input:checked ~ .checkmark:after {
            display: block;
        }

        .checkbox-container .checkmark:after {
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid #000;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .consent-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            line-height: 1.5;
            color: #888;
        }

        .contact-submit-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-submit-btn {
            background: transparent;
            border: none;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .contact-submit-btn:hover {
            opacity: 0.7;
        }

        .contact-submit-btn svg {
            width: 32px;
            height: 32px;
            border: 1px solid #fff;
            border-radius: 50%;
            padding: 6px;
        }
        
        .contact-msg {
            margin-top: 15px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
        }

        /* RESPONSIVE UTILITY GRIDS & GENERAL RESILIENCE */
        .responsive-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .responsive-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        @media(max-width: 1024px) {
            .contact-container { grid-template-columns: 1fr; gap: 40px; }
            .contact-title { font-size: 2.5rem; }
            .responsive-grid-3 {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            .faq-container {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            .faq-left {
                padding-right: 0;
            }
        }
        @media(max-width: 768px) {
            .logo, .preloader-logo {
                font-size: 1.4rem !important;
                padding: 6px 14px !important;
                align-items: center !important;
                line-height: 1.2 !important;
            }
            .preloader-logo {
                transform: scale(1.2) !important;
                transform-origin: center center !important;
            }
            .contact-section {
                padding: 80px 6vw !important;
                border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
            }
            .contact-container {
                gap: 40px !important;
            }
            .contact-title {
                font-size: 2.1rem !important;
                line-height: 1.2 !important;
            }
            .site-footer {
                padding: 60px 6vw 40px 6vw !important;
                border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
            }
            .footer-top {
                margin-bottom: 40px !important;
                gap: 40px !important;
            }
            .responsive-grid-3 {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
            .responsive-grid-2 {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
            .hero-title {
                font-size: 9vw !important;
            }
            .faq-section {
                padding: 60px 20px !important;
            }
            .faq-title {
                font-size: 2.2rem !important;
            }
            .faq-eyebrow {
                margin-top: 20px !important;
            }
            .hide-on-mobile {
                display: none !important;
            }
            .wwd-card {
                padding: 18px !important;
            }
            .responsive-grid-3 {
                gap: 15px !important;
            }
            .wwd-card > div:first-child {
                margin-bottom: 12px !important;
            }
            .wwd-card > div:first-child > div:first-child {
                width: 36px !important;
                height: 36px !important;
            }
            .wwd-card > div:first-child > div:first-child svg {
                width: 18px !important;
                height: 18px !important;
            }
            .wwd-card > div:first-child > .wwd-card-toggle {
                width: 24px !important;
                height: 24px !important;
            }
            .wwd-card h3 {
                font-size: 1.15rem !important;
            }
            .wwd-card-content p {
                font-size: 0.85rem !important;
                margin-top: 10px !important;
            }
            .custom-accordion-header {
                padding: 16px 20px !important;
            }
            .custom-accordion-header h3 {
                font-size: 1.25rem !important;
            }
            .custom-accordion-icon {
                width: 32px !important;
                height: 32px !important;
            }
            .custom-accordion-content {
                padding: 0 20px !important;
            }
            .custom-accordion-content > div {
                padding-bottom: 20px !important;
                font-size: 0.9rem !important;
                line-height: 1.6 !important;
            }
            .faq-item-link {
                padding: 16px 0 !important;
            }
            .faq-question {
                font-size: 0.95rem !important;
            }
            .faq-answer {
                font-size: 0.85rem !important;
                padding-right: 20px !important;
            }
            .faq-item.open .faq-answer {
                margin-bottom: 16px !important;
            }
            .faq-item-arrow {
                width: 26px !important;
                height: 26px !important;
            }
            .wwd-section-title {
                font-size: 2.5rem !important;
            }
            .wwd-section-subtitle {
                font-size: 0.8rem !important;
            }
            .footer-logo-text {
                font-size: 1.5rem !important;
            }
        }

        /* Collapsible What We Do Grid Cards */
        .wwd-card {
            background: #f8f8f8;
            padding: 40px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .wwd-card:hover {
            background: #f1f1f1;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.08);
        }
        .wwd-card.open {
            background: #ffffff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
            border-color: rgba(0, 0, 0, 0.12);
        }
        .wwd-card-content {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .wwd-card-content p {
            margin: 20px 0 0 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555;
        }

        /* Subpage Hero Responsiveness */
        @media(max-width: 768px) {
            .subpage-hero {
                padding: 140px 5vw 60px 5vw !important;
                min-height: auto !important;
            }
            .subpage-hero h1 {
                font-size: 2.5rem !important;
            }
        }