
        .hero-image-animate {
            animation: breathe 4s ease-in-out infinite;
            filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
        }
        @keyframes breathe {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
    