/* =================================================================
   CSS RESET & GLOBAL STYLES
   ================================================================= */

:root {
    --header-height: 80px;
    --primary-purple: #371167;
    --accent-violet: #8C3ADE;
    --soft-lavender: #ECEAFF;
    --brand-gradient: linear-gradient(135deg, #8C3ADE 0%, #371167 100%);
    --primary-start: var(--accent-violet);
    --primary-end: var(--primary-purple);
    --gradient-primary: var(--brand-gradient);
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-primary: #2d3748;
    --text-secondary: #4a4a6e;
    --text-dark: #1f1f45;
    --white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
}

/* Responsive header height for mobile overlap prevention */
@media (max-width: 1024px) {
    :root { --header-height: 90px; }
}

@media (max-width: 768px) {
    :root { --header-height: 100px; }
}

@media (max-width: 480px) {
    :root { --header-height: 110px; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-bg);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 0;
}

main {
    flex: 1;
}

/* Ensure the first section starts below the fixed header on mobile and desktop */
.hero-section,
.about-hero,
.events-hero,
.team-hero,
.contact-hero,
.contact-hero-section,
.podcast-hero {
    position: relative;
    min-height: calc(65vh);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 90px;
    overflow: hidden;
    background-color: #371167;
    background-image: linear-gradient(145deg, rgba(55,17,103,0.95), rgba(140,58,222,0.4)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    transition: all 0.2s ease-in-out;
    z-index: 0;
}

@media (max-width: 1024px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        padding-top: calc(var(--header-height) + 16px);
        min-height: calc(70vh);
    }
}

@media (max-width: 768px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        padding-top: calc(var(--header-height) + 14px);
        min-height: calc(76vh);
    }
}

@media (max-width: 480px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        padding-top: calc(var(--header-height) + 12px);
        min-height: calc(80vh);
    }
}

.internal-page .hero-section,
.internal-page .about-hero,
.internal-page .events-hero,
.internal-page .team-hero,
.internal-page .contact-hero,
.internal-page .contact-hero-section,
.internal-page .podcast-hero {
    background-color: #371167 !important;
}

main {
    flex: 1;
}

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

