/* 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/Teacher\ cubes.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;
    }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* About Intro */
.about-intro .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.intro-image .image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.1), rgba(0, 123, 255, 0.1));
}

/* ===== CORE VALUES SECTION - UPDATED WITH GALLERY CARDS ===== */
.light-bg {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card.gallery-card {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.value-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.value-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(13,7,127,0.8) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.value-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    z-index: 2;
}

.value-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.value-card .card-cta {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
}

/* Hover Effects */
.value-card:hover .card-image {
    transform: scale(1.1);
}

.value-card:hover .card-overlay {
    opacity: 0.9;
}

.value-card:hover .card-content {
    transform: translateY(0);
}

.value-card:hover .card-cta {
    opacity: 1;
}

/* ===== MISSION VISION SECTION - UPDATED WITH GALLERY CARDS ===== */
.motto-section {
    margin-bottom: 60px;
}

.motto-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.motto-text {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 600;
}

.motto-subtitle {
    color: #666666;
    font-size: 1.1rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-card.gallery-card,
.vision-card.gallery-card {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.mission-card .card-image,
.vision-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.mission-card .card-overlay,
.vision-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(214, 14, 14, 0.07) 0%, rgba(13,7,127,0.85) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mission-card .card-content,
.vision-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    z-index: 2;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
      
    font-size: 1.8rem;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.mission-card p,
.vision-card p {
    color: rgb(255, 255, 255);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.mission-points li,
.vision-points li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.mission-points i {
    color: var(--primary-color);
}

.vision-points i {
    color: #ffa726;
}

.mission-card .card-cta,
.vision-card .card-cta {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
}

/* Hover Effects */
.mission-card:hover .card-image,
.vision-card:hover .card-image {
    transform: scale(1.1);
}

.mission-card:hover .card-overlay,
.vision-card:hover .card-overlay {
    opacity: 0.9;
}

.mission-card:hover .card-content,
.vision-card:hover .card-content {
    transform: translateY(0);
}

.mission-card:hover .card-cta,
.vision-card:hover .card-cta {
    opacity: 1;
}

/* ===== EDUCATIONAL OBJECTIVES SECTION - UPDATED WITH GALLERY CARDS ===== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.objective-card.gallery-card {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.objective-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.objective-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(13,7,127,0.8) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.objective-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    z-index: 2;
}

.objective-card .card-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 10px;
}

.objective-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.objective-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.objective-card .card-cta {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
}

/* Hover Effects */
.objective-card:hover .card-image {
    transform: scale(1.1);
}

.objective-card:hover .card-overlay {
    opacity: 0.9;
}

.objective-card:hover .card-content {
    transform: translateY(0);
}

.objective-card:hover .card-cta {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid,
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card.gallery-card,
    .vision-card.gallery-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card.gallery-card,
    .objective-card.gallery-card {
        height: 320px;
    }
    
    .motto-text {
        font-size: 1.8rem;
    }
    
    .mission-card .card-content,
    .vision-card .card-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .value-card.gallery-card,
    .objective-card.gallery-card {
        height: 280px;
    }
    
    .mission-card.gallery-card,
    .vision-card.gallery-card {
        height: 350px;
    }
    
    .card-content {
        padding: 20px !important;
    }
    
    .value-card .card-icon,
    .mission-card .card-icon,
    .vision-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

/* ===== FUTURE SECTION - COMPACT WITH COLORS ===== */
.future-section.compact-section {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
    overflow: hidden;
}

.section-bg-splash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-blue-splash {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 7, 127, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

.bg-gold-splash {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

.future-content.compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.future-image .image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(13, 7, 127, 0.12);
    position: relative;
    height: 280px;
}

.future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.future-image:hover img {
    transform: scale(1.05);
}

.color-splash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.blue-splash {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.15), rgba(0, 123, 255, 0.15));
    border-radius: 50%;
    opacity: 0.8;
    animation: floatBlue 4s ease-in-out infinite;
}

.gold-splash {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border-radius: 50%;
    opacity: 0.8;
    animation: floatGold 5s ease-in-out infinite;
}

.future-text h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.future-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700);
    border-radius: 2px;
}

.future-text .compact-text {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

.future-features.compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 7, 127, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(13, 7, 127, 0.05);
    min-height: 85px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 7, 127, 0.15);
    border-color: var(--primary-color);
    background: white;
}

.hover-splash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.1), rgba(0, 123, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover .hover-splash {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.icon-bg {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FIX: All cards now get gold hover effect on icons */
.feature-card:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(13, 7, 127, 0.25);
    background: linear-gradient(135deg, #ffd700, #ffa500);
}

.dot-gold,
.dot-blue {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dot-gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    animation: pulseGold 2s infinite;
}

.dot-blue {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: pulseBlue 2s infinite;
}

/* FIX: All dots turn gold on hover */
.feature-card:hover .dot-blue {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    animation: pulseGold 2s infinite;
}

.feature-content {
    flex: 1;
    z-index: 1;
}

.feature-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h5 {
    color: var(--primary-color);
}

.feature-content p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content p {
    color: #555;
}

.text-center {
    text-align: center;
}

/* Add blue splash effect on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 7, 127, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Animations */
@keyframes floatBlue {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

@keyframes floatGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(10px) rotate(-3deg);
    }
}

@keyframes pulseGold {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 3px 8px rgba(255, 215, 0, 0.6);
    }
}

@keyframes pulseBlue {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(13, 7, 127, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 3px 8px rgba(13, 7, 127, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .future-content.compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .future-image .image-container {
        height: 240px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .future-text h3,
    .future-text .compact-text {
        text-align: center;
    }
    
    .future-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .future-features.compact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 15px;
        min-height: 80px;
    }
    
    .future-section.compact-section {
        padding: 40px 0;
    }
    
    .future-text h3 {
        font-size: 1.5rem;
    }
    
    .future-text .compact-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 12px;
        min-height: 75px;
        gap: 12px;
    }
    
    .icon-bg {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h5 {
        font-size: 0.95rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .bg-blue-splash {
        width: 150px;
        height: 150px;
    }
    
    .bg-gold-splash {
        width: 120px;
        height: 120px;
    }
}
/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    background: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 5%;
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-intro .intro-grid,
    .mv-grid,
    .future-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .motto-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .mv-card {
        padding: 25px;
    }
    
    .objective-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Center alignment for headers */
.center {
    text-align: center;
}

/* Section padding adjustments */
.section-padding {
    padding: 80px 0;
}

/* ===== VIDEO JOURNEY SECTION ===== */
.video-journey {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.video-player-container {
    max-width: 1000px;
    margin: 40px auto 0;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-player {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.15);
    aspect-ratio: 16/9;
    background: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 2;
}

.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}

.placeholder-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.6), rgba(0, 123, 255, 0.6));
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(13, 7, 127, 0.4);
}

.play-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.youtube-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.youtube-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.custom-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 3;
    pointer-events: none;
}

