
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            max-width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            position: relative;
            width: 100%;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        /* Prevent overflow */
        .container, section, div {
            max-width: 100%;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Skip to main content */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #2563EB;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
            border-radius: 0 0 4px 0;
        }
        
        .skip-link:focus {
            top: 0;
        }
        
        /* Gradient Styles */
        .gradient-bg {
            background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .animated-gradient {
            background: linear-gradient(-45deg, #2563EB, #7C3AED, #F97316, #2563EB);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Topbar Styles */
        .topbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: all 0.3s ease;
        }
        
        .topbar.scrolled {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }
        
        .social-icon {
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            font-size: 0.8rem;
        }
        
        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* Navigation Styles */
        .navbar {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
        }
        
        .navbar.scrolled.topbar-hidden {
            top: 0 !important;
        }
        
        .nav-link {
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: #60a5fa !important;
        }

        
        /* Mobile Menu */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            overflow-y: auto;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu-header {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            padding: 1.5rem;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .mobile-nav-link {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-link:hover::before,
        .mobile-nav-link.active::before {
            transform: scaleY(1);
        }
        
        .mobile-nav-link:hover {
            background: rgba(59, 130, 246, 0.1);
            padding-left: 2rem;
        }
        
        .mobile-nav-link.active {
            background: rgba(59, 130, 246, 0.15);
            padding-left: 2rem;
        }
        
        .menu-btn-line {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .menu-btn-line:not(:last-child) {
            margin-bottom: 5px;
        }
        
        .menu-btn.active .menu-btn-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        
        .menu-btn.active .menu-btn-line:nth-child(2) {
            opacity: 0;
        }
        
        .menu-btn.active .menu-btn-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        
        /* Button Styles */
        .btn-primary {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
        }
        
        /* Team Card Styles */
        .team-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .team-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
        }
        
        .team-card:hover .team-image {
            transform: scale(1.1);
        }
        
        .team-image {
            transition: transform 0.4s ease;
        }
        
        .team-social {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .team-card:hover .team-social {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Timeline Styles */
        .timeline-item {
            position: relative;
            padding-left: 50px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: -40px;
            width: 2px;
            background: linear-gradient(180deg, #2563EB, #7C3AED);
        }
        
        .timeline-item:last-child::before {
            bottom: 0;
        }
        
        .timeline-dot {
            position: absolute;
            left: -8px;
            top: 5px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2563EB, #7C3AED);
            box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(37, 99, 235, 0.2);
        }
        
        /* Value Card Styles */
        .value-card {
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.25);
        }
        
        /* Scroll to Top Button */
        #scrollTop {
            transition: all 0.3s ease;
        }
        
        #scrollTop:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
        }
        
        /* Focus Styles for Accessibility */
        a:focus, button:focus, input:focus, textarea:focus {
            outline: 3px solid #2563EB;
            outline-offset: 2px;
        }
        
        /* Responsive Typography */
        @media (max-width: 640px) {
            h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            h2 {
                font-size: 1.75rem;
                line-height: 1.3;
            }
            
            h3 {
                font-size: 1.25rem;
                line-height: 1.4;
            }
            
            .timeline-item {
                padding-left: 30px;
            }
            
            .timeline-dot {
                left: -6px;
                width: 14px;
                height: 14px;
            }
            
            .topbar {
                font-size: 0.75rem;
            }
            
            .social-icon {
                width: 22px;
                height: 22px;
                font-size: 0.7rem;
            }
            
            .mobile-menu {
                width: 90%;
            }
        }
        
        @media (max-width: 380px) {
            .mobile-menu {
                width: 95%;
            }
            
            .topbar {
                font-size: 0.7rem;
            }
        }
        
        /* Touch Targets for Mobile */
        @media (hover: none) and (pointer: coarse) {
            a, button {
                min-height: 44px;
                min-width: 44px;
            }
        }
        
        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        
        /* Loading Animation */
        .lazy-load {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