/* =================================================================
   CONTAINER & LAYOUT UTILITIES
   ================================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.section {
    padding: 100px 0;
    background-color: var(--soft-lavender);
}

.section:nth-of-type(even) {
    background-color: var(--white);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-purple);
}

p {
    color: var(--text-dark);
}

.icon-accent, .purpose-card .program-icon i, .purpose-card .value-icon i, .testimonial-quote i, .footer-social i {
    color: var(--accent-violet);
}

h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

p {
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
}

a {
    text-decoration: none;
    color: var(--primary-purple);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-violet);
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 24px 0;
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    padding: 0 24px;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.logo img {
    height: 100px;
    margin-left: 5px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-violet);
    background-color: rgba(140, 58, 222, 0.12);
}

.nav-link.active,
.mobile-nav-link.active {
    background: rgba(140, 58, 222, 0.2);
    color: var(--primary-purple);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.35rem;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-violet);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background-color: var(--primary-purple);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    margin: 0.25rem 1rem;
}

.mobile-nav-link:hover {
    color: var(--primary-start);
    background-color: rgba(106, 17, 203, 0.1);
}

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero-section,
.about-hero,
.events-hero,
.team-hero,
.contact-hero,
.contact-hero-section,
.podcast-hero {
    position: relative;
    min-height: calc(60vh);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 90px;
    overflow: hidden;
    background-color: #371167;
    background-image: linear-gradient(145deg, rgba(55,17,103,0.95), rgba(140,58,222,0.4)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    transition: all 0.2s ease-in-out;
    z-index: 0;
}

.hero-section::before,
.about-hero::before,
.events-hero::before,
.team-hero::before,
.contact-hero-section::before,
.podcast-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(55,17,103,0.75), rgba(55,17,103,0.35));
    z-index: 1;
    pointer-events: none;
}
.hero-section > *,
.about-hero > *,
.events-hero > *,
.team-hero > *,
.contact-hero-section > *,
.podcast-hero > * {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.hero-section::before,
.about-hero::before,
.events-hero::before,
.team-hero::before,
.contact-hero::before,
.contact-hero-section::before,
.podcast-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(55,17,103,0.65) 0%, rgba(140,58,222,0.32) 42%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-section > *,
.about-hero > *,
.events-hero > *,
.team-hero > *,
.contact-hero-section > *,
.podcast-hero > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        padding-top: calc(var(--header-height) + 16px);
        min-height: calc(68vh);
    }
}

@media (max-width: 768px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        padding-top: calc(var(--header-height) + 14px);
        min-height: calc(72vh);
    }
}

@media (max-width: 480px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        padding-top: calc(var(--header-height) + 12px);
        min-height: calc(76vh);
    }
}

.hero-section h1,
.hero-section p,
.about-hero h1,
.about-hero p,
.events-hero h1,
.events-hero p,
.team-hero h1,
.team-hero p,
.contact-hero-section h1,
.contact-hero-section p,
.podcast-hero h1,
.podcast-hero p {
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.internal-page section {
    background: linear-gradient(220deg, rgba(236,234,254,0.56), rgba(140,58,222,0.12)), var(--soft-lavender);
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--accent-violet);
    border: 2px solid var(--accent-violet);
}

.internal-page .btn-primary,
.internal-page .btn-secondary,
.internal-page i {
    color: var(--accent-violet);
}

.internal-page .btn-primary:hover,
.internal-page .btn-secondary:hover {
    box-shadow: var(--shadow-md);
}

.section-overlay {
    position: relative;
    background: linear-gradient(220deg, rgba(236,234,254,0.35), rgba(140,58,222,0.08)), var(--soft-lavender);
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(140,58,222,0.16), rgba(55,17,103,0.12));
    pointer-events: none;
    z-index: 0;
}

.section-overlay > .container,
.section-overlay > * {
    position: relative;
    z-index: 1;
}

.card-depth,
.event-card,
.podcast-card,
.purpose-card,
.goal-card,
.team-member,
.contact-form,
.contact-info-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(55,17,103,0.14);
    border: 1px solid rgba(140,58,222,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-depth:hover,
.event-card:hover,
.podcast-card:hover,
.purpose-card:hover,
.goal-card:hover,
.team-member:hover,
.contact-form:hover,
.contact-info-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(55,17,103,0.2);
    border-color: rgba(140,58,222,0.35);
}

.event-card .event-meta,
.purpose-card h3,
.team-member .team-role,
.contact-info-item h3 {
    color: var(--accent-violet);
    font-weight: 700;
    letter-spacing: 0.4px;
}

.hero-section {
    padding-top: 15vh;
    padding-bottom: 15vh;
    min-height: auto;
}

.section-overlay {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translateZ(0);
}

@media (max-width: 1024px) {
    .hero-background {
        background-position: center top;
    }

    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-background {
        background-position: center center;
    }

    .hero-section {
        min-height: 70vh;
        padding-top: 95px;
        padding-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-background {
        background-position: 50% 30%;
    }

    .hero-section {
        min-height: 65vh;
        padding-top: 80px;
        padding-bottom: 2.5rem;
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.8) 0%, rgba(37, 117, 252, 0.8) 100%);
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: left;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-content {
    max-width: 600px;
    width: 100%;
}

.hero-container h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-align: left;
}

.hero-gradient-title {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F1F5F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    text-align: left;
    color: #CBD5E1;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 2.25rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: 110vh;
        padding-top: 130px;
        padding-bottom: 4.5rem;
    }

    .hero-container {
        padding: 0 36px;
    }

    .hero-buttons {
        gap: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 130vh;
        padding-top: 130px;
        padding-bottom: 4.5rem;
    }

    .hero-container {
        padding: 0 20px;
        justify-content: flex-start;
        text-align: left;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-container h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.28;
        margin-bottom: 1.8rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 25px;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        min-width: 130px;
        width: auto;
        font-size: 0.88rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 150vh;
        padding-top: 110px;
        padding-bottom: 4rem;
    }

    .hero-container {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-container h1 {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
        line-height: 1.34;
        margin-bottom: 1.8rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
        margin-bottom: 2.2rem;
        line-height: 1.9;
    }

    .hero-buttons {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        min-width: 100px;
        width: 100%;
        max-width: 280px;
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 14px);
    }
}


/* =================================================================
   ABOUT HERO SECTION
   ================================================================= */

.about-hero,
.events-hero,
.team-hero,
.contact-hero {
    background: transparent;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.about-hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
}

/* PODCAST-INSPIRED SHARED PAGE THEME - replaced by .internal-page and .hero-section / .section-overlay rules */

/* consistent call-to-action style for category badges */
.event-social a,
.about-block .card-icon-container i,
.contact-info-icon i {
    color: var(--accent-violet) !important;
}

/* =================================================================
   BUTTONS
   ================================================================= */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--accent-violet);
}

.btn-secondary:hover {
    color: var(--white);
    background-color: var(--accent-violet);
    border-color: var(--accent-violet);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-violet);
    border: 2px solid var(--accent-violet);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* =================================================================
   SECTION SUBTITLE (مشترك)
   ================================================================= */

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 1.8rem;
    font-size: 1rem;
}

/* =================================================================
   PURPOSE SECTION (Mission & Vision)
   ================================================================= */

.purpose-section {
    background-color: var(--white);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: var(--space-2xl);
}

.purpose-card {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.purpose-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-violet);
}

.purpose-card h3 {
    color: var(--primary-purple);
    margin-bottom: var(--space-lg);
    font-size: 1.4rem;
}

