@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
    --brand-green: #129C22;
    --brand-green-strong: #0e7a1a;
    --brand-glow: #7adf86;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #101010;
    --muted: #555555;
    --light-bg: #f7faf7;
}

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

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf5 100%);
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(90deg, #ffffff 0%, #f4fff6 55%, #dff5e3 100%);
    border-bottom: 3px solid var(--brand-green);
    box-shadow: 0 10px 26px rgba(7, 34, 11, 0.12);
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-green-strong), var(--brand-green), var(--brand-glow));
}

.header-contact-strip {
    display: block;
    background: linear-gradient(90deg, #0a2b10 0%, #0d4817 60%, #0f5f1d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contact-wrap {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-contact-items,
.header-social-items {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-contact-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.header-contact-link i {
    color: #9be2a4;
}

.header-contact-link:hover {
    color: #ffffff;
}

.header-social-link {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #d4f5d8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-social-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* Splash screen */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: radial-gradient(circle at 20% 20%, #1ea530 0%, #0f5e18 45%, #010702 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.splash-screen.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
    z-index: -999 !important;
}

.splash-card {
    text-align: center;
    color: var(--white);
    animation: contentRise 0.8s ease;
}

.splash-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 0.7rem;
}

.splash-card h1 {
    margin: 0;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
}

.splash-card p {
    margin: 0.4rem 0 0;
    color: #e8ffe9;
}

/* Navigation */
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.brand-logo-slot {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #e6f8e8 100%);
    border: 1px solid #b9e3be;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(18, 156, 34, 0.14);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-text {
    font-size: 1.05rem;
    color: var(--brand-green-strong);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    justify-content: center;
}

.mobile-nav-toggle {
    display: none;
}

.mobile-portal-btn {
    display: none;
}

.main-nav a {
    color: #18301c;
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.main-nav a:hover,
.main-nav a.active {
    background: linear-gradient(135deg, #dff5e3 0%, #ffffff 100%);
    color: var(--brand-green-strong);
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.18);
}

.portal-btn {
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-strong) 100%);
    border: 2px solid var(--brand-green);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 18px rgba(18, 156, 34, 0.22);
}

.portal-btn:hover {
    background: linear-gradient(135deg, #0f851d 0%, #0a5d14 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(18, 156, 34, 0.3);
}

.nav-dropdown {
    position: relative;
}

    /* Journey section styles */
    .journey-section .journey-header {
        text-align: center;
        max-width: 820px;
        margin: 0 auto 1.1rem;
    }

    .journey-section .journey-header h2,
    .journey-section .journey-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .journey-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        align-items: stretch;
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
        overflow-x: auto;
        padding: 0.25rem 0 0.6rem;
        scroll-snap-type: x mandatory;
        justify-content: center;
    }

    .journey-step {
        background: var(--white);
        border: 1px solid #d7ead9;
        border-radius: 12px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: transform 0.22s ease, box-shadow 0.22s ease;
        width: 220px;
        min-width: 220px;
        flex: 0 0 220px;
        scroll-snap-align: center;
        opacity: 0;
        transform: translateY(18px);
        transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.22s ease;
    }

    .journey-step.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .journey-step:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 44px rgba(7,34,11,0.08);
    }

    .icon-box {
        min-width: 84px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .icon-inner {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        background: linear-gradient(180deg, #f1fbf2 0%, #e6f7e9 100%);
        display: grid;
        place-items: center;
        color: var(--brand-green-strong);
        font-size: 1.25rem;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 20px rgba(18,156,34,0.08);
    }

    .step-number {
        position: absolute;
        right: -10px;
        bottom: -10px;
        background: var(--brand-green);
        color: #fff;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 0.8rem;
        box-shadow: 0 8px 18px rgba(18,156,34,0.16);
    }

    .step-content h3 {
        margin: 0 0 0.35rem;
        font-family: 'Montserrat', sans-serif;
        color: #103015;
    }

    .step-content p {
        margin: 0;
        color: #5a665b;
    }

    @media (max-width: 920px) {
        .journey-container {
            justify-content: flex-start;
            padding-left: 0.15rem;
            padding-right: 0.15rem;
        }
    }

    @media (max-width: 620px) {
        .icon-inner { width: 56px; height: 56px; font-size: 1.05rem; }
    }

.nav-dropdown-toggle {
    color: #18301c;
    background: none;
    border: none;
    font-weight: 600;
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-toggle.active {
    background: linear-gradient(135deg, #dff5e3 0%, #ffffff 100%);
    color: var(--brand-green-strong);
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.18);
}

.nav-dropdown-toggle:hover {
    background: linear-gradient(135deg, #dff5e3 0%, #ffffff 100%);
    color: var(--brand-green-strong);
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.18);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #d7ead9;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(7, 34, 11, 0.15);
    min-width: 160px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    margin-top: 0.4rem;
}

.nav-dropdown-toggle[aria-expanded="true"] ~ .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    color: #18301c;
    text-decoration: none;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:first-child {
    border-radius: 7px 7px 0 0;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 7px 7px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: linear-gradient(135deg, #dff5e3 0%, #ffffff 100%);
    color: var(--brand-green-strong);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.news-card {
    background: var(--white);
    border: 1px solid #d7ead9;
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
}

.news-card-image {
    height: 180px;
    overflow: hidden;
}

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

.news-card-body {
    padding: 1.25rem;
}

.news-card-body h3 {
    margin: 0 0 0.5rem;
    color: #103015;
    font-family: 'Montserrat', sans-serif;
}

.news-card-body p {
    margin: 0 0 1rem;
    color: #5a665b;
}

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

.gallery-item {
    background: var(--white);
    border: 1px solid #d7ead9;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(7, 34, 11, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: #103015;
    font-family: 'Montserrat', sans-serif;
}

    .announcement {
      background: linear-gradient(90deg, var(--brand-green) 0%, #0dba28 100%);
      color: #fff;
      text-align: center;
      padding: 11px 5%;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: .2px;
      position: relative;
    }
    .announcement a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 700;
    }
    .announcement .pulse-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      margin-right: 8px;
      vertical-align: middle;
      animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(.6); }
    }

.hero {
    padding: 0;
    background: transparent;
}

.home-page .hero {
    padding-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 35%, rgba(122, 223, 134, 0.16) 50%, transparent 65%);
    animation: shine 6s linear infinite;
}

/* Hero (Swiper) overlay styling */
.heroSwiper .slide-overlay .slide-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(3,8,6,0.48) 0%, rgba(3,8,6,0.28) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(2,8,6,0.45);
}

.heroSwiper .slide-kicker {
    color: #ffd880;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
}

.heroSwiper .slide-inner h1,
.heroSwiper .slide-inner .slide-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.6rem;
}

.heroSwiper .slide-inner p {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
}

.heroSwiper .slide-actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.72);
    background: transparent;
    padding: 0.7rem 1.15rem;
    border-radius: 10px;
    font-weight: 700;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.06);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.floating-contact-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-strong) 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(18, 156, 34, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    font-size: 1.1rem;
}

.floating-contact-label {
    display: none;
}

.floating-contact-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(18, 156, 34, 0.45);
    filter: brightness(1.03);
}

.floating-chat-popup {
    position: fixed;
    right: 30px;
    bottom: 118px;
    width: min(360px, calc(100vw - 40px));
    z-index: 41;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.floating-chat-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-chat-card {
    background: #ffffff;
    border: 1px solid #dfeadf;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(7, 34, 11, 0.18);
    padding: 1rem;
}

.floating-chat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
}

.floating-chat-head strong {
    font-size: 1rem;
    color: #103015;
}

.floating-chat-close {
    border: none;
    background: rgba(16, 48, 21, 0.08);
    color: #103015;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.floating-chat-copy {
    margin: 0 0 0.9rem;
    color: #5f6f60;
    font-size: 0.92rem;
}

.floating-chat-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.floating-chat-actions .btn-primary,
.floating-chat-actions .btn-secondary {
    padding: 0.75rem 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: flex-start;
    min-width: 150px;
}

.floating-chat-actions .btn-primary {
    box-shadow: none;
}

.floating-chat-actions .btn-secondary {
    background: #eef6ef;
    color: #103015;
}

.floating-chat-action-sub {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.25;
    opacity: 0.82;
}

@media (max-width: 520px) {
    .floating-chat-actions .btn-primary,
    .floating-chat-actions .btn-secondary {
        min-width: 100%;
    }
}

.floating-chat-launch {
    appearance: none;
    cursor: pointer;
}

.floating-chat-launch i {
    font-size: 1.1rem;
}

body:not(.home-page) .floating-chat-launch,
body:not(.home-page) .floating-chat-popup {
    display: none !important;
}

.floating-menu {
    position: absolute;
    bottom: 62px;
    right: 0;
    border-radius: 0.8rem;
    box-shadow: 0 12px 40px rgba(7, 34, 11, 0.12);
    border: none;
    background: transparent;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
}

.floating-contact.is-open .floating-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-option {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    color: #18301c;
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 18px rgba(18,34,12,0.08);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-option:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 26px rgba(18,34,12,0.12);
    color: var(--brand-green-strong);
}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 98px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f5a52 0%, #2f3531 100%);
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 35;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #5d6b62 0%, #3b433e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 860px) {

    .heroSwiper .slide-overlay .slide-inner {
        padding: 1.15rem 1rem;
        border-radius: 12px;
    }
    .heroSwiper .slide-inner h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* About page hero/banner styles */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54vh;
    color: #fff;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0;
}

.page-hero-about .page-hero-content {
    max-width: 900px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(6, 20, 8, 0.76) 0%, rgba(6, 20, 8, 0.48) 50%, rgba(6, 20, 8, 0.58) 100%);
}

.about-intro-grid,
.about-summary-grid,
.objective-grid,
.target-grid,
.assessment-grid,
.requirements-grid,
.course-grid {
    display: grid;
    gap: 1.25rem;
}

.about-intro-grid {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: start;
}

.board-header {
    max-width: 760px;
    margin: 0 auto 1.4rem;
    text-align: center;
}

.board-header p {
    color: #4d5b4e;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 1.25rem;
    justify-content: center;
}

.board-card {
    background: var(--white);
    border: 1px solid #d7ead9;
    border-radius: 1.35rem;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.board-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.28);
}

.board-photo-wrap {
    width: 100%;
    height: 210px;
    border-radius: 1.05rem;
    overflow: hidden;
    background: #edf5ee;
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.1);
}

.board-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.board-copy h3 {
    margin: 0 0 0.35rem;
    color: #103015;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.08rem;
}

.board-role {
    margin: 0;
    color: var(--brand-green-strong);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.about-lead-card,
.about-side-card,
.summary-card,
.objective-card,
.target-card,
.requirement-card,
.course-card,
.assessment-box {
    background: var(--white);
    border: 1px solid #d7ead9;
    border-radius: 1.35rem;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
}

.about-lead-card,
.about-side-card {
    padding: 1.5rem;
}

.about-lead-card h2,
.about-side-card h2,
.assessment-box h3 {
    margin-top: 0.65rem;
}

.board-section {
    padding-top: 0.5rem;
}

.board-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.career-path-section {
    position: relative;
    padding: 1rem 0 0.85rem;
    overflow: hidden;
}

.career-path-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px circle at 8% 8%, rgba(18, 156, 34, 0.16), transparent 42%),
        radial-gradient(620px circle at 92% 96%, rgba(6, 28, 10, 0.14), transparent 44%);
    pointer-events: none;
}

.career-path-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(18, 156, 34, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 156, 34, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.22;
    pointer-events: none;
}

.career-path-section .container {
    position: relative;
    z-index: 1;
}

.career-path-header {
    max-width: 760px;
    margin: 0 auto 1.6rem;
    text-align: center;
}

.career-path-header p {
    color: #405043;
}

.career-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.career-path-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(165deg, #f9fff9 0%, #ecf9ee 100%);
    border: 1px solid rgba(18, 156, 34, 0.16);
    border-radius: 1.35rem;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.1);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.career-path-card::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: -30% auto auto -25%;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(18, 156, 34, 0.26), rgba(18, 156, 34, 0));
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.72;
}

.career-path-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.career-path-number {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #0f5d19 0%, #169c22 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(9, 56, 15, 0.22);
}

.career-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 52px rgba(5, 25, 8, 0.18);
    border-color: rgba(18, 156, 34, 0.3);
}

.career-path-card:hover::before {
    transform: scale(1.22) translate(10px, 6px);
    opacity: 0.88;
}

