/* ===============================
   GLOBAL VARIABLES
================================ */

:root {
    --green-deep:    #1a3a2a;
    --green-mid:     #2d6a4f;
    --green-light:   #52b788;
    --gold:          #c9973a;
    --gold-pale:     #f5e6c8;
    --cream:         #faf8f4;
    --ink:           #1e1e1e;
    --muted:         #6b7a72;
    --rule:          rgba(45,106,79,0.15);
    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Jost', sans-serif;
    
    /* region colours */
    --ca: #4e9a6e;
    --ea: #2d6a4f;
    --na: #c9973a;
    --sa: #7b4ea6;
    --wa: #c0562d;
}

/* ===============================
   BASE & UTILITIES
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

section { padding: 2rem 0; }

/* ===============================
   PAGE HERO
================================ */
.page-hero {
    background: linear-gradient(rgba(11, 94, 63, 0.85), rgba(11, 94, 63, 0.85)), url('../img/slider1.png') center/cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-hero p { opacity: 0.9; }

/* ===============================
   STAFF SECTION
================================ */
.staff-section { padding: 4rem 0; }
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: #f5f7f6;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.staff-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    border: 4px solid #e6efe9;
}

.staff-card h3 {
    margin-top: 0.8rem;
    font-size: 1.1rem;
    color: var(--green-deep);
}

.staff-card p {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin-top: 4px;
}

.staff-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #333;
}

.staff-meta img {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.staff-socials {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.staff-socials a {
    width: 34px;
    height: 34px;
    background: #eef5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--green-deep);
    transition: 0.3s;
}

.staff-socials a:hover {
    background: var(--green-deep);
    color: white;
}
.role-main {
    font-weight: 600;
    font-size: 0.95rem;
}

.role-sub {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}

/* Hero section */
.about-hero {
    background: 
        linear-gradient(rgba(45,106,79,0.6), rgba(45,106,79,0.6)),
        url('../img/slider1.png') center/cover no-repeat;
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}
.about-video {
    padding: 2.5rem 0;
    display: flex;
    justify-content: center;
}
/* controls size */
.video-wrapper {
    width: 100%;
    max-width: 800px;   
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}
/* ===============================
   OBJECTIVES SECTION
================================ */
.about-objectives {
    position: relative;
    padding: 6rem 0;
    background:
        radial-gradient(circle at top center, rgba(184, 145, 74, 0.06), transparent 30%),
        linear-gradient(to bottom, #fffdf9 0%, #ffffff 45%, #fcfcfa 100%);
    overflow: hidden;
}

/* Soft decorative background accents */
.about-objectives::before,
.about-objectives::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-objectives::before {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(31, 78, 61, 0.08), transparent 70%);
}

.about-objectives::after {
    width: 260px;
    height: 260px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(184, 145, 74, 0.08), transparent 70%);
}

/* Top decorative rule */
.about-objectives .section-header {
    position: relative;
    z-index: 1;
}

.about-objectives .section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 auto 1rem;
    width: 100%;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.1s;
}

.about-objectives .section-eyebrow::before,
.about-objectives .section-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(184, 145, 74, 0.45);
}

.about-objectives h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--green-deep);
    margin: 0 0 1rem;
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.2s;
}

.about-objectives h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 1.1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(to right, var(--gold), #d8b56a);
    box-shadow: 0 4px 14px rgba(184, 145, 74, 0.18);
}

.about-objectives .section-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.85;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.3s;
}

/* Grid */
.objectives-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Cards */
.objective-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem 1.7rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 78, 61, 0.08);
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.04),
        0 2px 8px rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(8px);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(184, 145, 74, 0.06),
        transparent 35%,
        rgba(31, 78, 61, 0.04)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.objective-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--gold), var(--green-mid));
    opacity: 0;
    transform: scaleY(0.4);
    transform-origin: top;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.objective-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 78, 61, 0.16);
    background: #ffffff;
    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.08),
        0 6px 18px rgba(15, 23, 42, 0.05);
}

.objective-card:hover::before {
    opacity: 1;
}

.objective-card:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

/* Icon */
.objective-icon {
    position: relative;
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f5f8f5, #eef4f0);
    border: 1px solid rgba(31, 78, 61, 0.09);
    color: var(--green-deep);
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.objective-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
}

.objective-card:hover .objective-icon {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(31, 78, 61, 0.18);
}

/* Text */
.objective-text {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.objective-text h4 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--green-deep);
    letter-spacing: -0.01em;
}

.objective-text p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 400;
    color: var(--muted);
    max-width: 48ch;
}

/* Staggered animation */
.objective-card:nth-child(1) {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.35s;
}
.objective-card:nth-child(2) {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.45s;
}
.objective-card:nth-child(3) {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.55s;
}
.objective-card:nth-child(4) {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 992px) {
    .about-objectives {
        padding: 5rem 0;
    }

    .objectives-grid {
        gap: 1.2rem;
    }

    .objective-card {
        padding: 1.7rem 1.4rem;
    }
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .about-objectives h2 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .about-objectives .section-intro {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .objective-card {
        gap: 1rem;
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    .objective-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .objective-text h4 {
        font-size: 1.1rem;
    }

    .objective-text p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .about-objectives {
        padding: 4rem 0;
    }

    .about-objectives .section-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }

    .objective-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .objective-text p {
        max-width: 100%;
    }
}
/* ===============================
   VMM SECTION (Vision, Mission, Motivation)
================================ */
.about-vmm {
    padding: 5rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.about-vmm::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(45, 106, 79, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Section Label ───────────────────────────────────────── */
.vmm-label {
    text-align: center;
    margin-bottom: 0.8rem;
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.1s;
}

.vmm-label span {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 151, 58, 0.4);
    padding: 6px 18px;
    border-radius: 2px;
}

.vmm-heading {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.2s;
}

.vmm-heading em {
    font-style: italic;
    color: var(--green-mid);
}

.vmm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vmm-card {
    background: #fff;
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    border-right: 1px solid var(--rule);
}

.vmm-card:last-child {
    border-right: none;
}

.vmm-card:hover {
    background: var(--cream);
    box-shadow: inset 0 -3px 0 var(--green-mid);
}

.vmm-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    transition: width 0.5s ease;
}

.vmm-card:hover::before {
    width: 100%;
}

.vmm-card-number {
    font-family: var(--font-serif);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.vmm-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef4f0;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: background 0.3s, border-color 0.3s;
}

.vmm-card:hover .vmm-icon-wrap {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

.vmm-icon {
    font-size: 1.8rem;
    color: var(--green-deep);
    transition: color 0.3s;
}

.vmm-card:hover .vmm-icon {
    color: #fff;
}

.vmm-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    line-height: 1;
}

.vmm-card h3::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.8rem;
    transition: width 0.4s ease;
}

.vmm-card:hover h3::after {
    width: 48px;
}

.vmm-card p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
    margin-top: 4px;
}

.vmm-card:nth-child(1) { animation: fadeUp 0.7s ease both; animation-delay: 0.35s; }
.vmm-card:nth-child(2) { animation: fadeUp 0.7s ease both; animation-delay: 0.5s;  }
.vmm-card:nth-child(3) { animation: fadeUp 0.7s ease both; animation-delay: 0.65s; }

@media (max-width: 860px) {
    .vmm-grid {
        grid-template-columns: 1fr;
    }

    .vmm-card {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .vmm-card:last-child {
        border-bottom: none;
    }

    .vmm-card {
        padding: 2rem 1.6rem;
    }
}/* VISUAL IMAGE SECTION */
.about-visual {
    padding: 2.5rem 0;
}

.visual-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

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

/* overlay */
.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: white;
}

.visual-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.visual-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}
@media (max-width: 768px) {

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .vmm-grid {
        grid-template-columns: 1fr;
    }

    .video-wrapper {
        max-width: 100%;
    }
}
/* VIDEO */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Thumbnail */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.play-button:hover {
    background: var(--green-mid);
}
/* ===============================
   HISTORY SECTION
================================ */
.history-title {
    padding: 1.5rem 0 0.5rem;
    text-align: center;
}

.history-title h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--green-deep);
    margin-bottom: 0;
}

.history-image-section img {
    width: 100%;
    display: block;
}

.history-video { padding: 3rem 0; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section { padding: 2rem 0 3rem; }

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

.contact-card {
    background: #f5f7f6;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card i {
    font-size: 2.5rem;
    color: #e0a82b;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    margin-bottom: 0.7rem;
    color: var(--green-deep);
}

.contact-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 4px 0;
}

.contact-map { padding-bottom: 3rem; }

.map-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.map-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ===============================
   GOVERNANCE SECTION
================================ */
.page-header {
    background: var(--green-deep);
    padding: 2rem 2rem 3.5rem;
    text-align: center;
    animation: fadeUp 0.6s ease both;
}

.page-header .eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.page-header p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 1.8rem;
    line-height: 1.75;
}

.header-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.header-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(201,151,58,0.4);
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.header-links a:hover { background: rgba(201,151,58,0.15); }

.header-links .divider {
    width: 1px;
    height: 24px;
    background: rgba(201,151,58,0.3);
    margin: 0 0.4rem;
}

.governance-image img {
    width: 100%;
    display: block;
}

/* ===============================
   HERO BANNER
================================ */
.hero {
    position: relative;
    background: var(--green-deep);
    overflow: hidden;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(82,183,136,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201,151,58,0.10) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(120deg, transparent 0px, transparent 38px, rgba(255,255,255,0.025) 38px, rgba(255,255,255,0.025) 39px);
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.6rem auto 0;
    position: relative;
    z-index: 1;
}

/* ===============================
   PROFILE CARD
================================ */
.page-body {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.profile-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(26,58,42,0.13);
    overflow: hidden;
}

.profile-accent {
    width: 8px;
    background: linear-gradient(180deg, var(--green-mid) 0%, var(--green-light) 100%);
    flex-shrink: 0;
}

.profile-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 2.8rem;
}

.profile-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.profile-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.55;
}

.profile-photo-wrap img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 4px 18px rgba(26,58,42,0.18);
}

.profile-text h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.85rem;
    color: var(--green-deep);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.profile-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.profile-divider {
    width: 36px;
    height: 1px;
    background: var(--rule);
    margin-bottom: 1.1rem;
}

.profile-greeting {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.55;
}
@media (max-width: 768px) {
    .region-tabs {
        top: 60px;
        position: relative;
        top: 0;
    }
}
/* ===============================
   MESSAGE SECTION
================================ */
.message-section { margin-top: 4rem; }

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-label span {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-mid);
    white-space: nowrap;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
}

.message-opener {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    font-weight: 500;
    color: var(--green-deep);
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2.8rem;
}

.message-body {
    column-count: 2;
    column-gap: 3rem;
    column-rule: 1px solid var(--rule);
}

.message-body p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: #3a3a3a;
    margin-bottom: 1.4rem;
    break-inside: avoid;
}

.signature-strip {
    margin-top: 3.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--green-deep) 0%, #234d38 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.sig-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201,151,58,0.25);
    border: 1px solid rgba(201,151,58,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sig-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.sig-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}

.sig-name {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-pale);
    margin-top: 0.2rem;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* ===============================
   MEMBER UNIVERSITIES
================================ */
:root {
    --ca: #e76f51;
    --ea: #2a9d8f;
    --na: #e9c46a;
    --sa: #457b9d;
    --wa: #6a994e;
}

/* ===============================
   PAGE HEADER (hero)
================================ */
.members-hero h1 {
    text-align: center;
}

.members-hero p {
    text-align: center;
    color: var(--gold);
}

/* ===============================
   REGION TABS
================================ */
.region-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(26,58,42,0.06);
}
.map-container {
    position: relative;
    z-index: 1;
}

#region-tabs {
    z-index: 5;
}
/* Fix nav dropdown z-index on map pages */
.nav-dropdown,
.lang-menu,
.nav-menu {
    z-index: 99999 !important;
}
#header {
    z-index: 1000;
}

.region-tabs {
    z-index: 50;
    top: 0;
    position: sticky;
}

