        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 30px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translate3d(-30px, 0, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translate3d(30px, 0, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }
        
        @keyframes bounceGentle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(5px) rotate(-1deg); }
        }
        
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6); }
            50% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
        }
        
        @keyframes wave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }
        
        @keyframes gradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        body {
            font-family: 'Outfit', sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6,
        .navbar-brand,
        .section-title,
        .btn-primary,
        .feature-card h3,
        .event-card h4,
        .pricing-card h3,
        .testimonial-content h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gradient-bg {
            background: linear-gradient(-45deg, #667eea, #764ba2, #0ea5e9, #a855f7);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .shadow-glow {
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .active-nav {
            color: #0ea5e9;
            font-weight: 700;
            position: relative;
        }
        
        .active-nav::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #0ea5e9, #a855f7);
            border-radius: 2px;
        }
        
        .scroll-top-btn {
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .scroll-top-btn.visible {
            transform: translateY(0);
            opacity: 1;
        }
        
        .section-highlight {
            position: relative;
            z-index: 10;
        }
        
        .section-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: -20px;
            height: 100%;
            width: 5px;
            background: linear-gradient(to bottom, #0ea5e9, #a855f7);
            border-radius: 10px;
            z-index: -1;
        }
        
        /* Enhanced Footer Styles */
        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        
        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }
        
        .footer-wave .shape-fill {
            fill: #0f172a;
        }
        
        .footer-newsletter {
            position: relative;
            z-index: 10;
            margin-top: -40px;
        }
        
        .footer-links li {
            position: relative;
            padding-left: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links li:hover {
            padding-left: 10px;
        }
        
        .footer-links li::before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: #0ea5e9;
        }
        
        .footer-links li:hover::before {
            opacity: 1;
            left: -10px;
        }
        
        .social-icon {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon::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 ease;
        }
        
        .social-icon:hover::before {
            left: 100%;
        }
        
        .footer-newsletter-form input {
            transition: all 0.3s ease;
        }
        
        .footer-newsletter-form input:focus {
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }
        
        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }