        * { font-family: 'Inter', sans-serif; }
        .font-mono { font-family: 'Space Mono', monospace; }
        
        :root {
            --primary: #3B82F6;
            --primary-dark: #1E40AF;
            --accent: #06B6D4;
            --dark: #0F172A;
            --card: #1E293B;
        }

        body {
            background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
            color: #E2E8F0;
            overflow-x: hidden;
        }

        .gradient-text {
            background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .animate-in-delay-1 { animation-delay: 0.1s; }
        .animate-in-delay-2 { animation-delay: 0.2s; }
        .animate-in-delay-3 { animation-delay: 0.3s; }
        .animate-in-delay-4 { animation-delay: 0.4s; }
        .animate-in-delay-5 { animation-delay: 0.5s; }

        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .card-hover:hover {
            border-color: rgba(59, 130, 246, 0.8);
            background: rgba(30, 41, 59, 0.8) !important;
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
            transform: translateY(-2px);
        }

        nav { backdrop-filter: blur(10px); }

        .code-block {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 8px;
            padding: 20px;
            overflow-x: auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .stat-card {
            text-center;
            padding: 32px 20px;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(59, 130, 246, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: rgba(59, 130, 246, 0.4);
            background: rgba(30, 41, 59, 0.8);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
            border-radius: 8px;
            margin-bottom: 16px;
        }

        header {
            background: rgba(15, 23, 42, 0.7);
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        }

        footer {
            background: rgba(15, 23, 42, 0.9);
            border-top: 1px solid rgba(59, 130, 246, 0.1);
        }

        .cta-button {
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        @media (max-width: 768px) {
            .hero-glow {
                width: 300px;
                height: 300px;
            }
        }

        /* Slideshow Styles */
        .slideshow-container {
            position: relative;
            margin-top: 4px;
        }

        .slides-wrapper {
            position: relative;
        }

        .slides {
            position: relative;
            height: 600px;
        }

        .slide {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .slide.active {
            display: block;
        }

        .slide-content {
            animation: slideUp 0.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: 50px;
            height: 50px;
            margin-top: -25px;
            padding: 0;
            color: #3B82F6;
            font-weight: bold;
            font-size: 24px;
            transition: all 0.3s ease;
            border-radius: 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .prev:hover, .next:hover {
            background: rgba(59, 130, 246, 0.3);
            border-color: #3B82F6;
        }

        .prev { left: -70px; }
        .next { right: -70px; }

        @media (max-width: 1024px) {
            .prev { left: 10px; }
            .next { right: 10px; }
        }

        .dots-container {
            text-align: center;
            padding-top: 20px;
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.5);
        }

        .dot.active, .dot:hover {
            background-color: #3B82F6;
            border-color: #3B82F6;
        }
		
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--white);
        }

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

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--text);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 17px;
        }

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
		

        /* Mission Section */
        .mission {
            padding: 80px 0;
            background-color: var(--light);
        }

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

        .mission-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            order: 2;
        }

        .mission-text {
            order: 1;
        }

        .mission-text h2 {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--text);
        }

        .mission-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 17px;
        }
		
        .timeline-item {
            padding-bottom: 40px;
            border-left: 2px solid rgba(59, 130, 246, 0.2);
            padding-left: 30px;
            margin-left: 15px;
        }

        .timeline-item:last-child {
            border-left-color: transparent;
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
            background: #3B82F6;
            border-radius: 50%;
            position: absolute;
            left: -18px;
            top: 0;
        }

        .timeline-item {
            position: relative;
        }

        .timeline-year {
            color: #3B82F6;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .timeline-title {
            color: #FFFFFF;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .timeline-description {
            color: #CBD5E1;
        }
		
        .team-member {
            text-align: center;
            padding: 24px;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(59, 130, 246, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            border-color: rgba(59, 130, 246, 0.6);
            background: rgba(30, 41, 59, 0.8);
        }

        .team-member-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }