/* CSS Reset and Variables */
:root {
    --light-blue: #e6f7ff;
    --medium-blue: #0d077f;
    --dark-blue: #0d077f;
    --light-gold: #ffd700;
    --medium-gold: #e6c200;
    --dark-gold: #b39700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #333333;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue), var(--medium-blue));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--medium-gold), var(--dark-gold));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 194, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 194, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--medium-gold);
}

.btn-outline:hover {
    background: var(--medium-gold);
    color: var(--white);
    transform: translateY(-3px);
}
/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO STYLES - FAR LEFT ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.header.scrolled .logo-image {
    width: 40px;
    height: 40px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #0d077f; /* Deep dark blue */
    transition: all 0.4s ease;
}

.header.scrolled .logo-text h1 {
    font-size: 1.3rem;
}

.logo-text p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
    transition: all 0.4s ease;
}

.header.scrolled .logo-text p {
    font-size: 0.7rem;
}

/* ===== NAVIGATION STYLES ===== */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.header.scrolled .nav-link {
    padding: 6px 0;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--medium-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--medium-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== DROPDOWN MENU STYLES ===== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 8px 0;
}

.header.scrolled .dropdown-toggle {
    padding: 6px 0;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 3px;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.2), transparent);
    margin: 2px 0;
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    width: 100%;
}

.dropdown-menu a i {
    width: 16px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--medium-blue);
    transition: all 0.25s ease;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.08), transparent);
    transition: left 0.4s ease;
}

.dropdown-menu a:hover::before {
    left: 100%;
}

.dropdown-menu a:hover {
    color: var(--medium-blue);
    background: rgba(77, 166, 255, 0.05);
    padding-left: 20px;
}

.dropdown-menu a:hover i {
    transform: scale(1.1);
    color: var(--dark-blue);
}

.header.scrolled .dropdown-menu {
    top: calc(100% + 3px);
}

.header.scrolled .dropdown-menu::before {
    top: -5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin-bottom: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header.scrolled .mobile-toggle span {
    width: 22px;
    height: 2.5px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }
    
    .header.scrolled {
        padding: 12px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 0;
        height: auto;
    }
    
    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        height: auto;
        display: block;
    }
    
    .nav-menu ul li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 14px 0;
        height: auto;
        font-size: 1rem;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-dropdown {
        height: auto;
        display: block;
    }
    
    .dropdown-toggle {
        height: auto;
        padding: 14px 0 !important;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        margin-top: 0;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 380px;
        overflow-y: auto;
    }
    
    .dropdown-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
        background: var(--medium-blue);
        border-radius: 2px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 0.85rem;
        line-height: 1.3;
        gap: 15px;
    }
    
    .dropdown-menu a i {
        font-size: 0.8rem;
        width: 18px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 42px;
    }
    
    .dropdown-divider {
        margin: 3px 0;
        background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.15), transparent);
    }
    
    .dropdown-icon {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .header.scrolled .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .header.scrolled .logo-text h1 {
        font-size: 0.95rem;
    }
    
    .logo-link {
        gap: 10px;
    }
}
/* Hero Section */
/* Hero Section - Fully Flexible */
/* Hero Section - With Slideshow */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
    animation: zoom 30s infinite;
}

.slide.active {
    opacity: 1;
}

@keyframes zoom {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
}






.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(90%, 800px);
    color: var(--white);
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: clamp(6px, 1.5vw, 12px) clamp(15px, 3vw, 25px);
    border-radius: 50px;
    margin-bottom: clamp(20px, 4vw, 35px);
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 600;
    color: var(--white);
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    margin-bottom: clamp(30px, 6vw, 50px);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: clamp(15px, 4vw, 40px);
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
}

.stat {
    text-align: center;
    flex: 0 1 auto;
    min-width: 100px;
}

.stat h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 5px;
    color: var(--light-gold);
}

.stat p {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    margin: 0;
    opacity: 0.9;
    white-space: nowrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}



/* Section Styles */
.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--medium-gold);
    border-radius: 2px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* About Preview Section */
.about-preview {
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--medium-gold);
}

.feature-highlight i {
    color: var(--medium-gold);
    font-size: 1.2rem;
}

.feature-highlight p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.about-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.feature i {
    color: var(--medium-blue);
}

.about-image {
    flex: 1;
}

.image-card {
    padding: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.1), rgba(255, 215, 0, 0.1));
    z-index: 1;
}

.image-card img {
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition-slow);
    position: relative;
    z-index: 2;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Programs Section */
.programs {
    background: var(--light-gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--medium-blue), var(--medium-gold));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.program-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.program-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--medium-blue), var(--medium-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover .program-icon::before {
    opacity: 1;
}

.program-card:hover .program-icon {
    background: var(--white);
    transform: scale(1.1);
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--medium-blue);
    transition: var(--transition);
}

.program-card:hover .program-icon i {
    color: var(--medium-blue);
}

.program-card h3 {
    margin-bottom: 20px;
}

.program-card p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.program-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.program-features i {
    color: var(--medium-gold);
}

.program-link {
    color: var(--medium-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.program-link i {
    transition: transform 0.3s ease;
}

.program-link:hover i {
    transform: translateX(5px);
}

/* ===== PROGRAMS SECTION - EXACT JOIN SMA STYLES ===== */
.programs {
    background: var(--white);
    position: relative;
}

.programs .gallery-container {
    margin-top: 50px;
}

.programs .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

/* EXACT SAME STYLES AS JOIN SMA CARDS */
.programs .gallery-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
    position: relative;
    background: transparent;
}

.programs .gallery-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(13, 7, 127, 0.2);
    color: inherit;
}