.core-values-section .core-value-card {
    background: linear-gradient(180deg, #1f7a28 0%, #16611d 100%);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
}

.core-values-section .core-value-card::before {
    background: linear-gradient(90deg, #0d2b10, #0f3d14, #071009);
}

.core-values-section .core-value-card .cv-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #f4fff5;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.core-values-section .core-value-card h3,
.core-values-section .core-value-card p {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.core-values-section .core-value-card h3 {
    color: #ffffff;
}

.core-values-section .core-value-card p {
    color: rgba(255, 255, 255, 0.84);
}

.core-values-section .core-value-card:hover {
    background: #050505;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.28);
}

.core-values-section .core-value-card:hover h3,
.core-values-section .core-value-card:hover p {
    opacity: 0.82;
}

.core-values-section .core-value-card:hover .cv-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.core-values-section .core-value-card:hover::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05), rgba(255,255,255,0.1));
}

.career-path-card h3 {
    margin: 0;
    color: #0e3114;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.12rem;
}

.career-path-card p {
    margin: 0;
    color: #39503c;
    line-height: 1.7;
}

.about-lead-card p,
.about-side-card p {
    color: #4d5b4e;
}

.about-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card,
.objective-card,
.target-card,
.requirement-card,
.course-card {
    padding: 1.35rem;
}

.about-bullets {
    margin: 0.9rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.7rem;
    color: #4d5b4e;
}

.objective-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.objective-card {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
}

.objective-number {
    flex: 0 0 auto;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e9f8ec 0%, #ffffff 100%);
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.target-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.target-card h3,
.course-card h3 {
    margin-top: 0;
}

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

.assessment-box {
    margin-top: 1.25rem;
    padding: 1.5rem;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.assessment-item {
    background: #f7fbf7;
    border: 1px solid #dbe9dd;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.assessment-item span {
    color: #627163;
    font-size: 0.9rem;
    line-height: 1.7;
}

.assessment-item strong {
    color: var(--brand-green-strong);
    font-size: 1.15rem;
}

.requirements-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.requirement-card {
    min-height: 100%;
}

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

.course-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-card p {
    margin: 0;
    color: #4d5b4e;
}

.course-duration {
    margin-top: auto;
    font-weight: 700;
    color: var(--brand-green-strong) !important;
}

.course-header {
    margin-bottom: 1.4rem;
}

.course-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.course-photo-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
    border: 1px solid #d7ead9;
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.course-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.28);
}

.course-photo-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.course-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-photo-tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(7, 34, 11, 0.12);
}

.course-photo-body {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.course-photo-body h3 {
    margin: 0;
    color: #103015;
    font-size: 1.05rem;
}

.course-photo-body p {
    margin: 0;
    color: #4d5b4e;
    line-height: 1.7;
}

.course-photo-body .btn-prog {
    align-self: flex-start;
}

.about-summary-section {
    padding-top: 1rem;
}

.page-banner {
    background: linear-gradient(90deg, rgba(18,156,34,0.08), transparent);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

@media (max-width: 1100px) {
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .career-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .course-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .career-path-grid {
        grid-template-columns: 1fr;
    }

    .course-photo-grid {
        grid-template-columns: 1fr;
    }
}

.page-banner p {
    margin: 0;
    color: #1a2b1a;
    padding: 0.85rem 0;
}

.page-hero-admission .page-hero-content {
    max-width: 900px;
}

.admission-steps-section {
    padding-top: 1.5rem;
}

.admission-steps-grid {
    margin-top: 1rem;
}

.admission-step-card {
    min-height: 100%;
}

.downloads-section {
    padding-top: 1rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.download-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
    border: 1px solid #d7ead9;
    border-radius: 1rem;
    box-shadow: 0 14px 32px rgba(7, 34, 11, 0.08);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.download-card h3 {
    margin: 0;
    color: #103015;
}

.download-card p {
    margin: 0;
    color: #4d5b4e;
    line-height: 1.7;
}

.download-card .btn-primary,
.download-card .btn-secondary {
    width: fit-content;
}

.application-section {
    padding-top: 1rem;
}

.admission-split {
    align-items: start;
}

.admission-info-panel p,
.contact-card p {
    color: #4d5b4e;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-row-full {
    grid-column: 1 / -1;
}

.form-row label {
    font-weight: 700;
    color: #103015;
    font-family: 'Montserrat', sans-serif;
}

.admission-form .form-control {
    width: 100%;
    padding: 0.9rem 0.95rem;
    border: 1px solid #cfd8cf;
    border-radius: 0.8rem;
    font: inherit;
    background: #fff;
}

.admission-form .form-control:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(18, 156, 34, 0.12);
}

.admission-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.95rem 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #d7ead9;
    border-radius: 1rem;
    box-shadow: 0 14px 32px rgba(7, 34, 11, 0.08);
    padding: 1.2rem;
}

.contact-card h3 {
    margin-top: 0;
    color: #103015;
}

.contact-card a {
    color: var(--brand-green-strong);
    text-decoration: none;
    font-weight: 700;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* App Download Section */
.app-download-section {
    padding-top: 1rem;
}

.app-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.app-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
    border: 1px solid #d7ead9;
    border-radius: 1.35rem;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.app-card:nth-child(1) {
    animation: fadeInLeft 0.85s ease both;
}

.app-card:nth-child(2) {
    animation: fadeInRight 0.85s ease 0.12s both;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.28);
}

.app-store-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9f8ec 0%, #ffffff 100%);
    font-size: 1.8rem;
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.15);
}

.app-card h3 {
    margin: 0;
    color: #103015;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
}

.app-card p {
    margin: 0;
    color: #5a665b;
    font-size: 0.95rem;
}

.app-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
}

.app-benefits {
    background: #f7fbf7;
    border: 1px solid #dbe9dd;
    border-radius: 1.1rem;
    padding: 1.35rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.app-benefits h3 {
    margin-top: 0;
    color: #103015;
    font-family: 'Montserrat', sans-serif;
}

.app-benefits .about-bullets {
    margin: 0.9rem auto 0;
    color: #4d5b4e;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: left;
    max-width: 500px;
}

@media (max-width: 960px) {
    .about-intro-grid,
    .about-summary-grid,
    .objective-grid,
    .target-grid,
    .assessment-grid,
    .requirements-grid,
    .course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-hero { min-height: 40vh; }
    .page-hero-content { padding: 1.25rem 0; text-align: center; }
    .page-banner p { text-align: center; }
    .about-intro-grid,
    .about-summary-grid,
    .objective-grid,
    .target-grid,
    .assessment-grid,
    .requirements-grid,
    .course-grid {
        grid-template-columns: 1fr;
    }

    .app-download-grid {
        grid-template-columns: 1fr;
    }

    .course-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .slide-actions {
        justify-content: center;
    }
}
.page-hero .lead {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.page-banner {
    background: linear-gradient(90deg, rgba(18,156,34,0.06), transparent);
    padding: 0.85rem 0;
    border-top: 1px solid rgba(0,0,0,0.04);
}
.page-banner p {
    margin: 0;
    color: #1a2b1a;
}

@media (max-width: 720px) {
    .page-hero { min-height: 40vh; }
    .page-hero-content { padding: 1.25rem 0; text-align: center; }
    .page-banner p { text-align: center; }
}

.slider-track {
    display: flex;
    width: 300%;
    animation: slideCycle 30s infinite;
}

.slide {
    width: 100%;
    flex: 0 0 100%;
    min-height: 100vh;
    padding: 2.2rem 4vw;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.slide-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: zoomPan 34s ease-in-out infinite alternate;
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--white);
    animation: contentRise 1s ease;
    background: linear-gradient(180deg, rgba(8, 16, 9, 0.68) 0%, rgba(8, 16, 9, 0.42) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid var(--brand-glow);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.4rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(122, 223, 134, 0.5);
}

.hero-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: var(--brand-glow);
    color: #08370d;
    font-weight: 800;
}

.hero-logo-text {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.slide-kicker {
    margin: 0 0 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-glow);
}

.slide h1 {
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--white);
}