.controls-top,
.controls-bottom {
    display: flex;
    justify-content: space-between;
    pointer-events: auto;
}

.control-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.control-btn:hover {
    background: rgba(13, 7, 127, 0.8);
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.video-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.video-features {
    display: grid;
    gap: 15px;
}

.video-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-features .feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.video-features .feature span {
    color: #555;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .video-player {
        aspect-ratio: 4/3;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .play-text {
        font-size: 1rem;
    }
    
    .custom-controls {
        padding: 15px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .video-player {
        aspect-ratio: 3/2;
    }
    
    .video-info h3 {
        font-size: 1.5rem;
    }
}

/* ===== PRINCIPAL'S WELCOME PAGE STYLES ===== */

/* Principal Hero */
.principal-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.principal-hero .hero-badge {
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
}

/* Principal Message Section */
.principal-message {
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.message-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.principal-profile {
    position: relative;
}

.profile-image-container {
    position: sticky;
    top: 100px;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.15);
    margin-bottom: 25px;
}

.principal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.principal-image:hover {
    transform: scale(1.02);
}

.profile-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    pointer-events: none;
}

.blue-splash-effect {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.15), rgba(0, 123, 255, 0.15));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: floatBlue 6s ease-in-out infinite;
}

.gold-splash-effect {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: floatGold 7s ease-in-out infinite;
}

