@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;
}

/* body:not(.splash-complete) {
    overflow: hidden;
} */

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

.site-header {
    position: relative;
    width: 100%;
    z-index: 30;
    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));
}

/* 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;
    visibility: hidden;
}

.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);
}
    .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);
}

@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;
}

.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;
}

.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 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    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;
}

.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: 1rem;
}

.course-photo-card {
    background: #ffffff;
    border: 1px solid #d7ead9;
    border-radius: 1rem;
    overflow: hidden;
    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;
}

.course-photo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px 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;
    transition: transform 0.35s ease;
}

.course-photo-card:hover .course-photo {
    transform: scale(1.05);
}

.course-photo-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    color: #103015;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(7,34,11,0.08);
}

.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;
}

.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);
}

.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;
}

@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;
    }

    .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;
}


.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;
  font-size: 3rem;
  overflow: hidden;
}
.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-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 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: background 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;
}

.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);
}

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

.site-footer {
    margin-top: 3rem;
    background: var(--black);
    color: var(--white);
    padding-top: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    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-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.site-footer h4 {
    margin-top: 0;
    color: #9be2a4;
}

.site-footer ul {
    margin: 0;
    padding-left: 1.1rem;
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
}

.copyright {
    margin-top: 1.4rem;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding: 0.9rem;
    font-size: 0.92rem;
}

@media screen and (max-width: 800px) {
    .container {
        width: min(1120px, 94%);
    }

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

    /* Improved header stacking so everything stays inside on mobile */
    .nav-wrap {
        align-items: center;
        padding: 0.6rem 0.6rem;
        gap: 0.6rem;
    }
    .container.nav-wrap{
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .brand {
        width: 100%;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }

    .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;
    }

    #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: hidden;
    }

    .brand {
        justify-content: center;
        text-align: center;
    }

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

    /* Mobile/collapsible navigation */
    .mobile-nav-toggle {
        display: inline-flex;
        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);
    }

    .main-nav {
        display: none;
        flex-direction: column;
        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%;
    }

    .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-family: 'Montserrat', sans-serif;
  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;
    }
}