.slide p {
    max-width: 700px;
    margin: 0 0 1.5rem;
    color: #ebfdeb;
}

.what-we-do {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
}

.what-we-do-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.what-we-do-visual {
    position: relative;
    min-height: 520px;
}

.what-we-do-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 2.5rem;
    border: 10px solid var(--white);
    box-shadow: 0 26px 55px rgba(7, 34, 11, 0.16);
    background: var(--white);
}

.what-we-do-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shape {
    position: absolute;
    border-radius: 2rem;
    z-index: 1;
}

.shape-accent {
    width: 120px;
    height: 120px;
    right: 14px;
    bottom: 14px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-strong) 100%);
    opacity: 0.92;
}

.shape-soft {
    width: 120px;
    height: 120px;
    top: -16px;
    right: 24px;
    background: rgba(18, 156, 34, 0.16);
}

.what-we-do-content {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.section-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #e9f8ec;
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.what-we-do h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: #0f2411;
}

.what-we-do p {
    margin: 0;
    color: #5a665b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.what-we-do-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 0.25rem;
}

.stat-item {
    padding: 1.1rem 1rem;
    border-radius: 1.25rem;
    background: var(--white);
    border: 1px solid #d7ead9;
    box-shadow: 0 14px 32px rgba(7, 34, 11, 0.07);
}

.stat-number {
    margin: 0 0 0.25rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6c786d;
}

.what-we-do-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.25rem;
}

/* Program section */
.programs-section {
    padding: 1rem 0 5.5rem;
    background:
        radial-gradient(circle at top left, rgba(18, 156, 34, 0.06), transparent 28%),
        linear-gradient(180deg, #f8fcf8 0%, #ffffff 100%);
}

.programs-header {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.programs-header h2 {
    margin: 0.85rem 0 0.85rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: #0f2411;
}

.programs-header p {
    margin: 0;
    color: #5a665b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.program-card {
    position: relative;
    padding: 1.65rem 1.55rem 1.55rem;
    border-radius: 1.55rem;
    background: var(--white);
    border: 1px solid #d7ead9;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.09);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.program-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--brand-green-strong), var(--brand-green), var(--brand-glow));
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.22);
}

.program-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #e9f8ec 0%, #ffffff 100%);
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.08);
}

.program-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    color: #103015;
}

.program-card p {
    margin: 0;
    color: #5a665b;
    line-height: 1.8;
    font-size: 1.02rem;
}

/* Photo header (rectangle) at top of program cards */
.program-card .program-visual {
    margin: -1.65rem -1.55rem 1rem -1.55rem;
    overflow: hidden;
    border-radius: 1.25rem 1.25rem 0 0;
    height: 140px;
    background: #eee;
}
.program-card .program-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 860px) {
    .program-card .program-visual { height: 120px; }
}


