
        /* Custom Animation for Hero Image */
        @keyframes breathe {
            0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
            50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }
            100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
        }
        .hero-glow {
            animation: breathe 4s infinite ease-in-out;
        }
    