
        /* Custom Breathing Animation for Hero Image */
        @keyframes breathing {
            0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); transform: scale(1); }
            50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); transform: scale(1.02); }
            100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); transform: scale(1); }
        }
        .breathing-effect {
            animation: breathing 4s infinite ease-in-out;
            border-radius: 12px;
        }
        /* Hide scrollbar for clean look */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
    