/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --secondary: #FF6B6B;
    --accent: #06B6D4;
    --success: #10B981;
    --warning: #F59E0B;
    --dark: #1F2937;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --cream: #FFFBF5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-accent: linear-gradient(135deg, #06B6D4 0%, #67E8F9 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #1E3A8A 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 0;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --radius: 1rem;
    --radius-sm: 0.5rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {font-size: clamp(2.5rem, 5vw, 4rem);}
h2 {font-size: clamp(2rem, 4vw, 3rem);}
h3 {font-size: clamp(1.5rem, 3vw, 2rem);}
h4 {font-size: 1.25rem;}
h5 {font-size: 1.125rem;}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-circle {
    width: 50px;
    height: 45px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    letter-spacing: -1px;
}

.logo-text {
    font-family: "Barlow Semi Condensed", sans-serif;
    color: #1e3a8a;
    font-weight: 800;
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--gray);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.65rem 1.5rem !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.95) 100%), url('images/gallery/IMG-20251108-WA0366 - Copy.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(30, 41, 59, 0.88) 50%,
        rgba(30, 58, 138, 0.85) 100%
    );
    z-index: 1;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.90) 0%,
        rgba(30, 41, 59, 0.88) 100%
    );
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.92) 0%,
        rgba(99, 102, 241, 0.88) 100%
    );
    z-index: 1;
}

@keyframes float {
    0%, 100% {transform: translateY(0) scale(1);}
    50% {transform: translateY(-30px) scale(1.05);}
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {opacity: 1;}
    50% {opacity: 0.5;}
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #5d3a82 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: white;
    border: 2px solid rgba(124, 58, 237, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    animation: float 5s ease-in-out infinite;
}

.card-1 {top: 10%; left: -10%; animation-delay: 0s;}
.card-2 {bottom: 15%; right: -5%; animation-delay: 1.5s;}
.card-3 {top: 55%; left: -15%; animation-delay: 0.8s;}

/* ===== MARQUEE ===== */
.marquee-wrapper {
    background: var(--gradient-secondary);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex; /* Revert to flex */
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

.marquee-content span {
    color: white;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

@keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

section[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== PROGRAMS ===== */
.programs-preview,
.programs-section {
    background: transparent;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    border-color: var(--accent, var(--primary));
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.program-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.program-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

/* Programs Detail */
.programs-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.program-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.program-detail-header {
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.program-detail-icon {
    font-size: 3rem;
}

.program-detail-header h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.age-range {
    font-size: 0.9rem;
    opacity: 0.9;
}

.program-detail-body {
    padding: 2rem;
}

.program-detail-body p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.program-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.program-features li {
    color: var(--dark);
    font-weight: 500;
}

/* ===== ACTIVITY SHOWCASE ===== */
.activity-showcase {
    padding: var(--section-padding);
    background: transparent;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.activity-card {
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.activity-card:hover .activity-card-overlay {
    background: linear-gradient(to top, rgba(124, 58, 237, 0.92), rgba(124, 58, 237, 0.5));
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.activity-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-preview {
    padding: var(--section-padding);
}

.gallery-preview .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item-home {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item-home.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-home:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-home:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Gallery Page */
.gallery-section {
    padding: 3rem 0 5rem;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    font-family: var(--font-heading);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 250px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-item-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Placeholder Gallery Items */
.placeholder-item {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-item h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.placeholder-item p {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== HOMEPAGE GALLERY PREVIEW ===== */
.homepage-gallery-preview {
    padding: var(--section-padding);
    background: var(--cream);
}

.gallery-grid-homepage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item-homepage {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item-homepage img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-homepage:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item-homepage:hover img {
    transform: scale(1.05);
}


/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10001;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color: var(--dark); /* Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-padding);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-gray);
    border: 1px solid var(--light-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}


/* Adjust for placeholder items (if any remain) */
.placeholder-item {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    min-height: 200px;
}

.placeholder-content .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.placeholder-content h3 {
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.placeholder-content p {
    color: var(--gray);
}

/* Masonry layout adjustments (example - often handled by JS or more complex CSS Grid) */
.gallery-masonry .tall {
    grid-row: span 2;
}

.gallery-masonry .wide {
    grid-column: span 2;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    position: relative;
    color: white;
    text-align: center;
    background-color: var(--primary-dark); /* Fallback */
    background-size: cover;
    background-position: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.footer-col .logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-col .logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: none;
}

.footer-col .logo-text {
    font-family: "Barlow Semi Condensed", sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-info li::before {
    content: attr(data-icon);
    font-size: 1.1rem;
    line-height: 1;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.affiliation {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    padding: var(--section-padding);
    background: transparent;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray);
}

.content-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: var(--section-padding);
    background: transparent;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.programs-section {
    padding: var(--section-padding);
    background: transparent;
}

/* ===== ADMISSIONS PAGE STYLES ===== */
.admission-process {
    padding: var(--section-padding);
    background: transparent;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.step-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.application-form-section {
    padding: var(--section-padding);
    background: transparent;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.form-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.info-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-item p, .highlight-item ul {
    color: var(--gray);
    font-size: 0.9rem;
}

.highlight-item ul {
    list-style: none;
    padding-left: 0;
}

.highlight-item ul li {
    margin-bottom: 0.25rem;
}

.application-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.admission-form h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.required {
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-section {
    padding: var(--section-padding);
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-info-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-link, .contact-link-large {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin: 0.5rem 0;
    transition: var(--transition);
}

.contact-link-large {
    font-size: 1.25rem;
}

.contact-link:hover, .contact-link-large:hover {
    color: var(--primary-dark);
}

.contact-hours {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
}

.contact-form-section {
    padding: var(--section-padding);
    background: transparent;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: 2rem;
}

.map-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-directions {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-directions h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.map-directions ul {
    list-style: none;
}

.map-directions ul li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.faq-section {
    padding: var(--section-padding);
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--light-gray);
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 0;
    }

    .nav-cta {
        margin-top: 0.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1; /* Image above text on mobile */
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .section-header.centered {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .marquee-content {
        animation: scroll 40s linear infinite; /* Slow down for mobile */
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom .affiliation {
        margin-top: 1rem;
    }

    .gallery-masonry .tall, .gallery-masonry .wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
        min-height: 250px;
    }

    .cta-section {
        padding: 4rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .logo-image {
        height: 40px;
    }

    .logo-circle {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Success Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ===== Social Media Section ===== */
.social-media-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.social-platform {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.platform-icon {
    font-size: 2rem;
}

.platform-header h3 {
    margin: 0;
    color: var(--dark);
}

.instagram-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-cta {
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    transition: var(--transition);
}

.instagram-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.instagram-icon {
    font-size: 3rem;
}

.instagram-cta h4 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.instagram-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 350px;
}

.instagram-cta .btn {
    margin-top: 0.5rem;
    background: white;
    color: #bc1888;
}

.instagram-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.youtube-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.youtube-thumbnail-link {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.youtube-thumbnail-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: var(--transition);
    opacity: 0.9;
}

.youtube-thumbnail-link:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-md);
}

.youtube-cta {
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.btn-youtube {
    background: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Responsive adjustments for social media section */
@media (max-width: 992px) {
    .social-feed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .social-platform {
        padding: 1.5rem;
    }
    
    .instagram-cta {
        padding: 1.5rem;
    }
    
    .instagram-icon {
        font-size: 2rem;
    }
    
    .instagram-cta h4 {
        font-size: 1.25rem;
    }
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.leader-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.leader-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.leader-quote {
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--gray);
    border-radius: 0 8px 8px 0;
}

.leader-bio {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}