:root {
            --primary-color: #0a0a2a;
            --secondary-color: #00ff9d;
            --accent-color: #7b2cbf;
            --text-light: #f8f9fa;
            --text-dark: #212529;
            --gradient-bg: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-light);
            background-color: #050514;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 255, 157, 0.1);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--secondary-color), #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
            animation: underline 0.3s ease;
        }
        @keyframes underline {
            from { width: 0; }
            to { width: 100%; }
        }
        .hero-section {
            background: var(--gradient-bg);
            padding: 8rem 0 5rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: 1;
        }
        .hero-section > * {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--secondary-color), #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--secondary-color), #00ccff);
            border: none;
            color: var(--primary-color);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
            color: var(--primary-color);
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 10px auto;
            border-radius: 2px;
        }
        .card-custom {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 157, 0.15);
            border-color: rgba(0, 255, 157, 0.3);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(0, 255, 157, 0.1);
            border-color: var(--secondary-color);
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        footer {
            background-color: #050514;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 3rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--secondary-color), #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #adb5bd;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-color);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 8px;
            width: 2px;
            height: calc(100% + 2.5rem);
            background: rgba(255, 255, 255, 0.1);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .partner-logo {
            filter: grayscale(1) brightness(2);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .partner-logo:hover {
            filter: grayscale(0) brightness(1);
            opacity: 1;
        }
        .form-control-custom {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            border-radius: 8px;
            padding: 0.75rem 1rem;
        }
        .form-control-custom:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary-color);
            color: var(--text-light);
            box-shadow: 0 0 0 0.25rem rgba(0, 255, 157, 0.25);
        }