.programs .card-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.programs .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 7, 127, 0.9) 0%, rgba(13, 7, 127, 0.4) 50%, transparent 100%);
    transition: var(--transition);
}

.programs .gallery-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(13, 7, 127, 0.95) 0%, rgba(230, 194, 0, 0.3) 50%, transparent 100%);
}

.programs .card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
    width: 100%;
    transform: translateY(20px);
    transition: var(--transition);
}

.programs .gallery-card:hover .card-content {
    transform: translateY(0);
}

.programs .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.programs .card-icon i {
    font-size: 1.5rem;
    color: var(--light-gold);
}

.programs .card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
}

.programs .card-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.programs .card-cta {
    display: inline-block;
    color: var(--light-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.programs .gallery-card:hover .card-cta {
    border-bottom-color: var(--light-gold);
    transform: translateX(5px);
}

/* Program Levels Overview */
.program-levels-overview {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(248, 249, 250, 0.1) 100%);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.level-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.level-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--medium-blue), var(--medium-gold));
    transform: translateY(-50%);
    z-index: 1;
}

.level-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.level-marker:hover {
    transform: translateY(-5px);
}

.level-marker.active .level-dot {
    background: var(--medium-gold) !important;
    transform: scale(1.3) !important;
    box-shadow: 
        0 0 0 4px rgba(230, 194, 0, 0.3),
        0 0 20px rgba(230, 194, 0, 0.5) !important;
    animation: pulseGlow 2s infinite !important;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 4px rgba(230, 194, 0, 0.3),
            0 0 20px rgba(230, 194, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 0 6px rgba(230, 194, 0, 0.4),
            0 0 30px rgba(230, 194, 0, 0.7);
    }
}

.level-dot {
    width: 18px;
    height: 18px;
    background: var(--medium-blue);
    border-radius: 50%;
    border: 3px solid var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}


.level-marker span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.level-marker.active span {
    color: var(--medium-blue) !important;
    font-weight: 700 !important;
    transform: scale(1.1);
}

/* Highlight effect for interactive level markers */
.level-marker:hover span {
    color: var(--medium-blue);
}

.level-marker:hover .level-dot {
    background: var(--medium-gold);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .programs .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .programs .gallery-card {
        height: 280px;
    }
    
    .programs .card-content {
        padding: 25px;
    }
    
    .programs .card-content h4 {
        font-size: 1.4rem;
    }
    
    .level-track {
        flex-direction: column;
        gap: 25px;
    }
    
    .level-track::before {
        display: none;
    }
    
    .level-marker {
        flex-direction: row;
        gap: 15px;
    }
    
   /* Ensure level markers are clickable and visible */
.level-marker {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

}

@media (max-width: 480px) {
    .programs .gallery-card {
        height: 250px;
    }
    
    .programs .card-content {
        padding: 20px;
    }
    
    .programs .card-content h4 {
        font-size: 1.3rem;
    }
    
    .programs .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .programs .card-icon i {
        font-size: 1.3rem;
    }
}

/* ===== UNIVERSITY ACCEPTANCE SECTION - EXACTLY LIKE TESTIMONIALS ===== */
.university-acceptance {
    background: var(--white) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

.university-acceptance .section-header {
    margin-bottom: 40px;
}

.university-acceptance .section-title {
    color: var(--dark-blue);
}

.university-acceptance .section-title::after {
    background: var(--medium-gold);
}

.university-acceptance .section-subtitle {
    color: var(--text-light);
}

/* University Container - EXACTLY LIKE TESTIMONIALS */
.university-container {
    position: relative;
    margin: 40px 0;
    padding: 30px 0;
    overflow: hidden;
}

/* University Track - EXACTLY LIKE TESTIMONIALS */
.university-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollUniversities 40s linear infinite;
    padding: 20px 0;
}

/* Pause animation on hover - EXACTLY LIKE TESTIMONIALS */
.university-container:hover .university-track {
    animation-play-state: paused;
}

/* University Cards - SIZED LIKE ACCREDITATION LOGOS */
.university-item {
    flex: 0 0 auto;
    position: relative;
    width: 150px; /* Same as accreditation logos */
    height: 120px; /* Same as accreditation logos */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.university-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 
        0 20px 40px rgba(13, 7, 127, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* University Logo Images */
.university-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0%); /* Keep logos in color */
}

.university-item:hover .university-logo {
    transform: scale(1.05);
}

/* University Name Overlay */
.university-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.university-overlay::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--dark-blue);
}

.university-item:hover .university-overlay {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* EXACT SAME ANIMATION AS TESTIMONIALS */
@keyframes scrollUniversities {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 10 - 60px * 10)); /* 10 items */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .university-item {
        width: 130px;
        height: 100px;
    }
    
    .university-track {
        gap: 50px;
    }
    
    @keyframes scrollUniversities {
        100% {
            transform: translateX(calc(-130px * 10 - 50px * 10));
        }
    }
}

@media (max-width: 768px) {
    .university-acceptance {
        padding: 50px 0 !important;
    }
    
    .university-container {
        margin: 30px 0;
    }
    
    .university-item {
        width: 120px;
        height: 90px;
        padding: 15px;
    }
    
    .university-track {
        gap: 40px;
    }
    
    .university-logo {
        max-height: 60px;
    }
    
    @keyframes scrollUniversities {
        100% {
            transform: translateX(calc(-120px * 10 - 40px * 10));
        }
    }
}

