   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }
        
        .font-display {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        /* Brand Colors */
        .brand-purple { color: #7C3AED; }
        .brand-orange { color: #F97316; }
        .bg-brand-purple { background-color: #7C3AED; }
        .bg-brand-orange { background-color: #F97316; }
        
        .gradient-text {
            background: linear-gradient(135deg, #7C3AED 0%, #F97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #7C3AED 0%, #F97316 100%);
        }
        
        /* Hero Background */
        .hero-bg {
            background: linear-gradient(135deg, #FEF3E2 0%, #FFE8F5 50%, #F0E8FF 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Floating Elements Animation */
        .floating {
            animation: floating 4s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .floating-delayed {
            animation: floating-delayed 5s ease-in-out infinite;
        }
        
        @keyframes floating-delayed {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(-5deg); }
        }
        
        /* Curved Line */
        .curved-line {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .curved-line svg {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        /* Photo Circle */
        .photo-circle {
            position: relative;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(249, 115, 22, 0.3);
        }
        
        /* Badge */
        .award-badge {
            position: absolute;
            bottom: 40px;
            left: -40px;
            background: white;
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: bounce 2s ease-in-out infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Icon Circles */
        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            position: absolute;
        }
        
        /* Nav Scroll Effect */
        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        /* Button Hover */
        .btn-primary {
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
        }
        
        .btn-secondary {
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: #7C3AED;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Text Selection */
        .selection-box {
            border: 2px dashed #F97316;
            padding: 2px 6px;
            border-radius: 6px;
            display: inline-block;
        }
        
        /* Logo Animation */
        .logo-item {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 0.5;
                transform: translateY(0);
            }
        }
        
        .logo-item:hover {
            opacity: 1 !important;
            transform: translateY(-5px) scale(1.05);
        }
        
        /* Stagger animation delays */
        .logo-item:nth-child(1) { animation-delay: 0.1s; }
        .logo-item:nth-child(2) { animation-delay: 0.2s; }
        .logo-item:nth-child(3) { animation-delay: 0.3s; }
        .logo-item:nth-child(4) { animation-delay: 0.4s; }
        .logo-item:nth-child(5) { animation-delay: 0.5s; }
        .logo-item:nth-child(6) { animation-delay: 0.6s; }
        .logo-item:nth-child(7) { animation-delay: 0.7s; }
        .logo-item:nth-child(8) { animation-delay: 0.8s; }
        .logo-item:nth-child(9) { animation-delay: 0.9s; }
        .logo-item:nth-child(10) { animation-delay: 1s; }
        
        /* Logo Pulse Effect */
        .logo-pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Shine Effect */
        .shine {
            position: relative;
            overflow: hidden;
        }
        
        .shine::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .photo-circle {
                width: 300px;
                height: 300px;
            }
            
            .icon-circle {
                width: 60px;
                height: 60px;
            }
        }