.profile-info {
    text-align: center;
}

.principal-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.principal-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.principal-qualifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.principal-qualifications span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    justify-content: center;
}

.principal-qualifications i {
    color: var(--primary-color);
}

/* Message Content */
.message-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(13, 7, 127, 0.1);
}

.message-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.message-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.message-date i {
    color: var(--primary-color);
}

.message-text {
    line-height: 1.8;
    color: #444;
}

.message-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.message-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.05), rgba(255, 215, 0, 0.05));
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.highlight-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-dark);
    margin: 0;
    padding-left: 20px;
}

.signature-block {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(13, 7, 127, 0.1);
    text-align: center;
}

.signature-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.signature-image {
    height: 60px;
    margin: 15px 0;
    opacity: 0.9;
}

.signature-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.signature-title {
    color: #666;
    font-size: 0.95rem;
}

.message-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(13, 7, 127, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.1);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.03), rgba(255, 215, 0, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    transform: scale(1.1);
}

.vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.vision-card p {
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Meet Principal Section */
.meet-principal {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.meet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.meet-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.meet-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.meet-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meet-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.meet-image .image-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.meet-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.meet-image:hover img {
    transform: scale(1.05);
}

.image-splash {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    z-index: -1;
    animation: floatBlue 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .message-container {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .message-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-image-container {
        position: static;
    }
    
    .principal-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meet-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .meet-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .message-title {
        font-size: 2rem;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .message-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .meet-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .principal-name {
        font-size: 1.5rem;
    }
    
    .principal-image {
        height: 350px;
    }
    
    .message-text p {
        font-size: 1rem;
    }
    
    .meet-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .meet-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Animation keyframes */
@keyframes floatBlue {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes floatGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(15px) rotate(-5deg);
    }
}

/* ===== CEO'S MESSAGE PAGE STYLES ===== */

/* CEO Hero */
.ceo-hero .hero-badge {
    background: linear-gradient(135deg, #ffd700, var(--primary-color));
}

/* CEO Message Section */
.ceo-message {
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.02) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.ceo-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

/* CEO Profile */
.ceo-profile {
    position: relative;
}

.profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 7, 127, 0.12);
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.profile-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.profile-image-wrapper:hover .ceo-image {
    transform: scale(1.05);
}

.profile-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.blue-gold-splash {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.15), rgba(255, 215, 0, 0.15));
    border-radius: 50%;
    z-index: 1;
    animation: floatBlueGold 8s ease-in-out infinite;
}

.crown-decoration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.profile-info {
    padding: 25px;
}

.ceo-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
    text-align: center;
}

.ceo-title {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ceo-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ceo-qualifications {
    margin-bottom: 25px;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(13, 7, 127, 0.03);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.qualification:hover {
    background: rgba(13, 7, 127, 0.08);
}

.qualification i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
}

.qualification span {
    color: #555;
    font-size: 0.9rem;
}

.ceo-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(13, 7, 127, 0.1);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link i {
    font-size: 1.1rem;
}

.leadership-highlights {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.08);
}

.leadership-highlights h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    text-align: center;
}

.highlights-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Message Content */
.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(13, 7, 127, 0.1);
}

.message-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.message-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-color);
}

.ceo-stats {
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.05), rgba(255, 215, 0, 0.05));
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Message Body */
.message-body {
    line-height: 1.8;
    color: #444;
}

.intro-paragraph {
    margin-bottom: 40px;
}

.intro-paragraph p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.intro-paragraph .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.6;
}

.message-section {
    margin-bottom: 40px;
}

.message-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-section h3 i {
    color: var(--primary-color);
}

.message-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.quote-box {
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.05), rgba(255, 215, 0, 0.05));
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #ffd700;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: #ffd700;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 15px;
    padding-left: 20px;
    line-height: 1.6;
}

.quote-author {
    color: #666;
    font-weight: 500;
    text-align: right;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vision-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(13, 7, 127, 0.03);
    border-radius: 8px;
}