@media (max-width: 480px) {
    .university-acceptance {
        padding: 40px 0 !important;
    }
    
    .university-container {
        margin: 25px 0;
    }
    
    .university-item {
        width: 100px;
        height: 80px;
        padding: 12px;
    }
    
    .university-track {
        gap: 30px;
    }
    
    .university-logo {
        max-height: 50px;
    }
    
    .university-overlay {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    @keyframes scrollUniversities {
        100% {
            transform: translateX(calc(-100px * 10 - 30px * 10));
        }
    }
}

/* ===== ACCREDITATION SECTION - PERFECT INFINITE LOOP ===== */
.accreditation {
    background: var(--white) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

.accreditation .section-header {
    margin-bottom: 40px;
}

.accreditation .section-title {
    color: var(--dark-blue);
}

.accreditation .section-title::after {
    background: var(--medium-gold);
}

.accreditation .section-subtitle {
    color: var(--text-light);
}

/* Accreditation Container */
.accreditation-container {
    position: relative;
    margin: 40px 0;
    padding: 30px 0;
    overflow: hidden;
}

/* Accreditation Track - LONGER FOR SMOOTHER LOOP */
.accreditation-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollAccreditations 60s linear infinite;
    padding: 20px 0;
    width: max-content;
}

/* Pause animation on hover */
.accreditation-container:hover .accreditation-track {
    animation-play-state: paused;
}

/* Accreditation Items */
.accreditation-item {
    flex: 0 0 auto;
    position: relative;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.accreditation-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 
        0 20px 40px rgba(13, 7, 127, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Accreditation Logo Images */
.accreditation-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.accreditation-item:hover .accreditation-logo {
    transform: scale(1.05);
}

/* Accreditation Name Overlay */
.accreditation-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accreditation-overlay::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--dark-blue);
}

.accreditation-item:hover .accreditation-overlay {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* Placeholder for Future Logos */
.accreditation-item.placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed rgba(13, 7, 127, 0.2);
}

.placeholder-logo {
    width: 60px;
    height: 60px;
    background: rgba(13, 7, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.accreditation-item.placeholder:hover .placeholder-logo {
    background: rgba(13, 7, 127, 0.2);
    transform: scale(1.1);
    color: var(--dark-blue);
}

/* PERFECT INFINITE LOOP ANIMATION */
@keyframes scrollAccreditations {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-210px * 8)); /* (150px + 60px) * 8 items */
    }
}

/* Accreditation Info */
.accreditation-info {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.accreditation-info p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .accreditation-item {
        width: 130px;
        height: 100px;
    }
    
    .accreditation-track {
        gap: 50px;
    }
    
    @keyframes scrollAccreditations {
        100% {
            transform: translateX(calc(-180px * 8)); /* (130px + 50px) * 8 */
        }
    }
}

@media (max-width: 768px) {
    .accreditation {
        padding: 50px 0 !important;
    }
    
    .accreditation-container {
        margin: 30px 0;
    }
    
    .accreditation-item {
        width: 120px;
        height: 90px;
        padding: 15px;
    }
    
    .accreditation-track {
        gap: 40px;
    }
    
    .accreditation-logo {
        max-height: 60px;
    }
    
    .placeholder-logo {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    @keyframes scrollAccreditations {
        100% {
            transform: translateX(calc(-160px * 8)); /* (120px + 40px) * 8 */
        }
    }
    
    .accreditation-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .accreditation {
        padding: 40px 0 !important;
    }
    
    .accreditation .section-header {
        margin-bottom: 30px;
    }
    
    .accreditation-container {
        margin: 25px 0;
    }
    
    .accreditation-item {
        width: 100px;
        height: 80px;
        padding: 12px;
    }
    
    .accreditation-track {
        gap: 30px;
    }
    
    .accreditation-logo {
        max-height: 50px;
    }
    
    .placeholder-logo {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .accreditation-overlay {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    @keyframes scrollAccreditations {
        100% {
            transform: translateX(calc(-130px * 8)); /* (100px + 30px) * 8 */
        }
    }
}

/* Testimonials Container - EXACTLY LIKE ACCREDITATION */
.testimonials-container {
    position: relative;
    margin: 40px 0;
    padding: 30px 0;
    overflow: hidden;
}

/* Testimonials Track - EXACTLY LIKE ACCREDITATION LOGOS */
.testimonials-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollTestimonials 40s linear infinite;
    padding: 20px 0;
}

/* Pause animation on hover - EXACTLY LIKE ACCREDITATION */
.testimonials-container:hover .testimonials-track {
    animation-play-state: paused;
}

/* Testimonial Cards - STYLED LIKE ACCREDITATION LOGOS */
.testimonial-item {
    flex: 0 0 auto;
    position: relative;
    width: 300px;
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(13, 7, 127, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    margin-bottom: 15px;
    padding-left: 35px;
    z-index: 2;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--medium-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 7, 127, 0.3);
}

.quote-icon i {
    color: var(--white);
    font-size: 0.8rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    position: relative;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 4px 0;
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.author-info p {
    margin: 0 0 6px 0;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: var(--medium-gold);
    font-size: 0.6rem;
}

/* EXACT SAME ANIMATION AS ACCREDITATION */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 60px * 5)); /* Adjust based on item width and gap */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-item {
        width: 280px;
    }
    
    .testimonials-track {
        gap: 50px;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-280px * 5 - 50px * 5));
        }
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 50px 0 !important;
    }
    
    .testimonials-container {
        margin: 30px 0;
    }
    
    .testimonial-item {
        width: 260px;
        padding: 20px;
    }
    
    .testimonials-track {
        gap: 40px;
    }
    
    .testimonial-content {
        padding-left: 30px;
        margin-bottom: 12px;
    }
    
    .quote-icon {
        width: 28px;
        height: 28px;
    }
    
    .quote-icon i {
        font-size: 0.7rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-260px * 5 - 40px * 5));
        }
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0 !important;
    }
    
    .testimonials .section-header {
        margin-bottom: 30px;
    }
    
    .testimonials-container {
        margin: 25px 0;
    }
    
    .testimonial-item {
        width: 240px;
        padding: 18px;
    }
    
    .testimonials-track {
        gap: 30px;
    }
    
    .testimonial-content p {
        font-size: 0.8rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 0.85rem;
    }
    
    .author-info p {
        font-size: 0.7rem;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-240px * 5 - 30px * 5));
        }
    }
}
/* ===== YOUTUBE SECTION - NUCLEAR FULL WIDTH OPTION ===== */
.youtube-section {
    position: relative;
    padding: 100px 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d077f 0%, #4da6ff 100%);
    
    /* NUCLEAR FULL WIDTH - Guaranteed to work */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    left: 0;
    right: 0;
    position: relative;
}