.purpose-card p {
    line-height: 1.7;
    margin: 0;
}

/* =================================================================
   WHO WE ARE - 50/50 SPLIT
   ================================================================= */

.split-section {
    background-color: var(--white);
}

.about-section {
    background-color: var(--white);
}

.testimonials-section {
    background-color: var(--white);
}

.testimonials-slider-wrapper {
    overflow: hidden;
    margin-top: var(--space-lg);
    padding: 0 8px;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: clamp(260px, 30%, 30%);
    max-width: 350px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    cursor: grab;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    scroll-snap-align: center;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 117, 252, 0.22);
    border-color: rgba(37, 117, 252, 0.45);
}

.testimonial-card:active {
    transform: translateY(-2px) scale(1.01);
}

.testimonial-profile {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--space-sm);
    border: 2px solid var(--primary-start);
}

.testimonial-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(140, 58, 222, 0.15);
    color: var(--accent-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.testimonial-card.active {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 34px rgba(37, 117, 252, 0.26);
    border-color: var(--primary-end);
}

.testimonial-role {
    font-weight: 600;
    color: var(--primary-start);
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    min-height: 96px;
}

.testimonial-stars {
    color: #f2b01e;
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.testimonial-dots {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-light);
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-start);
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: 72%;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0 4px;
    }

    .testimonials-slider {
        gap: 12px;
    }

    .testimonial-card {
        min-width: 88%;
        padding: 18px;
    }
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.split-text {
    padding-right: var(--space-2xl);
}

.split-text h2 {
    text-align: left;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.split-text > p {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.split-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.05);
}

/* =================================================================
   PROGRAMS / WHAT WE DO
   ================================================================= */

.programs-section {
    background-color: var(--light-bg);
}

.programs-section .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: var(--space-2xl);
}

.program-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.program-card:hover {
    border-color: var(--primary-start);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.program-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    border-radius: 12px;
    color: var(--primary-start);
    font-size: 2rem;
}

.program-card h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-primary);
}

.program-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* =================================================================
   EVENTS & ACTIVITIES
   ================================================================= */

.events-activities-section {
    background-color: var(--light-bg);
}

.events-slider {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.events-slider .event-card {
    flex: 0 0 100%;
    min-width: 100%;
}

@media (min-width: 769px) {
    .events-slider .event-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }
}

@media (min-width: 1025px) {
    .events-slider .event-card {
        flex: 0 0 calc((100% - 60px) / 4);
        min-width: calc((100% - 60px) / 4);
    }
}

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

.event-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.event-card.active-event {
    box-shadow: 0 10px 18px rgba(37, 117, 252, 0.17);
    border-color: rgba(37, 117, 252, 0.55);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-start);
}

.event-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 16px 20px 0;
}

.event-card .card-category {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 0;
    white-space: nowrap;
}

.event-card .event-date {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.event-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 12px 20px 8px;
    padding: 0;
}

.event-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 20px 16px;
    padding: 0;
    flex-grow: 1;
    font-size: 0.95rem;
}

.card-date {
    display: none;
}

.card-btn {
    margin-top: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 16px;
    align-self: flex-start;
    color: var(--primary-start);
    font-weight: 700;
    text-decoration: none;
    padding: 10px 16px;
    border: 2px solid var(--primary-start);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.card-btn:hover {
    color: var(--white);
    background: var(--primary-start);
    transform: translateX(4px);
}

/* =================================================================
   EVENTS SLIDER
   ================================================================= */

.events-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-2xl);
    padding: 0 var(--space-lg);
}

.events-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: var(--space-lg);
    padding: 0 var(--space-lg);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.slider-nav:hover {
    background: var(--primary-end);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-nav.prev {
    left: var(--space-sm);
}

.slider-nav.next {
    right: var(--space-sm);
}

/* =================================================================
   VALUES SECTION (retained core grid styles only)
   ================================================================= */

.values-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 0;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.values-grid::-webkit-scrollbar {
  height: 6px;
}

.values-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.values-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.3), rgba(37, 117, 252, 0.3));
  border-radius: 10px;
}

.values-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.6), rgba(37, 117, 252, 0.6));
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: var(--white);
  font-size: 1.5rem;
}

.value-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.value-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: calc(16px + 40px);
    gap: 14px;
  }
  .our-values-block {
    padding: 28px;
    margin-bottom: 36px;
  }
}

/* =================================================================
   TEAM SECTION
   ================================================================= */

.team-section {
    background-color: var(--light-bg);
}

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

.team-member {
    padding: 1.5rem;
    text-align: center;
}

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-start);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
}

/* =================================================================
   PODCAST SECTION
   ================================================================= */

.podcast-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.podcast-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.podcast-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-image img {
    transform: scale(1.05);
}

.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-card:hover .podcast-overlay {
    opacity: 1;
}

