    
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #0a0e27;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(45deg, #0a0e27, #1a1f3a, #2a1f3d);
            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%; }
        }

        /* Floating Particles */
        .particle {
            position: fixed;
            width: 3px;
            height: 3px;
            background: rgba(18, 49, 175, 0.5);
            border-radius: 50%;
            animation: float 20s infinite;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }

        /* Glass Morphism Navbar */
        .glass-nav {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .glass-nav .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(135deg, #25359a 0%, #9cb31d 50%, #2742f4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(40, 76, 232, 0.5);
        }

        .glass-nav .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            margin: 0 10px;
        }

        .glass-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #cbd218);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .glass-nav .nav-link:hover::before {
            width: 80%;
        }

        .glass-nav .nav-link:hover {
            color: #fff !important;
            transform: translateY(-2px);
        }

        /* Hero Section with 3D Effect */
        .hero-3d {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        }

        .hero-3d::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-3d::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.2), transparent);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: pulse 6s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #667eea 50%, #cbd333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite;
            line-height: 1.2;
        }

        @keyframes titleGlow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(237, 255, 35, 0.5)); }
            50% { filter: drop-shadow(0 0 40px rgba(22, 59, 194, 0.8)); }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            margin-top: 20px;
        }

        .neon-btn {
            padding: 15px 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #667eea;
            background: transparent;
            color: #fff;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
            cursor: pointer;
        }

        .neon-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
            transition: left 0.5s ease;
        }

        .neon-btn:hover::before {
            left: 100%;
        }

        .neon-btn:hover {
            background: #667eea;
            box-shadow: 0 0 40px rgba(102, 126, 234, 1), 0 0 80px rgba(102, 126, 234, 0.5);
            transform: translateY(-3px);
        }

        /* Glass Card */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(40, 74, 226, 0.4);
            border-color: rgba(4, 85, 191, 0.5);
        }

        /* Neon Section Title */
        .neon-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            background: linear-gradient(135deg, #fff 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }

        .neon-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #667eea, transparent);
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
        }

        /* Animated Stats */
        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea, #ecff1d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        /* Futuristic Table */
        .futuristic-table {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .futuristic-table thead {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(162, 162, 75, 0.3));
        }

        .futuristic-table th {
            color: #fff;
            font-weight: 600;
            padding: 20px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .futuristic-table td {
            color: rgba(255, 255, 255, 0.8);
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .futuristic-table tbody tr {
            transition: all 0.3s ease;
        }

        .futuristic-table tbody tr:hover {
            background: rgba(102, 126, 234, 0.1);
            transform: scale(1.01);
        }

        /* Neon Badge */
        .neon-badge {
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 0 15px currentColor;
            border: 1px solid currentColor;
            background: transparent;
        }

        .badge-glow-green {
            color: #10b981;
        }

        .badge-glow-purple {
            color: #8b5cf6;
        }

        .badge-glow-blue {
            color: #3b82f6;
        }

        /* 3D Gallery Card */
        .gallery-3d {
            perspective: 1000px;
        }

        .gallery-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            position: relative;
        }

        .gallery-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .gallery-card:hover::before {
            opacity: 1;
        }

        .gallery-card:hover {
            transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.5);
        }

        .gallery-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .gallery-card-body {
            padding: 25px;
            position: relative;
            z-index: 2;
        }

        .gallery-title {
            color: #fff;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .gallery-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        /* Footer Futuristic */
        .futuristic-footer {
            background: linear-gradient(180deg, rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 1));
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .futuristic-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
            animation: lineMove 3s linear infinite;
        }

        @keyframes lineMove {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .footer-title {
            color: #667eea;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .footer-link::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #667eea;
            padding-left: 25px;
        }

        .footer-link:hover::before {
            opacity: 1;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(102, 126, 234, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s ease;
            margin: 0 5px;
        }

        .social-btn:hover {
            background: #667eea;
            border-color: #667eea;
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .neon-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* Section Spacing */
        section {
            padding: 100px 0;
            position: relative;
        }

        /* About Section Special */
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
            transition: all 0.5s ease;
        }

        .about-image:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 30px 80px rgba(102, 126, 234, 0.5);
        }