 :root {
            --primary-green: #21362C;
            --primary-gold: #CEB472;
            --text-light: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            width: 100vw;
            height: 100vh;
            overflow: hidden !important; /* Force no scroll - Full Locking */
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-green);
            color: var(--text-light);
        }

        body.menu-open {
            overflow: hidden !important;
        }

        /* LOAD SCREEN */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--primary-green);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader-logo {
            width: 120px;
            opacity: 0;
            transform: scale(0.8);
        }

        /* WRAPPER FOR SCROLLTRIGGER PINNING */
        #main-wrapper {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* ==========================================================================
           COMMON UI (Fixed Headers, Menus)
           ========================================================================== */
        header {
            position: fixed;
            top: 40px;
            left: 50px;
            z-index: 10001;
            display: flex;
            justify-content: space-between;
            width: calc(100% - 100px);
            align-items: center;
            pointer-events: none;
            /* Let clicks pass through empty areas */
        }

        .logo-wrapper,
        .menu-btn {
            pointer-events: auto;
            /* Re-enable clicks */
        }

        .logo img {
            height: 60px;
        }

        .menu-btn {
            cursor: pointer;
            width: 40px;
            height: 30px; /* Increased height */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center content */
            gap: 6px; /* Explicit gap between lines */
            z-index: 10000;
            position: relative;
        }

        .menu-btn span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .menu-btn:hover span:nth-child(2) {
            transform: translateX(-5px);
        }

        .menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Particle container for menu button */
        .menu-btn-particles {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
            overflow: visible;
        }

        .menu-btn-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #fff;
            border-radius: 50%;
            pointer-events: none;
            will-change: transform, opacity;
        }

        /* ============================================================
           FULLSCREEN MENU OVERLAY WITH MORPH CIRCLE
           ============================================================ */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9998;
            pointer-events: none;
            overflow: hidden;
        }

        .menu-overlay.active {
            pointer-events: auto;
        }

        .menu-morph-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary-green);
            transform: translate(-50%, -50%);
            transform-origin: center center;
            will-change: width, height;
            z-index: 2;
            overflow: hidden;
        }

        .menu-background-image {
            position: absolute;
            inset: 0;
            background-image: url('../assets/index/bg.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0;
            z-index: 0;
            transition: opacity 0.5s ease 0.3s;
        }

        .menu-overlay.active .menu-background-image {
            opacity: 1;
        }

        .menu-overlay-image {
            position: absolute;
            inset: 0;
            background-image: url('../assets/index/BACKGROUND 2.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0;
            z-index: 1;
            transition: opacity 0.5s ease 0.4s;
        }

        .menu-overlay.active .menu-overlay-image {
            opacity: 1;
        }

        .menu-content {
            position: relative;
            z-index: 3;
            width: 100%;
            height: 100%;
            display: flex;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease 0.5s, visibility 0.3s ease 0.5s;
        }

        .menu-overlay.active .menu-content {
            opacity: 1;
            visibility: visible;
        }

        .menu-left {
            width: 70%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5vw;
        }

        .menu-logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            transform: translateY(-50px);
            opacity: 0;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s,
                        opacity 0.8s ease 0.7s;
        }

        .menu-overlay.active .menu-logo-wrapper {
            transform: translateY(0);
            opacity: 1;
        }

        .menu-logo {
            width: 200px;
            height: auto;
            filter: brightness(1.1);
        }

        .menu-brand-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            font-weight: 600;
            color: var(--primary-gold);
            letter-spacing: 4px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            margin: 0;
        }

        .menu-right {
            width: 30%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5vw;
        }

        .menu-nav {
            width: 100%;
        }

        .menu-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-nav-list li {
            margin-bottom: 20px;
            transform: translateX(-50px);
            opacity: 0;
            position: relative;
        }

        .menu-overlay.active .menu-nav-list li {
            animation: slideInMenu 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .menu-nav-list li:nth-child(1) { animation-delay: 0.8s; }
        .menu-nav-list li:nth-child(2) { animation-delay: 0.85s; }
        .menu-nav-list li:nth-child(3) { animation-delay: 0.9s; }
        .menu-nav-list li:nth-child(4) { animation-delay: 0.95s; }
        .menu-nav-list li:nth-child(5) { animation-delay: 1s; }
        .menu-nav-list li:nth-child(6) { animation-delay: 1.05s; }
        .menu-nav-list li:nth-child(7) { animation-delay: 1.1s; }
        .menu-nav-list li:nth-child(8) { animation-delay: 1.15s; }
        .menu-nav-list li:nth-child(9) { animation-delay: 1.2s; }

        @keyframes slideInMenu {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .menu-nav-list a {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: #fff;
            text-decoration: none;
            padding: 12px 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            letter-spacing: 1px;
            overflow: visible;
        }

        /* Concentric circles icon */
        .menu-icon {
            width: 24px;
            height: 24px;
            margin-left: 24px !important;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex-shrink: 0;
        }

        /* Outer ring */
        .menu-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border: 2px solid currentColor;
            border-radius: 50%;
            box-sizing: border-box;
        }

        /* Middle ring */
        .menu-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 14px;
            height: 14px;
            border: 2px solid currentColor;
            border-radius: 50%;
            box-sizing: border-box;
        }

        /* Inner dot - using box-shadow to create the dot */
        .menu-icon {
            background: currentColor;
            border-radius: 50%;
            width: 6px;
            height: 6px;
            margin: 0;
        }

        /* First and last items - bluish grey color */
        .menu-nav-list li:first-child a,
        .menu-nav-list li:last-child a {
            color: #6B7A8F;
        }

        .menu-nav-list li:first-child .menu-icon,
        .menu-nav-list li:last-child .menu-icon {
            opacity: 0.8;
            background: #6B7A8F;
        }

        .menu-nav-list li:first-child .menu-icon::before,
        .menu-nav-list li:last-child .menu-icon::before,
        .menu-nav-list li:first-child .menu-icon::after,
        .menu-nav-list li:last-child .menu-icon::after {
            border-color: #6B7A8F;
        }

        /* Other items - white color */
        .menu-nav-list li:not(:first-child):not(:last-child) .menu-icon {
            background: #fff;
        }

        .menu-nav-list li:not(:first-child):not(:last-child) .menu-icon::before,
        .menu-nav-list li:not(:first-child):not(:last-child) .menu-icon::after {
            border-color: #fff;
        }

        /* Hover effects */
        .menu-nav-list a:hover {
            color: var(--primary-gold);
            transform: translateX(10px) translateY(-3px);
        }

        .menu-nav-list a:hover .menu-icon {
            opacity: 1;
            background: var(--primary-gold);
            animation: iconDissolve 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .menu-nav-list a:hover .menu-icon::before,
        .menu-nav-list a:hover .menu-icon::after {
            border-color: var(--primary-gold);
        }

        @keyframes iconDissolve {
            0% {
                opacity: 0.6;
                transform: scale(0.8);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Text wrapper - simple color and fade transition */
        .menu-text {
            position: relative;
            display: inline-block;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        /* Particle container */
        .menu-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
            overflow: visible;
        }

        .menu-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: currentColor;
            border-radius: 50%;
            pointer-events: none;
            will-change: transform, opacity;
        }

        /* Fade up/down effect on hover */
        .menu-nav-list li {
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .menu-nav-list li:hover {
            transform: translateY(-2px);
        }

        .menu-nav-list li:not(:hover) {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-content {
                flex-direction: column;
            }

            .menu-left,
            .menu-right {
                width: 100%;
                height: 50%;
            }

            .menu-right {
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .menu-brand-title {
                font-size: 48px;
            }

            .menu-logo {
                width: 150px;
            }

            .menu-nav-list a {
                font-size: 20px;
            }
        }
 :root {
            --primary-green: #21362C;
            --primary-gold: #CEB472;
            --text-light: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            width: 100vw;
            height: 100vh;
            overflow: hidden !important; /* Force no scroll - Full Locking */
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-green);
            color: var(--text-light);
        }

        /* LOAD SCREEN */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--primary-green);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader-logo {
            width: 120px;
            opacity: 0;
            transform: scale(0.8);
        }

        /* WRAPPER FOR SCROLLTRIGGER PINNING */
        #main-wrapper {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* ==========================================================================
           COMMON UI (Fixed Headers, Menus)
           ========================================================================== */
        header {
            position: fixed;
            top: 40px;
            left: 50px;
            z-index: 900;
            display: flex;
            justify-content: space-between;
            width: calc(100% - 100px);
            align-items: center;
            pointer-events: none;
            /* Let clicks pass through empty areas */
        }

        .logo-wrapper,
        .menu-btn {
            pointer-events: auto;
            /* Re-enable clicks */
        }

        .logo img {
            height: 60px;
        }

        .menu-btn {
            cursor: pointer;
            width: 40px;
            height: 30px; /* Increased height */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center content */
            gap: 6px; /* Explicit gap between lines */
            z-index: 9999;
        }

        .menu-btn span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .menu-btn:hover span:nth-child(2) {
            transform: translateX(-5px);
        }