.podcast-content {
    padding: 1.5rem;
}

.podcast-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.podcast-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.podcast-mission {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.mission-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* =================================================================
   CONTACT SECTION
   ================================================================= */

.contact-section {
    background-color: var(--white);
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-card p {
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-start);
    font-weight: 600;
}

.contact-form {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.contact-form .form-row {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    background-color: #f8fafc;
    color: #1e293b;
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-violet);
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 58, 222, 0.15);
}

/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
    background-color: var(--primary-purple);
    color: var(--soft-lavender);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 24px;
    margin-bottom: var(--space-2xl);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: 0.3px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-logo span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--primary-start);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.footer-links a,
.footer-contact a {
    color: #cbd5e1;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact i {
    width: 20px;
    margin-right: var(--space-sm);
    color: var(--primary-start);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    padding-top: var(--space-md);
}

@media (max-width: 768px) {
    .footer-content {
        display: block;
        text-align: left;
    }

    .footer-column {
        width: 100%;
        margin-bottom: var(--space-lg);
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: var(--space-sm);
    }

    .footer-copyright {
        text-align: left;
    }
}

/* =================================================================
   ABOUT PAGE - MODERN DESIGN SECTIONS
   ================================================================= */


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease both;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.15s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.30s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.45s;
}


.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 0.5rem;
    color: var(--primary-start);
}

.section-header .section-intro {
    margin-bottom: var(--space-2xl);
}

/* Grid Layouts for Delivery */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.delivery-card,
.value-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delivery-card:nth-child(1) { animation-delay: 0.1s; }
.delivery-card:nth-child(2) { animation-delay: 0.2s; }
.delivery-card:nth-child(3) { animation-delay: 0.3s; }
.delivery-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.delivery-card:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-start);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.delivery-card h3,
.value-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: 0;
}

.delivery-card p,
.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto var(--space-3xl) auto;
    text-align: center;
    line-height: 1.8;
}

.story-timeline {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-2xl);
    padding: 0.25rem 0 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.story-timeline::before {
    display: none;
}

.timeline-item {
    min-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-start);
}

.timeline-marker {
    width: 62px;
    height: 62px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
}


.timeline-item:hover .timeline-marker {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.4);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: 0;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Mission & Vision Section */
.about-mission-vision {
    background-color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.mv-card {
    padding: var(--space-2xl);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08) 0%, rgba(37, 117, 252, 0.04) 100%);
    border-color: rgba(106, 17, 203, 0.2);
}

.vision-card {
    background: linear-gradient(135deg, rgba(37, 117, 252, 0.08) 0%, rgba(106, 17, 203, 0.04) 100%);
    border-color: rgba(37, 117, 252, 0.2);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(106, 17, 203, 0.15);
    border-color: var(--primary-start);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
}

.mv-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    margin-top: 0;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Core Goals Section */
.about-goals-section {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.02) 0%, rgba(37, 117, 252, 0.02) 100%);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.goal-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
    justify-content: space-between;
}

.goal-card:hover {
    border-color: var(--primary-start);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
    transform: translateY(-8px);
}

.goal-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.goal-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.4;
}

.goal-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--space-lg) 0;
    flex-grow: 1;
}

.goal-icon {
    font-size: 2.5rem;
    color: var(--primary-start);
    margin-top: auto;
    opacity: 0.3;
}

/* Implementation Mechanisms Section */
.about-implementation-section {
    background-color: var(--white);
}

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.implementation-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(106, 17, 203, 0.02) 100%);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.implementation-item:hover {
    border-color: var(--primary-start);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.1);
    transform: translateY(-6px);
}

.impl-step {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.implementation-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
}

.implementation-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 var(--space-lg) 0;
}

.impl-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.impl-features span {
    display: inline-block;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    color: var(--primary-start);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

/* Core Values Section */
.about-values-section {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.03) 0%, rgba(37, 117, 252, 0.03) 100%);
}

.values-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--primary-start);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-start);
}

.cta-buttons .btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* =================================================================
   RESPONSIVE - TABLET (1024px)
   ================================================================= */