.vision-list li i {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 2px;
}

.vision-list li strong {
    color: var(--primary-dark);
}

.conclusion-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(13, 7, 127, 0.1);
}

.signature-block {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.02), rgba(255, 215, 0, 0.02));
    border-radius: 12px;
}

.signature-label {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.signature-wrapper {
    margin: 20px 0;
}

.signature-image {
    height: 70px;
    opacity: 0.9;
}

.signature-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 10px 0 5px;
}

.signature-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.signature-company {
    color: #666;
    font-size: 1rem;
}

.message-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(13, 7, 127, 0.1);
}

.footer-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Vision Cards Section */
.vision-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.vision-card {
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.1);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.03), rgba(255, 215, 0, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.vision-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(13, 7, 127, 0.1);
    line-height: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(201, 214, 15);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.vision-card:hover .card-icon {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    transform: scale(1.1);
}

.vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.vision-card p {
    color: #666666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Executive Invitation */
.executive-invitation {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: rgb(59, 61, 204);
}

.invitation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.invitation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgb(26, 29, 169);
}

.invitation-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.invitation-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.invitation-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.invitation-image {
    position: relative;
}

.invitation-image .image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.invitation-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.invitation-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 15px;
}

.gold-splash {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGold 6s ease-in-out infinite;
}

/* Animations */
@keyframes floatBlueGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes floatGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(15px) rotate(-10deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ceo-container {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .vision-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-card {
        position: static;
    }
    
    .profile-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .message-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .invitation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .invitation-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .message-title {
        font-size: 2rem;
    }
    
    .vision-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .invitation-text h2 {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .ceo-name {
        font-size: 1.5rem;
    }
    
    .profile-image-wrapper {
        height: 250px;
    }
    
    .message-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .invitation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .invitation-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .signature-name {
        font-size: 1.4rem;
    }
}


/* ===== OUR HISTORY PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Timeline */
.history-timeline {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-year {
    position: absolute;
    left: -90px;
    top: 0;
    background: var(--primary-color);
    color: rgb(13, 60, 188);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(13, 7, 127, 0.3);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--primary-color);
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 200px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

.timeline-milestones {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.milestone {
    background: rgba(13, 7, 127, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Present Item */
.timeline-item.present .timeline-year {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(255, 193, 7, 0.6); }
    100% { box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); }
}

.current-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed rgba(13, 7, 127, 0.1);
}

.current-stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.current-stat p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.founder-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.founder-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.founder-content {
    padding: 30px;
}

.founder-content h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.founder-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    line-height: 1.6;
}

.founder-achievements {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.founder-achievements span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 7, 127, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.founder-achievements i {
    color: var(--secondary-color);
}

/* Milestones Grid */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.milestone-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.milestone-card:hover::before {
    opacity: 1;
}

.milestone-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.milestone-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.milestone-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.milestone-year {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Campus Evolution */
.campus-timeline {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

.campus-timeline::-webkit-scrollbar {
    height: 8px;
}

.campus-timeline::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.campus-timeline::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.campus-phase {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.phase-year {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.phase-content {
    padding: 25px;
    text-align: center;
}

.phase-image {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.phase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.campus-phase:hover .phase-image img {
    transform: scale(1.1);
}

.phase-content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.phase-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Alumni Impact */
.alumni-impact {
    background: linear-gradient(135deg, #0d077f 0%, #1a1499 100%);
    color: white;
}

.alumni-impact .section-header h2,
.alumni-impact .section-header p {
    color: white;
}

.alumni-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.alumni-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alumni-stat h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 700;
}

.alumni-stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.alumni-quotes {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-slide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.quote-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.quote-slide p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.quote-author {
    text-align: center;
}

.quote-author strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.quote-author span {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Future Vision */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vision-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.15);
}

.vision-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.vision-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.vision-card p {
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.vision-timeline {
    display: inline-block;
    background: rgba(13, 7, 127, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section {
    padding: 60px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-container {
        padding-left: 30px;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .timeline-icon {
        left: -40px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.3rem;
    }
    
    .timeline-container {
        padding-left: 0;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-content::before,
    .timeline-icon {
        display: none;
    }
    
    .current-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .alumni-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .alumni-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .founder-achievements {
        flex-direction: column;
        gap: 10px;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== SMA ATTRIBUTES PAGE SPECIFIC STYLES ===== */


/* Introduction Section */
.sma-intro {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
}

.sma-intro .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.sma-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.gold-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC400 100%);
    margin: 30px 0;
    border-radius: 2px;
}

.inspirational-quote {
    background: rgba(240, 248, 255, 0.8);
    border-left: 4px solid #0d077f;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
}

.inspirational-quote i.fa-quote-left {
    color: #0d077f;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.inspirational-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #0d077f;
    line-height: 1.6;
    margin-bottom: 10px;
}

.inspirational-quote cite {
    color: #666;
    font-size: 0.9rem;
    font-style: normal;
}

.sma-intro .image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.1);
}

.sma-intro .image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gold-frame-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
}

.blue-splash-corner {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
}

/* Attributes Grid */
.attributes-grid {
    padding: 80px 0;
    background: #ffffff;
}

.attributes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.attribute-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.08);
}

.attribute-card:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(13, 7, 127, 0.15);
}

.attribute-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.attribute-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.gold-icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.attribute-content h3 {
    color: #0d077f;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.attribute-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.attribute-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attribute-features span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attribute-features i {
    color: #FFD700;
}

.attribute-card .blue-splash-bg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.05) 0%, rgba(0, 150, 255, 0.02) 100%);
    border-radius: 50%;
    z-index: 0;
}

/* Implementation Section */
.implementation {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    padding: 80px 0;
}

.light-blue-bg {
    background: #f8f9ff;
}

.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.implementation-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
}

.step-number {
    position: relative;
    width: 80px;
    height: 80px;
}

.step-number span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 2;
}

.gold-number-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    animation: rotateBorder 20s linear infinite;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.step-content h3 {
    color: #0d077f;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.step-features li {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #0d077f;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e0e7ff;
}

.step-features i {
    color: #FFD700;
}

/* Attributes in Action */
.attributes-action {
    padding: 80px 0;
    background: white;
}

.action-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.action-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.15);
    border-color: #FFD700;
}

