
        /* Custom breathing shadow animation for Hero Image */
        @keyframes breathe {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); transform: scale(1); }
            50% { box-shadow: 0 0 25px 10px rgba(34, 197, 94, 0.2); transform: scale(1.01); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); transform: scale(1); }
        }
        .breathing-shadow {
            animation: breathe 4s infinite ease-in-out;
        }
    