@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding: 80px 0;
    }

    .header-container {
        gap: var(--space-lg);
        padding: 0 20px;
    }

    .logo img {
        height: 70px;
    }

    /* إخفاء النافبار وإظهار الهامبرغر */
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    /* الأقسام */
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        gap: 18px;
    }

    .value-item {
        min-width: 240px;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .split-text {
        padding-right: 0;
    }

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

    .programs-section .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        padding: 0 40px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .podcast-section {
        padding: 80px 0;
    }

    .podcast-mission {
        padding: 60px 0;
    }

    /* About Page Responsive - Tablet */
    .story-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .story-timeline::before {
        display: none;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .goals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .goal-card {
        min-height: auto;
        padding: var(--space-xl);
    }

    .implementation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .values-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .cta-buttons {
        gap: var(--space-md);
    }

    /* About Page Responsive - Tablet */
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .delivery-card,
    .value-card {
        padding: var(--space-lg);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Story Section Responsive - Tablet */
    .story-part {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .story-left .story-content,
    .story-left .story-image,
    .story-right .story-content,
    .story-right .story-image {
        order: unset;
    }

    .story-content h3 {
        font-size: 1.8rem;
    }

    .story-bullets li {
        font-size: 1rem;
    }
}

/* =================================================================
   RESPONSIVE - MOBILE (768px)
   ================================================================= */

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: var(--space-xl);
    }

    .site-header {
        height: 60px;
        padding: 0;
    }

    .header-container {
        gap: var(--space-md);
        padding: 0 16px;
    }

    .logo img {
        height: 50px;
    }

    .mobile-menu {
        top: 60px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: var(--space-xl);
        min-height: 70vh;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-container h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-card {
        padding: var(--space-lg);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .split-image {
        border-radius: 16px;
    }

    .programs-section .programs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card {
        padding: 20px;
    }

    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .slider-nav {
        display: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-member {
        padding: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .podcast-section {
        padding: 60px 0;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .podcast-image {
        height: 180px;
    }

    .podcast-mission {
        padding: 40px 0;
    }

    .mission-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 16px;
    }

    .footer-column h4 {
        margin-bottom: var(--space-md);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* About Page Responsive - Mobile */
    .story-timeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
        margin: 0;
    }

    .timeline-item {
        min-width: auto;
        width: 100%;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    /* About Page Responsive - Mobile */
    .delivery-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .delivery-card,
    .value-card {
        padding: var(--space-md);
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
    }

    .delivery-card h3,
    .value-card h3 {
        font-size: 1.1rem;
    }

    .delivery-card p,
    .value-card p {
        font-size: 0.9rem;
    }

    /* Story Section Responsive - Mobile */
    .story-part {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .story-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .story-bullets li {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .story-bullets li::before {
        font-size: 1.2rem;
    }
}

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: var(--space-xl);
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .goal-card {
        padding: var(--space-lg);
        min-height: auto;
    }

    .goal-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .goal-card h3 {
        font-size: 1.05rem;
    }

    .goal-card p {
        font-size: 0.85rem;
    }

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

    .implementation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .impl-step {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .implementation-item h3 {
        font-size: 1.1rem;
    }

    .values-card-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .value-card {
        padding: var(--space-lg);
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cta-buttons .btn {
        width: 100%;
    }

/* =================================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ================================================================= */

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section {
        padding: 40px 0;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: var(--space-lg);
    }

    h3 {
        font-size: 1rem;
    }

    .site-header {
        height: 56px;
    }

    .header-container {
        padding: 0 12px;
    }

    .logo img {
        height: 42px;
    }

    .mobile-menu {
        top: 56px;
    }

    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }

    .hero-section {
        padding-top: 80px;
        padding-bottom: var(--space-lg);
        min-height: 60vh;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-container h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .purpose-card {
        padding: 20px;
    }

    .purpose-card h3 {
        font-size: 1.2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .value-card {
        padding: var(--space-md);
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: var(--space-md);
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .program-card {
        padding: 16px;
        gap: var(--space-md);
    }

    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .program-card h3 {
        font-size: 1.05rem;
    }

    .program-card p {
        font-size: 0.85rem;
    }

    .event-card {
        padding: 16px;
    }

    .event-card h3 {
        font-size: 1.05rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-member {
        padding: 0.75rem;
    }

    .team-member h3 {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .podcast-section {
        padding: 40px 0;
    }

    .podcast-image {
        height: 160px;
    }

    .podcast-content {
        padding: 1rem;
    }

    .podcast-content h3 {
        font-size: 1.1rem;
    }

    .podcast-description {
        font-size: 0.85rem;
    }

    .podcast-mission {
        padding: 30px 0;
    }

    .mission-content h2 {
        font-size: 1.4rem;
    }

    .mission-content p {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: var(--space-xs);
        font-size: 0.85rem;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    /* About Page Responsive - Small Mobile */
    .story-timeline {
        gap: var(--space-md);
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: var(--space-md);
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .mv-card {
        padding: var(--space-lg);
    }

    .mv-card h3 {
        font-size: 1.4rem;
    }

    .mv-card p {
        font-size: 0.9rem;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .goal-card {
        padding: var(--space-md);
    }

    .goal-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .goal-card h3 {
        font-size: 0.95rem;
    }

    .goal-card p {
        font-size: 0.8rem;
    }

    .implementation-item {
        padding: var(--space-lg);
    }

    .impl-step {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .implementation-item h3 {
        font-size: 1rem;
    }

    .implementation-item p {
        font-size: 0.85rem;
    }

    .impl-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .value-card {
        padding: var(--space-md);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: var(--space-md);
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .about-highlight-list li {
        padding: var(--space-md);
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* About Page Responsive - Small Mobile */
    .delivery-grid,
    .values-grid {
        gap: var(--space-sm);
    }

    .delivery-card,
    .value-card {
        padding: var(--space-sm);
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .delivery-card h3,
    .value-card h3 {
        font-size: 1rem;
    }

    .delivery-card p,
    .value-card p {
        font-size: 0.85rem;
    }

    /* Story Section Responsive - Small Mobile */
    .story-part {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .story-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .story-bullets li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .story-bullets li::before {
        font-size: 1rem;
    }
}

/* =================================================================
   LANDSCAPE MOBILE FIX
   ================================================================= */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-container h1 {
        font-size: 1.8rem;
    }
}

/* =================================================================
   ABOUT SECTION STYLES
   ================================================================= */

/* About Us Section CSS */
.about-section {
  padding: 90px 0 70px;
  background: #f8fafc;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-block {
  margin-bottom: 64px;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-block {
    padding: 32px;
    margin-bottom: 58px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0 40px;
  }

  .about-block {
    margin-bottom: 48px;
    padding: 24px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.story-item:hover {
  transform: translateX(8px);
}

.story-icon {
  font-size: 2rem;
  color: #6a11cb;
  min-width: 50px;
}

.story-content h3 {
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.story-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}

.mission-card, .vision-card {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
}

.card-icon {
  font-size: 3rem;
  color: #2575fc;
  margin-bottom: 20px;
}

.mission-card p, .vision-card p {
  font-size: 1.2rem;
  color: #2d3748;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.goal-item {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #6a11cb;
  transition: transform 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-4px);
}

.goal-number {
  font-size: 2rem;
  font-weight: 700;
  color: #6a11cb;
  margin-bottom: 12px;
}

.goal-item h4 {
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.goal-item p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}

.mechanisms-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
}

.step-icon {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 16px;
}

.step-item h4 {
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}



/* Responsive Design */
@media (max-width: 768px) {
  .about-block {
    padding: 24px;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .goals-list, .mechanisms-steps, .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-card, .vision-card {
    padding: 24px;
  }

  .card-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-block {
    padding: 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ==========================================
   WHO WE ARE + OUR STORY IMPROVEMENTS
   ========================================== */

.who-we-are-block,
.our-story-block {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.15);
  max-width: 980px;
  margin: 0 auto 48px auto;
}

.who-we-are-block .section-title,
.our-story-block .section-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.who-we-are-text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
}

.story-simple {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.72;
}

.story-simple p {
  margin: 0 0 14px;
}

.story-simple p:last-child {
  margin-bottom: 0;
}

.story-simple .story-part {
  margin-bottom: 20px;
}

.story-simple h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .story-simple {
    font-size: 1.03rem;
  }

  .who-we-are-block,
  .our-story-block {
    padding: 30px;
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .story-simple {
    font-size: 1rem;
  }

  .who-we-are-block,
  .our-story-block {
    padding: 24px;
    margin-bottom: 30px;
  }

  .who-we-are-text {
    font-size: 1rem;
  }
}

/* =================================================================
   ABOUT PAGE SPECIFIC STYLES - ENHANCED
   ================================================================= */

/* Integrated Purpose & Story Sliding Section */
.integrated-sliding-section {
  margin-bottom: 100px;
  padding: 60px 0;
  text-align: center;
}

.section-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 50px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sliding Square Grid Container */
.sliding-square-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sliding Card Base Styles */
.sliding-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: default;
  overflow: hidden;
  position: relative;
}

.sliding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.05), rgba(37, 117, 252, 0.05));
  transition: left 0.5s ease;
  z-index: 0;
}

.sliding-card:hover::before {
  left: 0;
}

.sliding-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.sliding-card .card-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.15), rgba(37, 117, 252, 0.15));
  border-radius: 50%;
  font-size: 36px;
  color: var(--primary-start);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.sliding-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sliding-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Sliding Animation - Slide In Effect */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered slide-in animation for each card */
.slide-in-card {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-card[data-slide-index="0"].animated {
  animation: slideInLeft 0.6s ease-out 0.2s forwards;
}

.slide-in-card[data-slide-index="1"].animated {
  animation: slideInLeft 0.6s ease-out 0.4s forwards;
}

.slide-in-card[data-slide-index="2"].animated {
  animation: slideInLeft 0.6s ease-out 0.6s forwards;
}

/* Mobile Responsiveness for Sliding Section */
@media (max-width: 768px) {
  .integrated-sliding-section {
    padding: 40px 0;
    margin-bottom: 60px;
  }

  .section-subtitle {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .sliding-square-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .sliding-card {
    padding: 30px;
    aspect-ratio: auto;
    min-height: 300px;
  }

  .sliding-card .card-icon-container {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .sliding-card h3 {
    font-size: 1.2rem;
  }

  .sliding-card p {
    font-size: 0.95rem;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .sliding-square-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sliding-card {
    padding: 20px;
    min-height: 250px;
    border-radius: 16px;
  }

  .sliding-card .card-icon-container {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .sliding-card h3 {
    font-size: 1.1rem;
  }

  .sliding-card p {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

/* Icon Container Standardization (55px) */
.card-icon-container,
.story-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
  border-radius: 12px;
  margin: 0 auto 20px auto;
  font-size: 28px;
  color: var(--primary-start);
  flex-shrink: 0;
}

.value-card .card-icon-container,
.mechanism-card .card-icon-container {
  margin-bottom: 16px;
}

/* Purpose Cards - Side by Side */
.purpose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.purpose-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-top: 4px solid var(--primary-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.purpose-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purpose-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Goals Grid - Square Row Layout */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.goal-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid var(--primary-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.goal-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.goal-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.goal-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mechanisms Grid - Square Row Layout */
.mechanisms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.mechanism-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.mechanism-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mechanism-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Values Horizontal Scroll Section */
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 220px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-start);
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Story Timeline Enhancement */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.05), rgba(37, 117, 252, 0.05));
  border-radius: 12px;
  border-left: 4px solid var(--primary-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.story-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.story-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section Title Gradient */
.section-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .purpose-cards,
  .goals-grid,
  .mechanisms-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-item {
    flex-direction: column;
    gap: 15px;
  }

  .story-icon-container {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0;
  }

  .card-icon-container {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 auto 15px auto;
  }

  .purpose-card,
  .goal-card,
  .mechanism-card,
  .value-card {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .purpose-card,
  .goal-card,
  .mechanism-card,
  .value-card {
    padding: 16px;
  }

  .card-icon-container,
  .story-icon-container {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .goal-number {
    font-size: 1.75rem;
  }

  .purpose-card h3,
  .goal-card h3,
  .mechanism-card h3,
  .value-card h3 {
    font-size: 1.1rem;
  }
}

/* =================================================================
   Our Team Interactive Cards
   ================================================================= */
.team-hero {
    padding: 100px 1rem 40px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}
.team-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    font-weight: 800;
}
.team-hero p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin: 0 auto;
    max-width: 760px;
    line-height: 1.5;
    opacity: 0.95;
}
.team-section {
    padding: 60px 1rem 100px;
    background: #f8fafc;
}
.team-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 2.25rem;
}
.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(37, 53, 81, 0.08);
    overflow: hidden;
    padding: 1.75rem 1.25rem 1.5rem;
    transition: all 0.4s ease-in-out;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}
.team-info-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    top: auto;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106,17,203,0.95), rgba(37,117,252,0.95));
    color: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(37, 117, 252, 0.3);
    transition: all 0.4s ease-in-out;
}
.team-photo-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    border: 2px solid #6a11cb;
}
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card-body h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    color: #0f172a;
}
.team-role {
    color: #4b5563;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    font-weight: 500;
}
.team-info-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106,17,203,0.95), rgba(37,117,252,0.95));
    color: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(37, 117, 252, 0.3);
    transition: transform 0.2s ease;
}
.team-info-btn:hover,
.team-info-btn:focus {
    transform: scale(1.08);
    outline: none;
}
.team-bio {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0.9rem;
    padding: 0 0.25rem;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}
.team-bio.active {
    max-height: 350px;
    opacity: 1;
}
.team-bio p {
    margin: 0.45rem 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
}
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .team-section {
        padding: 80px 1rem 100px;
    }
}
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .team-section {
        padding: 100px 1rem 120px;
    }
}


/* =================================================================
   Events Page Cards
   ================================================================= */
.events-hero {
    text-align: center;
    color: #fff;
    padding: 90px 0 60px;
    min-height: 65vh;
}
.events-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.6rem;
}
.events-hero p {
    color: #e2e8f0;
    margin: 0 auto;
    max-width: 760px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}
.events-page {
    padding: 0;
    background-color: var(--light-bg);
}
.events-page > .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.events-page .section {
    padding: 100px 0;
    background-color: var(--soft-lavender);
}
.events-page .section-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}
.event-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid rgba(37, 53, 81, 0.08);
    transition: all 0.4s ease-in-out;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}
.event-image {
    height: 220px;
    overflow: hidden;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem 0;
    gap: 0.7rem;
}
.event-date,
.event-category {
    font-size: 0.88rem;
    font-weight: 600;
}
.event-date {
    color: #64748b;
}
.event-category {
    color: #fff;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
}
.event-card h3 {
    margin: 0.65rem 1rem 0.5rem;
    font-size: 1.25rem;
    color: #0f172a;
}
.event-card p {
    margin: 0 1rem 1rem;
    color: #475569;
    line-height: 1.5;
    font-size: 0.95rem;
}
.event-social {
    display: flex;
    gap: 0.6rem;
    padding: 0 1rem 1rem;
}
.event-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106,17,203,0.2), rgba(37,117,252,0.2));
    color: #4f46e5;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    font-size: 1rem;
}
.event-social a:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #ffffff;
    transform: translateY(-2px);
}
@media (min-width: 768px) {
    .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .events-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

body.events-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--light-bg);
    padding-top: 0;
}