/* Override any container constraints */
.youtube-section > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Rest of the CSS remains the same as above */
.youtube-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/Students\ dancing\ in\ black.jpg') no-repeat center center/cover;
    animation: backgroundZoom 20s ease-in-out infinite;
}

/* ... rest of the CSS remains exactly the same as the first solution above ... */

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.youtube-bg .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.85) 0%, rgba(230, 194, 0, 0.4) 100%);
}

.youtube-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.youtube-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.youtube-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* YouTube Button - GUARANTEED CLICKABLE */
.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(255, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.youtube-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.youtube-button:hover::before {
    left: 100%;
}

.youtube-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 0, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff3333, #ff0000);
}

/* YouTube Icon */
.youtube-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.youtube-button:hover .youtube-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.youtube-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.youtube-button:hover .youtube-icon-wrapper i {
    transform: scale(1.1);
}

.youtube-button-text {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .youtube-section {
        height: 300px;
        padding: 80px 0;
    }
    
    .youtube-title {
        font-size: 2rem;
    }
    
    .youtube-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .youtube-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .youtube-section {
        height: 280px;
        padding: 60px 0;
    }
    
    .youtube-title {
        font-size: 1.8rem;
    }
    
    .youtube-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .youtube-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .youtube-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .youtube-icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* ===== NEAT & COMPACT FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 15px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--medium-blue), var(--medium-gold));
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
    align-items: start;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-logo-text h3 {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin: 0 0 3px 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Footer Links Group */
.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column h4,
.footer-contact h4 {
    color: var(--light-gold);
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--light-gold);
    padding-left: 3px;
}