.action-image {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 7, 127, 0.3) 0%, rgba(0, 150, 255, 0.2) 100%);
}

.action-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: #0d077f;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.action-content {
    padding: 25px;
}

.action-content h4 {
    color: #0d077f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.action-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.attributes-displayed {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.attribute-tag {
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    color: #0d077f;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(13, 7, 127, 0.2);
}

/* CTA Section */
.attributes-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    position: relative;
    overflow: hidden;
}

.attributes-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #FFD700;
    color: #0d077f;
    border: 2px solid #FFD700;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0d077f;
}

.gold-cta-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sma-intro .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sma-intro .image-frame img {
        height: 300px;
    }
    
    .implementation-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sma-attributes-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .attributes-container {
        grid-template-columns: 1fr;
    }
    
    .action-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .sma-attributes-hero .hero-title {
        font-size: 2rem;
    }
    
    .attribute-card {
        padding: 20px;
    }
    
    .step-features li {
        width: 100%;
        justify-content: center;
    }
}

/* Section height reduction */
.section-padding {
    padding: 60px 0;
}

/* Button hover effects */
.btn-primary {
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    color: white;
    border: 2px solid #0d077f;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: #0d077f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 7, 127, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #0d077f;
    border: 2px solid #0d077f;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 7, 127, 0.2);
}

/* Blue text on white backgrounds */
.sma-intro .section-title,
.attributes-grid .section-title,
.attributes-action .section-title {
    color: #0d077f;
}

.sma-intro .section-subtitle,
.attributes-grid .section-subtitle,
.attributes-action .section-subtitle {
    color: #666;
}


/* Programs Page Specific Styles */

/* Hero Section */
.programs-hero .hero-content {
    padding: 100px 0 80px;
}

/* Program Navigation */
.program-navigation {
    background: linear-gradient(135deg, #0d077f 0%, #1a138f 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(13, 7, 127, 0.2);
    padding: 15px 0;
}

.program-nav-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.5) transparent;
}

