/* Glass effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Navigation links */
.nav-link {
    color: #1a365d;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #2563eb;
}

/* Program cards hover effect */
.program-card {
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Gallery hover effects */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

.gallery-item img {
    transition: all 0.3s ease;
}

/* Teacher cards hover effect */
.teacher-card {
    transition: all 0.3s ease;
    height: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

/* Teachers slider styles */
.teachers-slider {
    position: relative;
    padding: 0;
    height: auto !important;
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    transition: none;
}

/* Active nav link */
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #2563eb;
}

/* Teacher card detailed styles */
.teacher-card {
    transition: all 0.3s ease;
    height: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

/* Mobile navigation styles */
.mobile-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #1a365d;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.mobile-nav-link:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

/* Hamburger button animation */
.hamburger-btn {
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    color: #2563eb;
}

/* Teacher cards responsive adjustments */
@media (max-width: 640px) {
    .gallery-item, .teacher-card {
        transform: none !important;
    }
    
    .teacher-card {
        padding: 1rem;
    }
    
    .teacher-card .w-32 {
        width: 6rem;
        height: 6rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .gallery-item, .teacher-card {
        transform: none !important;
    }
}

.max-w-6xl{

}