.programmes-head {
  text-align: center; margin-bottom: 14px;
}
.programmes-head .section-sub {
  margin: 0 auto 32px;
}
/* Filter tabs */
.prog-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.prog-filter {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid #d0ddd1;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.prog-filter.active, .prog-filter:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}
/* Cards grid */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.prog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2eee3;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(18,156,34,.13);
}
.prog-card-img {
  height: 170px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.prog-card-img.bg-1 { background: linear-gradient(135deg,#d4f0ff,#b3e0f5); }
.prog-card-img.bg-2 { background: linear-gradient(135deg,#f0e6ff,#dbc7ff); }
.prog-card-img.bg-3 { background: linear-gradient(135deg,#fff3d4,#ffe4a0); }
.prog-card-img.bg-4 { background: linear-gradient(135deg,#d4ffe8,#a8f0c6); }
.prog-card-img.bg-5 { background: linear-gradient(135deg,#ffd4e8,#ffb3d0); }
.prog-card-img.bg-6 { background: linear-gradient(135deg,#e8f4ff,#c7e2ff); }
.prog-badge-level {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 100px;
  color: var(--text-dark);
}
.prog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prog-category {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--brand-green);
  margin-bottom: 6px;
}
.prog-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; margin-bottom: 10px; color: var(--text-dark);
}
.prog-card-desc {
  font-size: 0.84rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.prog-meta {
  display: flex; gap: 16px; margin-bottom: 16px;
  flex-wrap: wrap;
}
.prog-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.76rem; color: var(--muted);
}
.prog-meta-item strong { color: var(--text-dark); }
.prog-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.prog-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--brand-green);
}
.prog-price small {
  font-size: 0.65rem; font-weight: 500;
  color: var(--muted); display: block;
}
.btn-prog {
  padding: 8px 18px; border-radius: 8px;
  background: var(--brand-green); color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-prog:hover { background: var(--brand-green-strong); }

.prog-view-all {
  text-align: center; margin-top: 40px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 8px;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--brand-green); color: #fff; }

@media (max-width: 640px) {
  .prog-grid { grid-template-columns: 1fr; }
}
.why-choose-section {
    padding-top: 1rem;
}

.why-choose-header {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.why-choose-header h2 {
    margin: 0.85rem 0 0.85rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: #0f2411;
}

.why-choose-header p {
    margin: 0;
    color: #5a665b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.why-card {
    position: relative;
    padding: 1.6rem 1.5rem 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
    border: 1px solid #d7ead9;
    box-shadow: 0 16px 35px rgba(7, 34, 11, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--brand-green-strong), var(--brand-green), var(--brand-glow));
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.2);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    background: #e9f8ec;
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.08);
}

.why-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: #103015;
}

.why-card p {
    margin: 0;
    color: #5a665b;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--brand-600);
    border: 1.5px solid rgba(13,111,36,0.12);
    background: transparent;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: var(--radius-md);
    padding: 0.62rem 1rem;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--brand-green-strong);
    border: 2px solid var(--brand-green);
    background: transparent;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 9px;
    padding: 0.75rem 1.2rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #eaf8ec;
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-block;
    text-decoration: none;
    background: var(--brand-green);
    color: var(--white);
    font-weight: 700;
    border-radius: 9px;
    padding: 0.75rem 1.2rem;
    box-shadow: 0 10px 24px rgba(10, 55, 14, 0.28);
}

.btn-primary:hover {
    background: var(--brand-green-strong);
}

@keyframes slideCycle {
    0%,
    28% {
        transform: translateX(0);
    }
    33%,
    61% {
        transform: translateX(-100%);
    }
    66%,
    94% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

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

@keyframes contentRise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomPan {
    0% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1.08);
    }
}

.section {
    padding: 3.2rem 0;
}

.institutional-overview-section {
    padding-top: 1.8rem;
}

.fade-soft {
    animation: contentRise 0.95s ease;
}

.institutional-overview-grid {
    align-items: center;
}

.institutional-logo-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.institutional-logo-frame {
    width: min(320px, 100%);
    padding: 1.25rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf6 100%);
    border: 1px solid rgba(18, 156, 34, 0.16);
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.12), inset 0 0 0 1px rgba(255,255,255,0.55);
}

.institutional-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.institutional-copy-panel p {
    color: #4d5b4e;
}

.institutional-bullets {
    margin-top: 1rem;
    gap: 0.9rem;
}

.institutional-bullets li {
    position: relative;
    padding-left: 0.25rem;
}

.partners-section {
    padding-top: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.partner-card {
    text-decoration: none;
    color: inherit;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #d7ead9;
    box-shadow: 0 14px 32px rgba(7, 34, 11, 0.08);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.28);
}

.partner-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf5 100%);
    border: 1px solid #d7ead9;
    padding: 0.35rem;
}

.partner-name {
    text-align: center;
    font-size: 0.95rem;
    color: #2f3f31;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.partners-page-section {
    padding-top: 1.6rem;
}

.partner-highlight {
    margin-bottom: 1.2rem;
}

.partners-page-grid {
    margin-top: 0.2rem;
}

.testimony-section {
    padding-top: 1rem;
}

.testimonySwiper {
    padding-bottom: 2.2rem;
}

.testimony-nav {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.testimony-button {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid #cfe5d3;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-green-strong);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(7, 34, 11, 0.08);
    transition: 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.testimony-button:hover {
    background: #f2fbf3;
    border-color: rgba(18, 156, 34, 0.35);
    transform: translateY(-1px);
}

.testimonySwiper .swiper-slide {
    height: auto;
}

.testimony-pagination {
    bottom: 0 !important;
}

.testimony-pagination .swiper-pagination-bullet {
    background: rgba(18, 156, 34, 0.42) !important;
    opacity: 1;
}

.testimony-pagination .swiper-pagination-bullet-active {
    background: var(--brand-green) !important;
    width: 26px;
    border-radius: 999px;
}

.testimony-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
    border: 1px solid #d7ead9;
    border-radius: 1rem;
    padding: 0.95rem;
    box-shadow: 0 14px 32px rgba(7, 34, 11, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimony-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.26);
}

.testimony-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.testimony-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #d7ead9;
    background: #fff;
    padding: 0.2rem;
}

.testimony-head h3 {
    margin: 0;
    font-size: 1rem;
    color: #103015;
}

.testimony-head p {
    margin: 0.1rem 0 0;
    font-size: 0.86rem;
    color: #5a665b;
}

.testimony-text {
    margin: 0;
    color: #4d5b4e;
    line-height: 1.68;
}

.mission-vision-section {
    padding-top: 1.2rem;
}

.mission-vision-header {
    max-width: 760px;
    margin: 0 auto 1.8rem;
    text-align: center;
}

.mission-vision-header p {
    margin: 0;
    color: #5a665b;
    font-size: 1.05rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.mission-card,
.vision-card {
    position: relative;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
    border: 1px solid #d7ead9;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
    padding: 1.35rem 1.3rem 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mission-card::before,
.vision-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    border-radius: 1.35rem 1.35rem 0 0;
    background: linear-gradient(90deg, var(--brand-green-strong), var(--brand-green), var(--brand-glow));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.22);
}

.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, #e9f8ec 0%, #ffffff 100%);
    color: var(--brand-green-strong);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(18, 156, 34, 0.08);
}

.mv-icon-svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.mission-card h3,
.vision-card h3 {
    margin: 0 0 0.65rem;
    color: #103015;
}

.mission-card p,
.vision-card p {
    margin: 0;
    color: #4d5b4e;
    line-height: 1.75;
}

.president-welcome {
    padding-top: 2.4rem;
}

.president-welcome-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: center;
}

.president-photo-wrap {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 22px 45px rgba(7, 34, 11, 0.16);
}

.president-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.president-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.42) 100%);
}

.president-photo-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(8, 16, 9, 0.72);
    color: var(--white);
    backdrop-filter: blur(8px);
    font-weight: 700;
}

.president-photo-caption span {
    display: inline-block;
    margin-top: 0.15rem;
    color: #d8f2db;
    font-weight: 500;
}

.president-message {
    animation: contentRise 0.95s ease;
}

.president-message p {
    color: #4d5b4e;
}

.reveal-fade {
    animation: contentRise 0.95s ease;
}

.section h2 {
    margin-top: 0;
    font-size: 1.9rem;
}

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

.card {
    background: var(--white);
    border: 1px solid #e6eee6;
    border-left: 4px solid var(--brand-green);
    border-radius: 10px;
    padding: 1rem;
}

.card h3 {
    margin-top: 0;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
}

.panel {
    background: var(--white);
    border: 1px solid #e5eee5;
    border-radius: 10px;
    padding: 1.2rem;
}
.map{
    border-radius: 10px;
}
.map-inner{ height:100%; min-height: 450px; border-radius: 10px; overflow: hidden; border: 1px solid #e9f3ea; box-shadow: 0 10px 30px rgba(7,34,11,0.04); }
.map-inner iframe{ width:100%; height:100%; border:0; display:block; }
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfd8cf;
    border-radius: 6px;
    font: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(18, 156, 34, 0.12);
}