body.events-page main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: var(--header-height);
}

body.events-page main > section {
    flex: 1;
    min-height: 0;
    margin-top: 0;
}

body.events-page .site-footer {
    margin-top: auto;
}

.events-page {
    margin-bottom: 0;
    flex: 1;
    min-height: 0;
    padding-bottom: 60px;
}

.events-page .events-hero {
    min-height: 65vh;
    padding-top: 30px;
    padding-bottom: 60px;
    margin-top: 0;
}




/* =================================================================
   EVENTS PAGE - SQUARE GRID CARD LAYOUT
   ================================================================= */
.events-hero {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.9), rgba(37, 117, 252, 0.9));
    color: #ffffff;
    padding: 90px 0 60px;
    text-align: center;
}
.events-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}
.events-hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 680px;
    margin: 0 auto;
}
.events-page {
    background-color: var(--light-bg);
    padding: 60px 0 80px;
    margin-bottom: 0;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 16px;
}
.event-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.85);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.14);
}
.event-image {
    width: 100%;
    min-height: 150px;
    overflow: hidden;
    position: relative;
}
.event-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.event-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 14px 18px 0;
}
.event-date {
    color: #8491a6;
    font-weight: 500;
    font-size: 0.92rem;
}
.event-category {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.event-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 12px 18px 8px;
}
.event-card p {
    color: #64748b;
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0 18px 16px;
}
.event-social {
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    padding: 12px 18px;
    display: flex;
    justify-content: center;
    gap: 14px;
}
.event-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.event-social a:hover {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.28);
}
.event-social i {
    font-size: 1rem;
}

