.no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        @keyframes bounceDown {

            0%,
            100% {
                transform: translateY(0);
                opacity: 0.6;
            }

            50% {
                transform: translateY(8px);
                opacity: 1;
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(116, 197, 231, 0.3);
            }

            50% {
                box-shadow: 0 0 35px rgba(116, 197, 231, 0.5);
            }
        }

        .animate-gradient {
            animation: gradientShift 4s ease infinite;
        }

        .animate-bounce-down {
            animation: bounceDown 2s ease-in-out infinite;
        }

        .hero-cta-glow {
            animation: pulseGlow 3s ease-in-out infinite;
        }