.panel h2 { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.35rem; }
.form-row { margin-bottom: 0.9rem; }
.form-row label { display:block; font-weight:600; margin-bottom:0.35rem; color: #213623; }
.contact-form .btn-primary { width: auto; padding: 0.7rem 1.1rem; }

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

.form-row {
    margin-bottom: 0.8rem;
}

.site-footer {
    margin-top: 3rem;
    background: linear-gradient(180deg, #08110a 0%, #040806 100%);
    color: var(--white);
    border-top: 4px solid var(--brand-green);
    box-shadow: 0 -18px 40px rgba(7, 34, 11, 0.18);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    line-height: 0;
}

.footer-logo {
    width: 84px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.footer-title {
    margin: 0;
    color: #9be2a4;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.footer-lead,
.footer-support-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-actions {
    margin-top: 0.2rem;
}

.footer-cta {
    min-width: 132px;
}

.footer-links,
.footer-contact-list {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-contact-list a,
.footer-bottom-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.footer-bottom-link:hover {
    color: var(--brand-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.site-footer h4 {
    margin-top: 0;
}

.site-footer ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.site-footer a {
    text-decoration: none;
}

/* Core Values Cards */
.core-values-header {
    max-width: 760px;
    margin: 0 auto 1.8rem;
    text-align: center;
}

.core-values-header p {
    margin: 0;
    color: #5a665b;
    font-size: 1.05rem;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.core-value-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
    border: 1px solid #d7ead9;
    padding: 1.25rem;
    border-radius: 1.1rem;
    color: #1c2a1d;
    box-shadow: 0 18px 40px rgba(7, 34, 11, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.core-value-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    border-radius: 1.1rem 1.1rem 0 0;
    background: linear-gradient(90deg, var(--brand-green-strong), var(--brand-green), var(--brand-glow));
}

.core-value-card .cv-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(155,226,164,0.06);
    color: #9be2a4;
}

.core-value-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #153218;
}

.core-value-card p {
    margin: 0;
    color: #4d5b4e;
    font-size: 0.95rem;
}

.core-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(7, 34, 11, 0.12);
    border-color: rgba(18, 156, 34, 0.22);
}

.copyright {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}

/* Social Media Links */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(155, 226, 164, 0.1);
    border: 1.5px solid rgba(155, 226, 164, 0.3);
    border-radius: 50%;
    color: #9be2a4;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(155, 226, 164, 0.2);
    border-color: #9be2a4;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Information */
.footer-contact-info {
    background: rgba(155, 226, 164, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #9be2a4;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9be2a4;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.contact-value:hover {
    color: #9be2a4;
}

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(155, 226, 164, 0) 0%, rgba(155, 226, 164, 0.3) 50%, rgba(155, 226, 164, 0) 100%);
    margin: 1.5rem 0;
}

/* Meta Links */
.footer-meta-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-meta-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.2rem 0;
}

.footer-meta-link:hover {
    color: #9be2a4;
    text-decoration: underline;
}

.footer-meta-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.3rem;
}

/* Newsletter Subscribe Form */
.newsletter-form {
    max-width: 100%;
}

.newsletter-form .input-group {
    background: rgba(155, 226, 164, 0.08);
    border: 1.5px solid rgba(155, 226, 164, 0.3);
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    padding: 0.3rem;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

.newsletter-form .btn {
    background: #0c5213;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #0d6b1a;
    transform: translateX(2px);
}

.newsletter-form .form-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Social Links Group */
.social-links-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: rgba(155, 226, 164, 0.1);
    border: 1.5px solid rgba(155, 226, 164, 0.3);
    border-radius: 8px;
    color: #9be2a4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(155, 226, 164, 0.25);
    border-color: #9be2a4;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(155, 226, 164, 0.2);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact hero (modern) */
.contact-hero {
    background: linear-gradient(180deg, rgba(18,156,34,0.04) 0%, rgba(246,252,247,0.6) 100%);
    padding: 36px 0 48px;
    border-radius: 12px;
}

.contact-hero .programs-header { margin-bottom: 18px; }
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

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

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.1rem;
    border: 1px solid #e6f4ea;
    box-shadow: 0 12px 30px rgba(7,34,11,0.04);
}

.contact-card h3 { margin: 0 0 0.6rem; color: #0f3a1a; }
.contact-card p { margin: 0; color: #586a59; }
.contact-card a { color: #0f7f2a; text-decoration: none; font-weight: 700; }

.contact-cta { display: flex; align-items: center; justify-content: center; }
.contact-cta-panel {
    background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #dff3e4;
    width: 100%;
    text-align: center;
    box-shadow: 0 18px 40px rgba(7,34,11,0.06);
}

.contact-cta-panel h3 { margin: 0 0 0.6rem; }
.contact-cta-panel p.large { font-size: 1.15rem; font-weight: 700; margin: 0.2rem 0; }
.contact-cta-panel .muted { color: #6c7d6b; }

/* Reveal/fade utility */
.reveal-fade { opacity: 0; transform: translateY(10px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal-fade.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .contact-cards { grid-template-columns: 1fr; }
}

/* Footer Contact Info Box */
.footer-contact-info {
    background: rgba(155, 226, 164, 0.08);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #9be2a4;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9be2a4;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    display: block;
}

.contact-value:hover {
    color: #9be2a4;
}

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(155, 226, 164, 0) 0%, rgba(155, 226, 164, 0.3) 50%, rgba(155, 226, 164, 0) 100%);
    margin: 1.5rem 0;
}

/* Contact Button in Footer */
.contact-btn-footer {
    background: linear-gradient(135deg, #0c5213 0%, #0d6b1a 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem;
}

.contact-btn-footer:hover {
    background: linear-gradient(135deg, #0d6b1a 0%, #0f831f 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(12, 82, 19, 0.3);
}

.contact-btn-footer:active {
    transform: translateY(0);
}

@media screen and (max-width: 991px) {
    .header-contact-strip {
        display: none !important;
    }

    .container {
        width: min(1120px, 94%);
    }

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

    .nav-wrap {
        align-items: center;
        justify-content: space-between;
        padding: 0.85rem 0;
        gap: 0.75rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .brand {
        width: auto;
        flex: 1 1 auto;
        justify-content: flex-start;
        text-align: left;
        gap: 0.5rem;
        min-width: 0;
    }

    .brand-logo-slot {
        width: 46px;
        height: 46px;
    }

    .brand-text {
        font-size: 0.98rem;
        line-height: 1.05;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        order: 2;
        align-self: center;
        margin-left: auto;
    }

    #main-navigation {
        order: 3;
        width: 100%;
    }

    .portal-btn {
        order: 4;
        width: 100%;
        text-align: center;
        margin-top: 0.35rem;
    }

    /* Ensure header doesn't overflow horizontally */
    .site-header, .nav-wrap {
        overflow: visible;
    }

    /* Mobile/collapsible navigation */
    .mobile-nav-toggle {
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        font-size: 1.45rem;
        padding: 0.45rem 0.6rem;
        cursor: pointer;
        color: var(--brand-green-strong);
        z-index: 9999;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
        padding: 0.85rem;
        border-radius: 10px;
        box-shadow: 0 12px 30px rgba(7,34,11,0.08);
        width: 100%;
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
        text-align: center;
        width: 100%;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.35rem;
        box-shadow: none;
        border-radius: 8px;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown-toggle[aria-expanded="true"] ~ .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        text-align: center;
    }

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

    .desktop-portal-btn {
        display: none;
    }

    .mobile-portal-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

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

    .slide {
        min-height: 100vh;
        padding: 1.4rem 1rem 1.6rem;
        grid-template-columns: 1fr;
    }

    .slide h1 {
        font-size: clamp(1.65rem, 7vw, 2.45rem);
    }

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

    .slide p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .slide-content {
        padding: 1.15rem 1.1rem 1rem;
    }

    .section {
        padding: 2.4rem 0;
    }

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

    .what-we-do {
        padding: 4rem 0;
        width:100%;
    }

    .what-we-do-wrap {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .what-we-do-visual {
        min-height: 360px;
    }

    .what-we-do-stats {
        grid-template-columns: 1fr;
    }

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

    .program-card {
        padding: 1.45rem 1.3rem 1.3rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Ensure slider animations pause on small screens for performance */


@media (prefers-reduced-motion: reduce) {
    .slider-track,
    .hero-slider::after,
    .slide-content,
    .splash-card,
    .splash-screen,
    .slide-bg-image {
        animation: none;
        transition: none;
    }
}

/* Default section */
.cta-default {
  background: var(--text-dark);
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.cta-default::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: var(--brand-green);
  opacity: .08;
  border-radius: 50%;
}
.cta-default::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  background: var(--brand-glow);
  opacity: .07;
  border-radius: 50%;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; z-index: 1;
}
.cta-copy .section-tag {
  background: rgba(122,223,134,.12);
  border-color: rgba(122,223,134,.3);
  color: var(--brand-glow);
}
.cta-copy .section-title { color: #fff; }
.cta-copy .section-sub { color: rgba(255,255,255,.65); margin-bottom: 0; }
.cta-actions {
  display: flex; flex-direction: column;
  gap: 12px; align-items: flex-start;
  min-width: 220px;
}
.cta-actions .btn-primary {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 16px 28px;
}
.cta-actions .btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  padding: 14px 28px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: border-color .2s;
}
.cta-actions .btn-outline-light:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}
.cta-deadline {
  margin-top: 8px;
  font-size: 0.76rem; color: rgba(255,255,255,.45);
  text-align: center; width: 100%;
}
@media (max-width: 780px) {
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { align-items: center; width: 100%; }
}

@media (max-width: 1024px) {
    .institutional-overview-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .institutional-logo-panel {
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .president-welcome-grid {
        grid-template-columns: 1fr;
    }

    .president-photo-wrap {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .president-welcome {
        padding-top: 1.8rem;
    }

    .president-welcome-grid {
        grid-template-columns: 1fr;
    }

    .president-photo-wrap {
        min-height: 300px;
    }

    .slide-actions {
        justify-content: center;
    }

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

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

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

}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .container {
        width: min(1120px, 96%);
    }

    .slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .what-we-do-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .prog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

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

    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-actions {
        align-items: center;
    }
}

/* Small tablet and large mobile */
@media (max-width: 768px) {
    .container {
        width: min(1120px, 94%);
    }

    

    .hero {
        padding: 0;
    }

    .slide {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .slide h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .slide-content {
        padding: 1.2rem;
        border-radius: 12px;
        width: 40%;
    }

    .what-we-do {
        padding: 3rem 0;
    }

    .what-we-do-visual {
        min-height: 300px;
    }

    .programs-section {
        padding: 1rem 0 4rem;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .prog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 2.5rem 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .site-footer p{
        text-align: center;
    }

    .site-footer h4 {
        text-align: center;
    }

    .site-footer ul {
        list-style: none;
        text-align: center;
        padding-left: 0;
    }

    /* Mobile Footer Adjustments */
    .footer-socials {
        justify-content: center;
    }

    .footer-contact-info {
        margin-top: 1rem;
    }

    .footer-meta-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-meta-link {
        font-size: 0.8rem;
    }
}

/* Contact */
/* faq */
  .faq-section { 
    padding: 80px 0; 
    background: var(--white); 
}
  .faq-inner {
     display: grid; 
     grid-template-columns: 1fr 1.2fr; gap: 60px; 
     align-items: start; 
    }
  .faq-list { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-top: 36px;
 }
  .faq-item {
    border: 1px solid #e2eee3; border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { 
    border-color: var(--brand-green); }
  .faq-question {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 16px 20px; 
    cursor: pointer;
    font-weight: 600; 
    font-size: 0.9rem;
    color: var(--text-dark); user-select: none;
    transition: color .2s;
  }
  .faq-item.open .faq-question { 
    color: var(--brand-green); }
  .faq-toggle {
    width: 24px; 
    height: 24px; 
    flex-shrink: 0;
    background: #edf8ee; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 0.9rem; 
    font-weight: 700; 
    color: var(--brand-green);
    transition: transform .3s, .2s;
  }
  .faq-item.open .faq-toggle { 
    transform: rotate(45deg); 
    background: var(--brand-green); 
    color: #fff; }
  .faq-answer {
    max-height: 0; 
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 0.88rem; 
    color: var(--muted); 
    line-height: 1.75;
    padding: 0 20px;
  }
    .faq-item.open .faq-answer { 
        max-height: 420px; 
        padding: 0 20px 18px; 
}
  .faq-image-wrap { 
    position: relative; 
}
  .faq-img-placeholder {
    width:100%; 
    height:350px;
    border-radius: 18px;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 10px; 
    color: var(--brand-green-strong);
  }
    .faq-img-placeholder img{
    width:100%; 
    height:350px;
    border-radius: 18px;
    }
  .faq-img-placeholder p {  font-weight:600; 
    font-size:.85rem; 
    opacity:.65; 
}

  .faq-badge {
    position: absolute; 
    bottom: 24px; right: -16px;
    background: var(--brand-green); 
    color: #fff;
    border-radius: 14px; 
    padding: 14px 20px;
    font-weight:700;
    font-size:0.82rem;
    max-width:160px; 
    text-align:center; 
    line-height:1.4;
  }
  @media (max-width: 840px) { 
    .faq-inner { grid-template-columns:1fr;
     } .faq-image-wrap {
         order:-1;
         } .faq-badge { 
            right:12px; 
        } 
    }

/* Mobile Responsive Floating Elements */
@media (max-width: 640px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        align-items: stretch;
    }

    .floating-contact-toggle {
        min-width: 40px;
        height: 40px;
        padding: 0 0.9rem 0 1rem;
        font-size: 0.88rem;
    }

    .floating-contact-label {
        display: none;
    }

    .back-to-top {
        bottom: 84px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .floating-menu {
        bottom: 62px;
        right: 0;
        min-width: 40px;
    }


/* Mobile header fixes: keep logo/menu aligned — hide contact strip on mobile */
@media screen and (max-width: 991px) {
    /* Hide the top contact strip on mobile to avoid layout crowding */
    .header-contact-strip {
        display: none !important;
    }

    /* Ensure nav and brand align horizontally with space-between */
    .nav-wrap {
        align-items: center;
        justify-content: space-between;
        gap: 0.6rem;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        flex: 0 1 auto;
    }

    .brand-logo-slot { width: 40px; height: 40px; }
    .brand-logo { max-height: 40px; }
    .brand-text { font-size: 0.95rem; }

    /* Keep the mobile toggle visible and aligned to the right */
    .mobile-nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: auto;
        align-items: center;
        justify-content: center;
    }

    /* Make sure main-nav collapses correctly and doesn't push brand off-screen */
    .main-nav {
        display: none;
        width: 100%;
        order: 4;
    }
    body.nav-open .main-nav { display: flex; }

    /* Make portal button compact on mobile */
    .mobile-portal-btn { display: inline-flex; }

    /* Reduce padding on nav links for narrow screens */
    .main-nav a { padding: 0.45rem 0.6rem; }
}
    .floating-option i {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 720px) {
    .floating-chat-popup {
        right: 20px;
        bottom: 112px;
        width: calc(100vw - 40px);
    }

    .floating-menu {
        bottom: 58px;
    }
}

/* Admission info section (info at top) */
.admission-info-section { background: linear-gradient(180deg, rgba(18,156,34,0.05), rgba(246,252,247,0.4)); padding: 2.8rem 0; }
.admission-info-box { max-width: 720px; margin: 0 auto; }
.admission-info-box h2 { font-size: 1.8rem; margin-bottom: 0.6rem; }
.admission-info-box p { font-size: 1rem; color: #586a59; margin-bottom: 1.6rem; }

.admission-info-bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 1.2rem; }
.info-bullet { background: #fff; padding: 1rem; border-radius: 10px; border-left: 4px solid var(--brand-green); }
.info-bullet strong { color: #0f3a1a; display: block; margin-bottom: 0.35rem; }
.info-bullet p { font-size: 0.9rem; color: #6b7d6b; }

/* Application form section (form at bottom) */
.application-section { background: linear-gradient(180deg, #ffffff 0%, #f9fffb 100%); padding: 3rem 0; }
.application-form-wrapper { max-width: 680px; margin: 0 auto; }
.admission-form { background: #fff; border-radius: 12px; padding: 2rem; border: 1px solid #e6f1ea; box-shadow: 0 12px 40px rgba(7, 34, 11, 0.06); }
.form-header { margin-bottom: 1.2rem; text-align: center; }
.form-header h2 { font-size: 1.6rem; margin-bottom: 0.35rem; }
.form-header p { color: #586a59; font-size: 0.95rem; }

@media (max-width: 768px) {
  .admission-info-bullets { grid-template-columns: 1fr; }
  .admission-form { padding: 1.5rem; }
}

/* Admissions contact banner (professional black) */
.admission-contact-banner { background: #0b0b0b; color: #ffffff; padding: 38px 0; margin-top: 18px; }
.admission-contact-banner .contact-banner-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; align-items: center; }
.admission-contact-banner h3 { color: #fff; margin: 0 0 6px; }
.admission-contact-banner .muted { color: rgba(255,255,255,0.75); }
.admission-contact-banner a { color: #fff; text-decoration: none; font-weight: 700; }
.admission-contact-banner .contact-cta-text { font-size: 1rem; color: rgba(255,255,255,0.92); margin-bottom: 6px; }
.admission-contact-banner .contact-email { font-size: 1.05rem; margin-bottom: 0.25rem; }
.admission-contact-banner .contact-phone { margin: 0; color: rgba(255,255,255,0.95); }
.admission-contact-banner .contact-actions { margin-top: 10px; display:flex; gap:8px; }
.admission-contact-banner .btn-primary { background: #fff; color: #0b6230; padding: 0.6rem 0.85rem; border-radius:8px; box-shadow: none; }
.admission-contact-banner .btn-secondary { background: rgba(255,255,255,0.08); color: #fff; padding: 0.55rem 0.85rem; border-radius:8px; border: 1px solid rgba(255,255,255,0.08); }

@media (max-width: 980px) {
    .admission-contact-banner .contact-banner-inner { grid-template-columns: 1fr; text-align:center; }
    .admission-contact-banner .contact-actions { justify-content:center; }
}
/* Downloads section (professional styling + fade) */
.downloads-section { background: linear-gradient(180deg, #ffffff 0%, #f9fffb 100%); padding: 3rem 0; }
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.8rem; margin-top: 2rem; }

.download-card { background: #fff; border-radius: 12px; padding: 1.8rem; border: 1px solid #e6f1ea; transition: all 360ms cubic-bezier(.2,.9,.2,1); box-shadow: 0 8px 24px rgba(7,34,11,0.04); }
.download-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(7,34,11,0.12); border-color: var(--brand-green); }

.download-card-icon { font-size: 2.4rem; margin-bottom: 0.8rem; display: inline-block; }
.download-card h3 { margin: 0 0 0.6rem; color: #0f3a1a; font-size: 1.15rem; }
.download-card p { color: #6b7d6b; font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.2rem; }
.download-card .btn-primary { display: inline-block; }

@media (max-width: 640px) {
  .downloads-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .download-card { padding: 1.4rem; }
}