@media screen and (max-width: 980px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .header-container {
        padding: 0 16px;
    }
    .event-image img {
        height: 200px;
    }
    .events-hero {
        padding: 70px 0 40px;
    }
    .events-hero h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 72px;
    }
    .event-card {
        border-radius: 16px;
    }
    .event-card h3 {
        font-size: 1.1rem;
    }
    .event-card p {
        font-size: 0.95rem;
    }
}




/* Responsive adjustments for event cards */
@media (max-width: 768px) {
    .event-image {
        height: 160px;
    }
    
    .event-meta {
        padding: 12px 16px 0;
        gap: 6px;
    }
    
    .event-card .card-category {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .event-card .event-date {
        font-size: 0.85rem;
    }
    
    .event-card h3 {
        font-size: 1.1rem;
        margin: 10px 16px 6px;
    }
    
    .event-card p {
        margin: 0 16px 12px;
        font-size: 0.9rem;
    }
    
    .card-btn {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 12px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .event-image {
        height: 140px;
    }
    
    .event-meta {
        padding: 10px 12px 0;
    }
    
    .event-card .card-category {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .event-card h3 {
        font-size: 1rem;
        margin: 8px 12px 4px;
    }
    
    .event-card p {
        margin: 0 12px 10px;
        font-size: 0.88rem;
    }
    
    .card-btn {
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 10px;
        padding: 7px 12px;
        font-size: 0.8rem;
    }
}
/* Override animations for values-section cards */
.values-section .value-card:nth-child(1),
.values-section .value-card:nth-child(2),
.values-section .value-card:nth-child(3),
.values-section .value-card:nth-child(4) {
    animation: none;
    opacity: 1;
    transform: none;
}

/* Contact Page Specific Styles */
.contact-hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 150px 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.8) 0%, rgba(37, 117, 252, 0.8) 100%);
}

.contact-hero-section h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.contact-hero-section .hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.contact-details-form-section {
  background-color: var(--white);
  padding: 100px 0;
}

.contact-details-form-container {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(220px, 1fr);
  gap: 60px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .contact-details-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-section {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #f8fafc;
  color: #2d3748;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8C3ADE 0%, #371167 100%);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(140,58,222,0.3);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-info-content p {
  margin: 0;
  color: var(--text-secondary);
}

.office-hours-card {
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.office-hours-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.office-hours-card p {
  margin: 0 0 8px 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-details-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-section {
    padding: 120px 0;
  }

  .contact-hero-section h1 {
    font-size: 2.5rem;
  }

  .contact-hero-section .hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-details-form-section {
    padding: 60px 0;
  }

  .contact-info-list {
    gap: 20px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    padding: 100px 0;
  }

  .contact-hero-section h1 {
    font-size: 2rem;
  }

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

  .contact-details-form-section {
    padding: 40px 0;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .contact-form .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .office-hours-card {
    padding: 20px;
  }
}