/* Contact Info */
.footer-contact .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-contact .contact-info li i {
    margin-right: 10px;
    color: var(--light-gold);
    font-size: 0.9rem;
    margin-top: 2px;
    min-width: 14px;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.social-link:hover {
    background: var(--light-gold);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--light-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 35px 0 12px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-legal {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 10px;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo-image {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu ul li {
        margin: 20px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
        flex: 1;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .accreditation-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content {
        padding: 60px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        flex-direction: column;
    }

    .hero-stats {
        gap: 20px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
}
    
/* ===== DROPDOWN STYLES - COMPLETE REDESIGN ===== */

/* Dropdown Container */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 8px 0;
}

.header.scrolled .dropdown-toggle {
    padding: 6px 0;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 3px;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Container */
.dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Menu */
.dropdown-menu {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 4px 0;
    min-width: 240px;
    position: relative;
    margin-top: 5px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-left: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
}

/* Dropdown Items - NO SPACES */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #333333;
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    background: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item i {
    width: 14px;
    text-align: center;
    font-size: 0.75rem;
    color: #4da6ff;
    transition: all 0.2s ease;
}

/* Hover Effects */
.dropdown-item:hover {
    background: #0d077f;
    color: #ffffff;
    padding-left: 20px;
}

.dropdown-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        height: auto;
    }

    .dropdown-toggle {
        padding: 14px 0;
        justify-content: space-between;
    }

    .dropdown-container {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-container {
        max-height: 400px;
    }

    .dropdown-menu {
        margin-top: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: #f8f9fa;
        padding: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-item {
        padding: 12px 20px 12px 40px;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.85rem;
    }

    .dropdown-item:hover {
        background: #e9ecef;
        color: #333333;
        padding-left: 42px;
    }

    .dropdown-item:hover i {
        color: #0d077f;
        transform: none;
    }
}
/* ===== MOBILE MENU WITH BLUE TEXT & FLOATING OBJECTS ===== */
@media (max-width: 768px) {
    /* Half-Screen Mobile Menu Container */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 10px;
        width: 50vw;
        max-width: 280px;
        height: auto;
        max-height: 70vh;
        background: linear-gradient(145deg, #1e3a8a 0%, #1e40af 50%, #3730a3 100%);
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: block;
        z-index: 998;
        padding: 0;
        overflow: hidden;
        border-radius: 25px;
        backdrop-filter: blur(25px);
        margin: 0;
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        max-height: 70vh;
        overflow-y: auto;
    }

    /* Animated Background Gradient */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.25) 0%, transparent 50%);
        border-radius: 25px;
        z-index: -1;
        animation: gradientShift 8s ease-in-out infinite;
    }

    @keyframes gradientShift {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.7;
        }
    }

    /* RESTORED: Floating Particles Effect */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 0),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 0),
            radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 3px, transparent 0);
        background-size: 50px 50px, 30px 30px, 70px 70px;
        animation: floatParticles 20s linear infinite;
        z-index: -1;
        pointer-events: none;
    }

    @keyframes floatParticles {
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(-50px, -50px);
        }
    }

    /* Menu List Styling */
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        height: auto;
        padding: 25px 15px 20px;
        margin: 0;
        width: 100%;
    }

    /* Premium Menu Items */
    .nav-menu ul li {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(15px);
        border-radius: 16px;
        margin-bottom: 8px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(255, 255, 255, 0.12);
        position: relative;
        overflow: hidden;
    }

    .nav-menu ul li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.6s ease;
    }

    .nav-menu ul li:hover::before {
        left: 100%;
    }

    .nav-menu ul li:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(8px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .nav-menu ul li:last-child {
        margin-bottom: 0;
    }

    /* CHANGED: Premium Links with BLUE TEXT */
    .nav-link {
        padding: 16px 18px;
        height: auto;
        font-size: 0.95rem;
        justify-content: space-between;
        width: 100%;
        color: #bfdbfe !important; /* Light blue text */
        font-weight: 700;
        border-radius: 14px;
        transition: all 0.4s ease;
        position: relative;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #93c5fd !important; /* Brighter blue on hover */
        text-shadow: 0 0 12px rgba(147, 197, 253, 0.8);
    }

    /* CHANGED: Active State with Blue Text */
    .nav-link.active {
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
        color: #ffffff !important; /* White text for active state */
        box-shadow: 
            0 0 25px rgba(59, 130, 246, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.4);
        font-weight: 800;
        animation: gentlePulse 2s ease-in-out infinite;
    }

    @keyframes gentlePulse {
        0%, 100% {
            box-shadow: 
                0 0 25px rgba(59, 130, 246, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        50% {
            box-shadow: 
                0 0 35px rgba(59, 130, 246, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }
    }

    /* Premium Dropdown Styles */
    .nav-dropdown {
        height: auto;
        display: block;
        background: transparent;
    }

    /* CHANGED: Dropdown Toggle with Blue Text */
    .dropdown-toggle {
        height: auto;
        padding: 16px 18px !important;
        color: #bfdbfe !important; /* Light blue text */
        background: transparent;
        font-weight: 700;
    }

    /* CHANGED: Dropdown Icon Blue */
    .dropdown-icon {
        color: #93c5fd !important; /* Blue dropdown icon */
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-size: 0.8rem;
    }

    .nav-dropdown.active .dropdown-icon {
        transform: rotate(180deg) scale(1.2);
        color: #60a5fa !important; /* Brighter blue when active */
    }

    /* LARGER Dropdown Container */
    .dropdown-container {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        background: rgba(15, 23, 42, 0.8);
        border-radius: 0 0 14px 14px;
        margin: -8px 0 0 0;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-top: none;
    }

    .nav-dropdown.active .dropdown-container {
        max-height: 400px !important;
        padding: 12px 0;
    }

    /* Modern Dropdown Menu */
    .dropdown-menu {
        margin-top: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
        min-width: auto;
    }

    .dropdown-menu::before {
        display: none;
    }

    /* CHANGED: Premium Dropdown Items with BLUE TEXT */
    .dropdown-item {
        padding: 15px 18px 15px 48px;
        font-size: 0.9rem;
        color: #bfdbfe !important; /* Light blue text */
        background: transparent;
        border-radius: 0;
        transition: all 0.4s ease;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        font-weight: 600;
        line-height: 1.3;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    /* CHANGED: Blue Icons */
    .dropdown-item i {
        color: #93c5fd !important; /* Blue icons */
        font-size: 0.8rem;
        width: 16px;
        transition: all 0.4s ease;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #60a5fa !important; /* Brighter blue on hover */
        padding-left: 52px;
        text-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
        font-weight: 700;
    }

    .dropdown-item:hover i {
        color: #3b82f6 !important; /* Even brighter blue on hover */
        transform: scale(1.3) rotate(5deg);
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.7));
    }

    /* Enhanced Mobile Toggle Button */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 11px 13px;
        border-radius: 14px;
        box-shadow: 
            0 8px 25px rgba(30, 58, 138, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
    }

    .mobile-toggle::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.6s ease;
    }

    .mobile-toggle:hover::before {
        left: 100%;
    }

    .mobile-toggle:hover {
        transform: scale(1.08);
        box-shadow: 
            0 12px 35px rgba(30, 58, 138, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .mobile-toggle span {
        width: 18px;
        height: 2px;
        background: #ffffff;
        margin: 0;
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .mobile-toggle.active {
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #ffffff;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #ffffff;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    }

    /* Enhanced Scrollbar */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        margin: 15px 0;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        border-radius: 10px;
        box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    }

    /* Staggered Animation for Menu Items */
    .nav-menu.active ul li {
        animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        opacity: 0;
        transform: translateX(30px);
    }

    .nav-menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active ul li:nth-child(5) { animation-delay: 0.3s; }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Header stays clean */
    .header {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    }

    .header.scrolled {
        padding: 10px 0;
    }
}

/* Enhanced for Smaller Screens */
@media (max-width: 480px) {
    .nav-menu {
        right: 8px;
        width: 55vw;
        max-width: 260px;
        max-height: 75vh;
        border-radius: 20px;
    }

    .nav-menu ul {
        padding: 20px 12px 15px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .dropdown-item {
        padding: 14px 16px 14px 45px;
        font-size: 0.88rem;
    }

    .dropdown-item:hover {
        padding-left: 48px;
    }

    .nav-dropdown.active .dropdown-container {
        max-height: 380px !important;
    }

    .mobile-toggle {
        padding: 9px 11px;
    }

    .mobile-toggle span {
        width: 16px;
        height: 2px;
    }
}

/* Force blue text for all mobile menu text elements */
@media (max-width: 768px) {
    .nav-menu,
    .nav-menu * {
        color: #bfdbfe !important; /* Light blue as default */
    }
    
    .nav-menu a,
    .nav-menu span,
    .nav-menu .dropdown-item,
    .nav-menu .nav-link {
        color: #bfdbfe !important;
        font-weight: 600;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    .nav-menu i {
        color: #93c5fd !important;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    }

    /* Active state should remain white for contrast */
    .nav-link.active,
    .nav-link.active * {
        color: #ffffff !important;
    }
}
/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--medium-blue) 100%);
    color: var(--white);
    text-align: center;
    padding-top: 150px;
}

.events-hero .section-title {
    color: var(--white);
}

.events-hero .section-title::after {
    background: var(--light-gold);
}

.events-listing {
    background: var(--light-gray);
}

.events-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Event Item Styles */
.event-item {
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.event-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.event-header:hover {
    background: var(--light-gray);
}

.event-badge {
    display: flex;
    gap: 15px;
    align-items: center;
}

.event-type {
    background: var(--medium-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-date {
    color: var(--medium-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.event-title {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-dark);
    flex: 1;
    margin-left: 20px;
}

.event-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--medium-blue);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-toggle:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

.event-toggle.rotated {
    transform: rotate(180deg);
}

/* Event Details */
.event-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--white);
}

.event-details.expanded {
    max-height: 2000px;
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
}

.meta-item i {
    color: var(--medium-blue);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.event-content {
    padding: 30px;
}

.event-content h4 {
    color: var(--medium-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.event-content h5 {
    color: var(--text-dark);
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.event-highlights ul {
    list-style: none;
    padding-left: 0;
}

.event-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.event-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--medium-gold);
    font-weight: bold;
}

.event-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.events-footer {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--text-light);
}

.events-footer a {
    color: var(--medium-blue);
    font-weight: 600;
}

/* Clickable Event in Info Bar */
.clickable-event {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.clickable-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.clickable-event:hover::before {
    left: 100%;
}

.clickable-event:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--light-blue);
}

.click-more {
    font-size: 0.75rem;
    color: var(--medium-blue);
    font-weight: 600;
    margin-top: 5px;
    display: block;
    transition: var(--transition);
}

.clickable-event:hover .click-more {
    color: var(--dark-blue);
    transform: translateX(5px);
}

/* Responsive Events */
@media (max-width: 768px) {
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .event-title {
        margin-left: 0;
        font-size: 1.2rem;
    }
    
    .event-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .event-meta {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        justify-content: center;
    }
}

.event-note {
    background: var(--light-blue);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--medium-gold);
    margin-top: 25px;
}

.event-note p {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
}

/* Enhanced Event Meta Items */
.meta-item:empty {
    display: none;
}

/* Cost tag styling */
.meta-item .fa-tag {
    color: var(--medium-gold);
}

/* Registration information styling */
.event-highlights ul {
    list-style: none;
    padding-left: 0;
}

.event-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.event-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--medium-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Special styling for registration info */
.event-highlights li strong {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Responsive adjustments for new fields */
@media (max-width: 768px) {
    .event-meta {
        grid-template-columns: 1fr;
    }
    
    .meta-item {
        min-width: 100%;
    }
}

/* No Events State */
.clickable-event.no-events {
    background: var(--light-gray);
    cursor: default;
}

.clickable-event.no-events:hover {
    transform: none;
    background: var(--light-gray);
    box-shadow: none;
}

.clickable-event.no-events::before {
    display: none;
}

.clickable-event .fa-calendar-plus {
    color: var(--text-light);
}

/* Ensure the events page link still works even when no events */
.clickable-event:not(.no-events) {
    cursor: pointer;
}

/* Term Widget Styles */
.clickable-term {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(230, 194, 0, 0.05));
    border-left: 4px solid var(--medium-gold);
}

.clickable-term::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 194, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.clickable-term:hover::before {
    left: 100%;
}

.clickable-term:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(230, 194, 0, 0.1));
}

.clickable-term .fa-graduation-cap {
    color: var(--medium-gold);
}

.clickable-term:hover .click-more {
    color: var(--dark-gold);
    transform: translateX(5px);
}


/* Academic Calendar Styles */
.current-term {
    background: var(--light-gray);
}

.term-overview {
    padding: 40px;
    background: var(--white);
}

.term-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.term-name {
    background: var(--medium-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
}

.term-duration {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.term-progress {
    margin-bottom: 30px;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.progress-stats .stat {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
}

.progress-stats .stat h3 {
    color: var(--medium-blue);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.progress-stats .stat p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-bar-container {
    margin-bottom: 15px;
}

.progress-bar {
    height: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gold), var(--dark-gold));
    border-radius: 6px;
    transition: width 1s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.detail-item:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--medium-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
}

.detail-item h4 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.detail-item p {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.important-dates {
    background: var(--light-blue);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--medium-blue);
}

.important-dates h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.important-dates ul {
    list-style: none;
    padding: 0;
}

.important-dates li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(77, 166, 255, 0.2);
}

.important-dates li:last-child {
    border-bottom: none;
}

.important-dates strong {
    color: var(--dark-blue);
}

/* Calendar Tabs */
.calendar-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 15px 25px;
    background: var(--light-gray);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    background: var(--light-blue);
}

.tab-button.active {
    background: var(--medium-blue);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.term-card {
    padding: 30px;
    margin-bottom: 20px;
}

.term-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.term-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.term-weeks {
    background: var(--medium-gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.term-schedule h4 {
    color: var(--medium-blue);
    margin-bottom: 15px;
}

.term-schedule ul {
    list-style: none;
    padding: 0;
}

.term-schedule li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    gap: 15px;
}

.term-schedule li:last-child {
    border-bottom: none;
}

.term-schedule strong {
    color: var(--dark-blue);
    min-width: 80px;
}

.holidays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.holiday-card {
    padding: 25px;
}

.holiday-card h4 {
    color: var(--medium-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.holiday-card ul {
    list-style: none;
    padding: 0;
}

.holiday-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.holiday-card li:last-child {
    border-bottom: none;
}

.holiday-card strong {
    color: var(--dark-blue);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--medium-blue) 100%);
}

.download-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
}

.download-text h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.download-text p {
    margin: 0;
    color: var(--text-dark);
}

.download-buttons {
    display: flex;
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .term-badge {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .progress-stats {
        grid-template-columns: 1fr;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-tabs {
        flex-direction: column;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .download-buttons .btn {
        justify-content: center;
    }
    
    .term-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== QUICK INFO BAR - UNIFIED GOLD DESIGN ===== */
.info-bar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--medium-gray);
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Info Widget - Gold Design (Same for All) */
.info-widget {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(230, 194, 0, 0.04));
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--medium-gold);
}

.info-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 194, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-widget:hover::before {
    left: 100%;
}

.info-widget:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(230, 194, 0, 0.08));
}

.info-widget i {
    font-size: 1.8rem;
    color: var(--medium-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 194, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.info-widget:hover i {
    background: rgba(230, 194, 0, 0.2);
    transform: scale(1.1);
}

.info-widget div {
    flex: 1;
}

.info-widget h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.info-widget p {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.click-more {
    font-size: 0.75rem;
    color: var(--medium-gold);
    font-weight: 600;
    display: block;
    transition: var(--transition);
}

.info-widget:hover .click-more {
    color: var(--dark-gold);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-widget {
        padding: 18px;
    }
    
    .info-widget i {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .info-bar {
        padding: 15px 0;
    }
    
    .info-widget {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .info-widget i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .info-widget h4 {
        font-size: 1rem;
    }
    
    .info-widget p {
        font-size: 0.9rem;
    }
    
    .click-more {
        font-size: 0.7rem;
    }
}

/* School Hours Page Styles */
.school-hours-overview {
    background: var(--light-gray);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.hours-card {
    padding: 30px;
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-5px);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.hours-header i {
    font-size: 2rem;
    color: var(--medium-gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 194, 0, 0.1);
    border-radius: 50%;
}

.hours-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.time-slot:last-child {
    border-bottom: none;
}

.time-slot.highlight {
    background: var(--light-gold);
    margin: 0 -30px;
    padding: 15px 30px;
    border-bottom: none;
    font-weight: 600;
}

.time {
    font-weight: 700;
    color: var(--dark-blue);
    min-width: 100px;
}

.activity {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.special-day {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.special-day:last-child {
    border-bottom: none;
}

.day {
    font-weight: 700;
    color: var(--dark-blue);
    display: block;
    margin-bottom: 5px;
}

.schedule {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.reason {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.program-note {
    background: var(--light-blue);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    border-left: 4px solid var(--medium-blue);
}

.program-note p {
    margin: 0;
    font-size: 0.9rem;
}

/* Punctuality Importance Section */
.punctuality-importance {
    background: var(--white);
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.importance-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.importance-card:hover {
    transform: translateY(-5px);
}

.importance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.importance-icon i {
    font-size: 2.5rem;
    color: var(--medium-blue);
}

.importance-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.importance-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.importance-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 25px;
}

.importance-card li:last-child {
    border-bottom: none;
}

.importance-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--medium-gold);
    font-weight: bold;
}

.montessori-perspective {
    padding: 40px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(230, 194, 0, 0.1) 100%);
}

.montessori-perspective h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

.montessori-perspective p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.perspective-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-sm);
}

.point i {
    color: var(--medium-gold);
}

/* Rewards Section */
.rewards-section {
    background: var(--light-gray);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.reward-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.reward-card:hover {
    transform: translateY(-5px);
}

.reward-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--medium-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-badge i {
    font-size: 2.5rem;
    color: var(--white);
}

.reward-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reward-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.reward-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.reward-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 25px;
}

.reward-card li:last-child {
    border-bottom: none;
}

.reward-card li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

/* Policy Section */
.policy-section {
    background: var(--white);
}

.policy-levels {
    display: grid;
    gap: 15px;
}

.level {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    align-items: center;
}

.level-name {
    font-weight: 700;
    color: var(--dark-blue);
}

.level-time {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.level-desc {
    color: var(--text-light);
    text-align: right;
    font-size: 0.9rem;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.consequence-card {
    padding: 25px;
}

.consequence-card h4 {
    color: var(--medium-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.consequence-details p {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.consequence-details ul {
    list-style: none;
    padding: 0;
}

.consequence-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 25px;
}

.consequence-details li:last-child {
    border-bottom: none;
}

.consequence-details li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.policy-note {
    padding: 30px;
}

.policy-note h4 {
    color: var(--medium-blue);
    margin-bottom: 20px;
    text-align: center;
}

.note-content {
    display: grid;
    gap: 15px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
}

.note-item i {
    color: var(--medium-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.note-item p {
    margin: 0;
    flex: 1;
}

/* CTA Section */
.punctuality-cta {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--medium-blue) 100%);
}

.punctuality-cta .cta-content {
    text-align: center;
    padding: 50px;
}

.punctuality-cta h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.punctuality-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hours-grid,
    .importance-grid,
    .rewards-grid,
    .consequences-grid {
        grid-template-columns: 1fr;
    }
    
    .level {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }
    
    .level-desc {
        text-align: center;
    }
    
    .time-slot {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .activity {
        text-align: center;
    }
    
    .perspective-points {
        grid-template-columns: 1fr;
    }
    
    .note-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ===== FIXED FULL WIDTH WELCOME SECTION ===== */
.welcome-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    overflow: hidden;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.welcome-compact {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Main Content */
.welcome-left {
    padding-right: 20px;
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--medium-gold), var(--dark-gold));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(230, 194, 0, 0.3);
}

.welcome-left h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
}

.welcome-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    line-height: 1.3;
}

.welcome-text > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.read-more-btn {
    margin-top: 15px;
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* Right Side - Feature Widgets */
.welcome-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-widgets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-widget {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(13, 7, 127, 0.08);
    border-left: 3px solid var(--medium-blue);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 7, 127, 0.15);
    border-left-color: var(--medium-gold);
    background: rgba(255, 255, 255, 0.95);
}

.widget-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.widget-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Compact Stats */
.compact-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(13, 7, 127, 0.05);
}

.stat-compact {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--medium-gold);
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(230, 194, 0, 0.2);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Blue Splash Background Effect */
.blue-splash-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(13, 7, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(77, 166, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(13, 7, 127, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: gentlePulse 8s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .welcome-compact {
        gap: 40px;
    }
    
    .welcome-left h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-compact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-left {
        padding-right: 0;
        text-align: center;
    }
    
    .welcome-left h2 {
        font-size: 1.8rem;
    }
    
    .welcome-text h3 {
        font-size: 1.4rem;
    }
    
    .feature-widgets {
        gap: 15px;
    }
    
    .feature-widget {
        padding: 18px;
    }
    
    .compact-stats {
        padding: 18px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-left h2 {
        font-size: 1.6rem;
    }
    
    .welcome-text h3 {
        font-size: 1.3rem;
    }
    
    .welcome-text > p {
        font-size: 0.95rem;
    }
    
    .feature-widget {
        padding: 16px;
    }
    
    .widget-content h4 {
        font-size: 1rem;
    }
    
    .widget-content p {
        font-size: 0.85rem;
    }
    
    .compact-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .stat-compact {
        padding: 10px 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Join SMA Gallery Section */
.join-sma-section {
    margin-bottom: 100px;
}

.gallery-container {
    margin-top: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(13, 7, 127, 0.2);
    color: inherit;
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 7, 127, 0.9) 0%, rgba(13, 7, 127, 0.4) 50%, transparent 100%);
    transition: var(--transition);
}

.gallery-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(13, 7, 127, 0.95) 0%, rgba(230, 194, 0, 0.3) 50%, transparent 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
    width: 100%;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card:hover .card-content {
    transform: translateY(0);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--light-gold);
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
}

.card-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
}

.card-cta {
    display: inline-block;
    color: var(--light-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.gallery-card:hover .card-cta {
    border-bottom-color: var(--light-gold);
    transform: translateX(5px);
}

/* ===== ENHANCED NEWS SLIDER WITH KEN BURNS & BLUE SPLASH EFFECTS ===== */
.news-updates-section {
    margin-bottom: 80px;
}

.news-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 400px;
}

.news-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.news-slide.active {
    opacity: 1;
    pointer-events: all;
}

.news-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-2%, -2%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

/* Blue Splash Effect - Similar to Join SMA cards */
.blue-splash-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(13, 7, 127, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(77, 166, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(13, 7, 127, 0.5) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.7;
    animation: splashFloat 8s ease-in-out infinite;
}

@keyframes splashFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(2%, 1%) scale(1.02);
        opacity: 0.8;
    }
    66% {
        transform: translate(-1%, 2%) scale(0.98);
        opacity: 0.6;
    }
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slightly lighter for better splash effect visibility */
    z-index: 2;
}

.news-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: var(--white);
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-category {
    display: inline-block;
    background: var(--medium-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-date {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.news-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.news-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--medium-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(230, 194, 0, 0.4);
    align-self: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 194, 0, 0.6);
    color: var(--white);
    text-decoration: none;
}

/* Transparent Navigation Buttons */
.news-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 4;
}

.news-prev, .news-next {
    width: 50px;
    height: 50px;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 2rem;
    backdrop-filter: none;
    pointer-events: all;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0.8;
}

.news-prev:hover, .news-next:hover {
    background: transparent !important;
    border: none !important;
    transform: scale(1.2);
    color: var(--light-gold);
    opacity: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.news-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.dot.active {
    background: var(--light-gold);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.dot:hover {
    background: var(--light-gold);
    transform: scale(1.2);
}

/* Enhanced Floating Particles Effect */
.news-slider-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 0),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 0),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 3px, transparent 0);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    animation: floatParticles 15s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes floatParticles {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-slider-container {
        height: 380px;
    }
    
    .news-content {
        padding: 40px;
    }
    
    .news-content h3 {
        font-size: 2rem;
    }
    
    .news-prev, .news-next {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-slider-container {
        height: 350px;
    }
    
    .news-content {
        padding: 30px;
        text-align: center;
    }
    
    .news-content h3 {
        font-size: 1.6rem;
    }
    
    .news-link {
        align-self: center;
    }
    
    .news-slider-controls {
        padding: 0 15px;
    }
    
    .news-prev, .news-next {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .news-slider-container {
        height: 320px;
    }
    
    .news-content {
        padding: 25px 20px;
    }
    
    .news-content h3 {
        font-size: 1.4rem;
    }
    
    .news-content p {
        font-size: 1rem;
    }
    
    .news-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .news-prev, .news-next {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
    
    .news-slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

/* ===== GLOBAL FULL WIDTH FIX ===== */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure all main sections stretch full width */
.hero,
.info-bar,
.welcome-section,
.programs,
.accreditation,
.testimonials,
.cta,
.footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
    position: relative;
}

/* Fix for sections that use container class */
.hero .container,
.info-bar .container,
.programs .container,
.accreditation .container,
.testimonials .container,
.cta .container,
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Add this to your existing CSS */
@media (max-width: 768px) {
    .dropdown-menu a {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .nav-dropdown.active .dropdown-menu {
        pointer-events: auto !important;
    }
}