body { font-family: 'Inter', sans-serif; }
.gradient-bg { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
/* All "Visit Program" buttons */
.card-hover a[class*="bg-gradient-to-r"] { background-color: #059669!important; }
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.animate-fade-in { animation: fadeIn 0.6s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.text-shadow { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.glass-effect { backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.1); }
.section-divider { background: linear-gradient(90deg, transparent, #e5e7eb, transparent); height: 1px; }

/* Hide swiper arrows on mobile */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}