
        .hero-glow {
            box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
            animation: pulse 3s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.02); opacity: 0.9; }
        }
    