    /* CSS Variables from globals.css */
        :root {
            --font-size: 14px;
            --font-weight-medium: 500;
            --font-weight-normal: 400;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: var(--font-size);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Base Typography */
        h1 {
            font-weight: var(--font-weight-medium);
            line-height: 1.2;
        }

        h2 {
            font-weight: var(--font-weight-medium);
            line-height: 1.4;
        }

        p {
            font-weight: var(--font-weight-normal);
            line-height: 1.6;
        }

        button {
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        /* Responsive Visibility Classes */
        .hidden-below-800 { display: none; }
        .visible-below-800 { display: none; }

        @media (min-width: 800px) {
            .hidden-below-800 { display: flex !important; }
            .visible-below-800 { display: none !important; }
        }

        @media (max-width: 799px) {
            .hidden-below-800 { display: none !important; }
            .visible-below-800 { display: flex !important; }
        }

        /* Navigation Styles - IMPROVED SYNCHRONIZATION */
        .main-navigation {
            position: fixed;
            top: 1.25rem;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 1.5rem;
        }

        .nav-logo {
            position: absolute;
            left: 1.5rem;
            margin-right: 0;
            flex-shrink: 0;
            opacity: 0;
            transform: translateX(-20px) scale(0.95);
            animation: logoSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
        }

        .nav-bar {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            opacity: 0;
            animation: navBarFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
        }

        .nav-logo img {
            height: 3.5rem;
            width: auto;
            object-fit: contain;
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            background: rgba(0, 0, 0, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            height: 60px;
            width: 480px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container.expanded {
            width: 600px;
        }

        .nav-items {
            display: flex;
            align-items: center;
            gap: 1rem;
            height: 100%;
        }

        .nav-button, .nav-link {
            padding: 0.5rem 0.75rem;
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
            background: none;
            border: none;
            cursor: pointer;
            border-radius: 9999px;
            transition: all 0.3s ease;
            white-space: nowrap;
            height: 2.5rem;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(-15px) scale(0.9);
            text-decoration: none;
        }

        .nav-button:hover, .nav-link:hover {
            color: #67e8f9;
            background: rgba(255, 255, 255, 0.05);
        }

        /* IMPROVED STAGGERED ANIMATIONS FOR NAV BUTTONS */
        .nav-button:nth-child(1), .nav-link:nth-child(1) { animation: navButtonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards; }
        .nav-button:nth-child(2), .nav-link:nth-child(2) { animation: navButtonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
        .nav-button:nth-child(3), .nav-link:nth-child(3) { animation: navButtonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards; }
        .nav-button:nth-child(4), .nav-link:nth-child(4) { animation: navButtonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }
        .nav-button:nth-child(5), .nav-link:nth-child(5) { animation: navButtonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards; }
        .nav-button:nth-child(6), .nav-link:nth-child(6) { animation: navButtonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; }

        .reach-us-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex: 1;
            height: 100%;
            padding-right: 1rem;
        }

        .reach-us-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: rgba(255, 255, 255, 0.9);
            color: black;
            font-weight: 600;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            height: 2.5rem;
            opacity: 0;
            transform: translateX(30px) scale(0.9);
            backface-visibility: hidden;
            -webkit-transform: translateZ(0);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-decoration: none;
        }

        .reach-us-button.visible {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        .reach-us-button:hover {
            background: white;
            transform: translateX(0) scale(1.05);
        }

        /* Login Button - IMPROVED TIMING */
        .login-button {
            position: fixed;
            top: 1rem;
            right: 2rem;
            z-index: 1001;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 9999px;
            opacity: 0;
            transform: translateY(-30px) scale(0.8);
            animation: loginButtonSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        .login-button:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(0) scale(1.05);
        }

        /* Mobile Sidebar Styles */
        .mobile-toggle {
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 1002;
            display: none;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 20rem;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(24px);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1002;
            display: flex;
            flex-direction: column;
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.167, 0.84, 0.44, 1);
        }

        .mobile-sidebar.open {
            transform: translateX(0);
        }

        .sidebar-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-backdrop.visible {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-nav {
            flex: 1;
            padding: 1.5rem 0;
        }

        .sidebar-item, .sidebar-link {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
            font-weight: 500;
            opacity: 0;
            transform: translateX(-20px);
            text-decoration: none;
        }

        .sidebar-item.animate, .sidebar-link.animate {
            animation: slideInLeft 0.3s ease-out forwards;
        }

        .sidebar-item:nth-child(1), .sidebar-link:nth-child(1) { animation-delay: 0.05s; }
        .sidebar-item:nth-child(2), .sidebar-link:nth-child(2) { animation-delay: 0.1s; }
        .sidebar-item:nth-child(3), .sidebar-link:nth-child(3) { animation-delay: 0.15s; }
        .sidebar-item:nth-child(4), .sidebar-link:nth-child(4) { animation-delay: 0.2s; }
        .sidebar-item:nth-child(5), .sidebar-link:nth-child(5) { animation-delay: 0.25s; }
        .sidebar-item:nth-child(6), .sidebar-link:nth-child(6) { animation-delay: 0.3s; }
        .sidebar-item:nth-child(7), .sidebar-link:nth-child(7) { animation-delay: 0.35s; }

        .sidebar-item:hover, .sidebar-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .sidebar-icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
        }

        .sidebar-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: rotate(45deg);
            transition: background 0.2s;
        }

        .sidebar-item:hover .sidebar-dot, .sidebar-link:hover .sidebar-dot {
            background: rgba(255, 255, 255, 0.4);
        }

        .sidebar-footer {
            padding: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-login {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            text-decoration: none;
        }

        .sidebar-login.animate {
            animation: fadeInUp 0.3s ease-out 0.3s forwards;
        }

        .sidebar-login:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        

        .black-space {
            min-height: 100px; /* Default height */
            @media (min-width: 768px) {
                min-height: 150px; /* Taller on larger screens */
            }
            @media (min-width: 1024px) {
                min-height: 200px; /* Even taller on large desktops */
            }
        }
        
        /* Hero Section Styles - IMPROVED TEXT SYNC */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 5rem;
            overflow: hidden;
            text-align: center;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-image: url('/images/Untitled.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            animation: heroBackgroundInitial 2.5s cubic-bezier(0.16, 1, 0.3, 1), backgroundScale 20s ease-in-out infinite 2.5s;
            transform: scale(1.1);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
            z-index: 10;
        }

        .hero-content {
            position: relative;
            z-index: 20;
            width: 100%;
            max-width: 56rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* IMPROVED HERO TEXT ANIMATIONS */
        .hero-title {
            font-size: 3.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            animation: heroTitleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0;
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(15px) scale(0.97);
            animation: heroSubtitleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
            letter-spacing: 0.01em;
        }

        /* IMPROVED SCROLL ARROWS TIMING */
        .scroll-arrows {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            z-index: 30;
            cursor: pointer;
            opacity: 0;
            transform: translateY(15px) scale(0.9);
            animation: scrollArrowsSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
            background: none !important;
            border: none;
            padding: 0;
        }

        .arrow {
            color: white;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
            background: none !important;
        }

        .arrow:nth-child(1) { animation: bounce 2s ease-in-out infinite 2s; }
        .arrow:nth-child(2) { animation: bounce 2s ease-in-out infinite 2.1s; }
        .arrow:nth-child(3) { animation: bounce 2s ease-in-out infinite 2.2s; }

        
        /* Mobile Responsive */
        @media (max-width: 799px) {
            .hero-title {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .section-title {
                font-size: 1.875rem;
            }

            .section-description {
                font-size: 1rem;
            }
        }

        /* Medium screens */
        @media (min-width: 800px) and (max-width: 1200px) {
            .hero-title {
                font-size: 4.5rem;
            }

            .hero-subtitle {
                font-size: 1.875rem;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .hero-title {
                font-size: 6rem;
            }

            .hero-subtitle {
                font-size: 2.5rem;
            }
        }

        /* IMPROVED ANIMATIONS WITH BETTER EASING */
        @keyframes logoSlideIn {
            from {
                opacity: 0;
                transform: translateX(-30px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @keyframes navBarFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes navButtonSlideIn {
            from {
                opacity: 0;
                transform: translateY(-15px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes loginButtonSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes heroTitleSlideIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes heroSubtitleSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes scrollArrowsSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
                opacity: 1;
            }
            10% {
                transform: translateY(-8px);
                opacity: 0.5;
            }
            30% {
                transform: translateY(0);
                opacity: 1;
            }
            40% {
                transform: translateY(-4px);
                opacity: 0.75;
            }
        }

        @keyframes backgroundScale {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes heroBackgroundInitial {
            from {
                transform: scale(1.1);
            }
            to {
                transform: scale(1);
            }
        }

        /* Icon styles */
        .icon {
            width: 1.25rem;
            height: 1.25rem;
            display: inline-block;
            vertical-align: middle;
        }

        .icon-large {
            width: 1.5rem;
            height: 1.5rem;
        }

        .icon-xl {
            width: 2rem;
            height: 2rem;
        }

        /* Utility classes */
        .ml-auto { margin-left: auto; }
        .relative { position: relative; }
        .min-h-screen { min-height: 100vh; }
        .bg-black { background-color: black; }
        .text-white { color: white; }
        .overflow-x-hidden { overflow-x: hidden; }

        /* Desktop Layout Improvements */
        @media (min-width: 800px) {
            .main-navigation {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
            }

            .nav-bar {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                margin: 0 auto;
            }

            .login-button {
                top: 1.25rem;
                height: 60px;
                display: flex;
                align-items: center;
            }
        }