.program-nav-container::-webkit-scrollbar {
    height: 4px;
}

.program-nav-container::-webkit-scrollbar-track {
    background: transparent;
}

.program-nav-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 2px;
}

.program-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: max-content;
}

.program-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.program-nav-btn.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
    color: #0d077f;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.program-nav-btn i {
    font-size: 16px;
}

/* Section Padding Reduction */
.program-overview,
.program-section,
.program-comparison,
.enrichment-programs,
.programs-cta {
    padding: 60px 0;
}

/* Program Overview */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.overview-text h3 {
    color: #0d077f;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.overview-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(13, 7, 127, 0.05);
    border-left: 4px solid #ffd700;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(13, 7, 127, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d077f 0%, #1a138f 100%);
    color: #ffd700;
    border-radius: 50%;
    margin-bottom: 10px;
}

.feature-content h4 {
    color: #0d077f;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.2);
    height: 400px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13, 7, 127, 0.3) 100%);
}

/* Program Sections */
.program-section {
    position: relative;
}

.program-section.light-bg {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9) 0%, rgba(240, 242, 255, 0.9) 100%);
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.program-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.program-content.reverse .program-image {
    order: -1;
}

.program-details {
    padding: 20px;
}

.program-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0d077f 0%, #1a138f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.program-details h2 {
    color: #0d077f;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.program-age {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-age i {
    color: #ffd700;
}

.program-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.program-curriculum {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(13, 7, 127, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.08);
}

.curriculum-title {
    color: #0d077f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.curriculum-list {
    list-style: none;
    padding: 0;
}

.curriculum-list li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.gold-star {
    color: #ffd700;
    position: absolute;
    left: 0;
    top: 5px;
}

.program-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.program-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.program-image .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-image:hover img {
    transform: scale(1.05);
}

.gold-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-image-slice: 1;
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-image:hover .gold-border {
    opacity: 1;
}

/* Program Comparison */
.program-comparison {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9) 0%, rgba(240, 242, 255, 0.9) 100%);
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.1);
    margin-top: 40px;
}