.region-tab {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.region-tab:hover {
    border-color: var(--green);
    color: var(--green);
}

.region-tab.active {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: #fff;
}

.region-tab[data-region="Central Africa"].active  { background: var(--ca); border-color: var(--ca); }
.region-tab[data-region="Eastern Africa"].active  { background: var(--ea); border-color: var(--ea); }
.region-tab[data-region="North Africa"].active    { background: var(--na); border-color: var(--na); color: #333; }
.region-tab[data-region="Southern Africa"].active { background: var(--sa); border-color: var(--sa); }
.region-tab[data-region="West Africa"].active     { background: var(--wa); border-color: var(--wa); }

/* ===============================
   MAP + PANEL LAYOUT
================================ */
.map-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    min-height: 620px;
}

/* ===============================
   MAP CONTAINER
================================ */
.map-container {
    background: #f0f7f2;
    position: relative;
    padding: 1.2rem 1.5rem 1.5rem;
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-hint {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

/* ===============================
   LEGEND
================================ */
.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 14px;
}

.map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--c);
    padding: 3px 10px;
    border-radius: 4px;
}

.map-legend span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

/* ===============================
   SVG MAP OBJECT
================================ */
#africa-map-object {
    width: 100%;
    height: 580px;
    display: block;
}

/* ===============================
   SIDE PANEL
================================ */
.uni-panel {
    background: #fff;
    overflow-y: auto;
    max-height: 700px;
    border-left: 1px solid var(--rule);
}

.panel-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
    gap: 0.8rem;
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.4;
}

.panel-placeholder p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--muted);
}

.panel-content {
    padding: 1.6rem;
}

/* ===============================
   PANEL HEADER
================================ */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
    gap: 12px;
}

.panel-region {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.panel-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.2;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.panel-count {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    background: var(--green);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===============================
   UNIVERSITY LIST
================================ */
.uni-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.uni-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.855rem;
    color: var(--text);
    line-height: 1.5;
    transition: background 0.15s;
}

.uni-list li:last-child {
    border-bottom: none;
}

.uni-list li:hover {
    background: var(--cream);
    padding-left: 6px;
    border-radius: 4px;
}

.uni-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    border-radius: 4px;
    padding: 2px 6px;
    flex-shrink: 0;
    margin-top: 2px;
    min-width: 20px;
    text-align: center;
}

/* ===============================
   STATS BAR
================================ */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: var(--green-deep);
    padding: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 3rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .map-layout {
        grid-template-columns: 1fr;
    }

    #africa-map-object {
        height: 420px;
    }

    .uni-panel {
        max-height: none;
        border-left: none;
        border-top: 1px solid var(--rule);
    }

    .stat-item {
        padding: 0.5rem 1.5rem;
    }

    .stat-divider {
        height: 30px;
    }
}

@media (max-width: 600px) {
    .region-tabs {
        padding: 0.8rem 1rem;
        gap: 6px;
    }

    .region-tab {
        font-size: 0.68rem;
        padding: 0.35rem 0.8rem;
    }

    #africa-map-object {
        height: 320px;
    }

    .map-legend {
        gap: 6px;
    }

    .map-legend span {
        font-size: 0.62rem;
        padding: 2px 8px;
    }

    .stats-bar {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0.5rem 1rem;
    }

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




.partners-slider {
    position: relative;
    max-width: 1100px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    position: relative;
    height: auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    
    border-radius: 10px;
}
.slides img {
    display: block;
}
.slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.7);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--green-deep);
}
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.section-label::before,
.section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--rule);
    max-width: 120px;
}

.section-label span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-sans);
    white-space: nowrap;
}

/* ================================
   HERO
================================ */
.board-hero h1 {
    text-align: center;
}

.board-hero p {
    text-align: center;
    color: var(--gold);
}

.board-section {
    padding: 50px 20px 80px;
}

.board-container {
    max-width: 1100px;
    margin: 0 auto;
}

.board-intro {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.board-intro p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--muted);
}

/* ================================
   SECTION LABEL
================================ */
.board-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.board-label span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    white-space: nowrap;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.board-card {
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}

.board-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.09);
}

/* Image */
.board-card-img {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--cream);
}

.board-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s;
}

.board-card:hover .board-card-img img {
    transform: scale(1.04);
}

/* No image fallback */
.board-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.board-no-img::after {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
}

/* Country flag badge */
.board-card-country {
    position: absolute;
    bottom: 12px;
    right: 12px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.board-card-country img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    display: block;
}

/* Body */
.board-card-body {
    padding: 18px 20px 22px;
}

.board-role-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    background: #e8f4ec;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.board-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.35;
    margin-bottom: 6px;
}

.board-card-body p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .board-grid {
        grid-template-columns: 1fr;
    }

    .board-card-img {
        height: 240px;
    }
}