/* Custom Styles for CVB Edu Landing Page */

.custom-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.text-glow {
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.floating-button {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Custom Styles for 3D Carousel (Perspective Setup) */
.visa-carousel-container {
    perspective: 1200px;
}

.visa-slide {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity, filter;
}