.table-header {
    background: linear-gradient(135deg, #0d077f 0%, #1a138f 100%);
    padding: 25px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h3 {
    margin: 0;
    font-size: 22px;
}

.table-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.table-content-wrapper {
    overflow-x: auto;
}

.table-content {
    min-width: 800px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    min-height: 60px;
    border-bottom: 1px solid rgba(13, 7, 127, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-header {
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.05) 0%, rgba(26, 19, 143, 0.05) 100%);
    font-weight: 600;
}

.row-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 15px;
}

.row-header .row-cell {
    color: #0d077f;
    font-weight: 600;
}

.program-cell {
    text-align: center;
    justify-content: center;
    font-weight: 500;
    color: #0d077f;
}

.check-cell {
    text-align: center;
    justify-content: center;
}

.gold-check {
    color: #ffd700;
    font-size: 18px;
}

.partial {
    color: rgba(13, 7, 127, 0.5);
    font-size: 14px;
}

/* Enrichment Programs */
.enrichment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.enrichment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 7, 127, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.enrichment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 7, 127, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.enrichment-header {
    background: linear-gradient(135deg, #0d077f 0%, #1a138f 100%);
    padding: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.enrichment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.enrichment-card:hover .enrichment-icon {
    transform: rotate(15deg) scale(1.1);
}

.enrichment-header h3 {
    margin: 0;
    font-size: 20px;
}

.enrichment-body {
    padding: 25px;
}

.enrichment-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.enrichment-schedule {
    background: rgba(13, 7, 127, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(13, 7, 127, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item span:first-child {
    color: #0d077f;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-item span:last-child {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.programs-cta {
    position: relative;
    background: linear-gradient(135deg, #0d077f 0%, #1a138f 100%);
    color: white;
    text-align: center;
}

.programs-cta h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.programs-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gold-cta-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

/* Blue Splash Background */
.blue-splash-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(13, 7, 127, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(26, 19, 143, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Light Blue Background Sections - White text with blue text */
.light-bg .section-title,
.light-bg .section-subtitle,
.light-bg .program-details h2,
.light-bg .program-age,
.light-bg .program-description,
.light-bg .curriculum-title,
.light-bg .curriculum-list li {
    color: #0d077f;
}

.light-bg .btn-outline {
    border-color: #0d077f;
    color: #0d077f;
}

.light-bg .btn-outline:hover {
    background: #0d077f;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content,
    .program-content,
    .program-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .program-content.reverse .program-image {
        order: 0;
    }
    
    .program-details h2 {
        font-size: 30px;
    }
    
    .programs-cta h2 {
        font-size: 30px;
    }
    
    .program-nav-container {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .program-overview,
    .program-section,
    .program-comparison,
    .enrichment-programs,
    .programs-cta {
        padding: 40px 0;
    }
    
    .overview-image,
    .program-image {
        height: 300px;
    }
    
    .program-actions,
    .cta-buttons {
        flex-direction: column;
    }
    
    .program-actions .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    .enrichment-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row .row-cell {
        padding: 15px 10px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .program-nav-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .program-nav-btn i {
        font-size: 14px;
    }
    
    .program-details h2 {
        font-size: 26px;
    }
    
    .overview-image,
    .program-image {
        height: 250px;
    }
    
    .table-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}



/* Z-Index Fixes for Dropdowns */
.header {
    z-index: 1000 !important; /* Ensure header stays on top */
}

.nav-dropdown .dropdown-container {
    z-index: 1100 !important; /* Higher than everything else */
}

.dropdown-menu {
    z-index: 1110 !important; /* Highest z-index for dropdowns */
}

/* Make sure sticky elements don't interfere */
.sticky-element {
    z-index: 900; /* Lower than dropdowns */
}

/* Back to top button should be above quick nav */
.back-to-top {
    z-index: 900 !important;
}

/* Mobile menu should be above everything */
.mobile-toggle,
.nav-menu.active {
    z-index: 1200 !important; /* Highest for mobile menu */
}

/* Dropdown menu scrolling fix */
.nav-dropdown.active .dropdown-container {
    display: block;
}

/* Ensure dropdowns close after click on mobile */
@media (max-width: 768px) {
    .nav-dropdown.active .dropdown-container {
        position: static;
        box-shadow: none;
        margin-top: 10px;
    }
    
    .dropdown-menu {
        background: rgba(13, 7, 127, 0.05);
        border-radius: 10px;
        padding: 10px;
    }
    
    .dropdown-item {
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    .dropdown-item:hover {
        background: rgba(13, 7, 127, 0.1);
    }
}

/* ===== FIX FOR MOBILE NAVIGATION POINTER-EVENTS ===== */
@media (max-width: 768px) {
    /* Make sure the fancy menu pseudo-elements don't interfere */
    .nav-menu::before,
    .nav-menu::after {
        pointer-events: none !important;
    }
    
    /* Ensure when menu is closed, it doesn't block clicks */
    .nav-menu:not(.active) {
        pointer-events: none !important;
    }
    
    .nav-menu.active {
        pointer-events: auto !important;
    }
    
    /* Force all other page elements to be clickable */
    .info-bar *,
    .hero *,
    .welcome-section *,
    .programs *,
    .accreditation *,
    .testimonials * {
        pointer-events: auto !important;
    }
    
    /* Specifically protect info widgets */
    .info-widget {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .info-widget * {
        pointer-events: auto !important;
        cursor: inherit !important;
    }
}





/* Mobile Fix for Events - Keep original toggle functionality */
@media screen and (max-width: 768px) {
    .event-details {
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.3s ease !important;
    }
    
    .event-details.active {
        max-height: 5000px !important;
        overflow-y: auto !important;
    }
    
    .event-content {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    .event-highlights ul {
        padding-left: 15px !important;
    }
}

/* Desktop Fix for Events */
@media screen and (min-width: 769px) {
    .event-details {
        overflow-y: auto !important;
        max-height: 1000px !important;
    }
    
    .event-details:not(.active) {
        max-height: 0 !important;
        overflow: hidden !important;
    }
}








