/* ================================================================
   GLOBAL READABLE TEXT
   ================================================================ */
body { font-size:16px; line-height:1.8; color:#1a2535; -webkit-font-smoothing:antialiased; }
p, li { font-size:1rem; line-height:1.85; color:#2d3a4a; }
p { text-align:justify; hyphens:auto; }
h1,h2,h3,h4 { line-height:1.25; color:#0a2154; letter-spacing:-.01em; }
.about-intro-text p, .detail-article-body p, .ep-block-desc,
.epd-article-body, .fac-block-desc, .card-excerpt,
.mv-quote-text, .contact-text span { font-size:.97rem; line-height:1.85; text-align:justify; hyphens:auto; color:#374151; }
.card-meta, .ep-block-date, .ev-list-time, .evp-up-time,
.ann-card-school, small, .td-date { font-size:.8rem; line-height:1.6; color:#5a7090; }
.data-table td { font-size:.87rem; line-height:1.55; color:#2d3a4a; }
.form-label { font-size:.87rem; font-weight:700; color:#0a2154; }
.btn { font-size:.85rem; font-weight:700; letter-spacing:.02em; }

/* ==================================================== */

    /* ================================================================
   ABOUT PAGE STYLES
   ================================================================ */

    /* ── Page Header ── */
    .about-page-header {
        background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
        padding: 3rem 0 2.5rem;
        position: relative;
        overflow: hidden;
    }

    .about-page-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 50%, rgba(232, 160, 32, 0.09) 0%, transparent 60%);
        pointer-events: none;
    }

    .about-page-header::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 45px;
        background: var(--bg, #f7f9fc);
        clip-path: ellipse(55% 100% at 50% 100%);
    }

    .about-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 1.2rem;
    }

    .about-breadcrumb a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        transition: color 0.2s;
    }

    .about-breadcrumb a:hover {
        color: var(--amber);
    }

    .about-breadcrumb span {
        color: rgba(255, 255, 255, 0.3);
    }

    .about-header-title {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .about-header-sub {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.55);
        max-width: 520px;
        line-height: 1.6;
    }

    /* ── Intro Strip ── */
    .about-intro {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 28px rgba(13, 27, 42, 0.08);
        padding: 2.5rem 3rem;
        display: flex;
        align-items: center;
        gap: 2.5rem;
        margin-top: -1rem;
        position: relative;
        z-index: 2;
    }

    .about-intro-logo {
        flex-shrink: 0;
        width: 100px;
        height: 100px;
        border-radius: 16px;
        background: #f0f4f8;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(13, 27, 42, 0.1);
    }

    .about-intro-logo img {
        width: 90px;
        height: 90px;
        object-fit: contain;
    }

    .about-intro-text h2 {
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

    .about-intro-text p {
        font-size: 0.95rem;
        color: var(--text-muted, #6b7280);
        line-height: 1.7;
        margin: 0;
    }

    /* ── Mission & Vision Cards ── */
    .mv-section {
        padding: 4rem 0 3rem;
    }

    .mv-section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 160, 32, 0.12);
        border: 1px solid rgba(232, 160, 32, 0.3);
        color: #b47a10;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.3rem 1rem;
        border-radius: 100px;
        margin-bottom: 1rem;
    }

    .mv-section-heading {
        font-family: var(--font-display);
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.5rem;
        line-height: 1.25;
    }

    .mv-section-heading em {
        font-style: normal;
        color: var(--amber, #e8a020);
    }

    .mv-section-desc {
        font-size: 0.95rem;
        color: var(--text-muted, #6b7280);
        max-width: 540px;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    /* The two large cards */
    .mv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }

    .mv-card {
        border-radius: 20px;
        padding: 2.5rem 2.5rem 2.5rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 56px rgba(13, 27, 42, 0.16);
    }

    /* Vision card — dark navy */
    .mv-card-vision {
        background: linear-gradient(145deg, #0d1b2a 0%, #1a3352 100%);
        box-shadow: 0 8px 32px rgba(13, 27, 42, 0.22);
        color: #fff;
    }

    .mv-card-vision::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 160, 32, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .mv-card-vision::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -30px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
        pointer-events: none;
    }

    /* Mission card — amber accent */
    .mv-card-mission {
        background: #fff;
        border: 2px solid rgba(13, 27, 42, 0.07);
        box-shadow: 0 8px 32px rgba(13, 27, 42, 0.08);
    }

    .mv-card-mission::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--amber, #e8a020) 0%, #f5c842 100%);
        border-radius: 20px 20px 0 0;
    }

    /* Icon bubble */
    .mv-icon-bubble {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .mv-card-vision .mv-icon-bubble {
        background: rgba(232, 160, 32, 0.18);
        border: 1.5px solid rgba(232, 160, 32, 0.3);
    }

    .mv-card-mission .mv-icon-bubble {
        background: rgba(232, 160, 32, 0.1);
        border: 1.5px solid rgba(232, 160, 32, 0.25);
    }

    /* Card type label */
    .mv-card-type {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 0.6rem;
        position: relative;
        z-index: 1;
    }

    .mv-card-vision .mv-card-type {
        color: rgba(255, 255, 255, 0.45);
    }

    .mv-card-mission .mv-card-type {
        color: rgba(13, 27, 42, 0.35);
    }

    /* Card heading */
    .mv-card-heading {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1.1rem;
        position: relative;
        z-index: 1;
        line-height: 1.2;
    }

    .mv-card-vision .mv-card-heading {
        color: #fff;
    }

    .mv-card-mission .mv-card-heading {
        color: var(--navy);
    }

    /* Divider line */
    .mv-card-divider {
        width: 40px;
        height: 3px;
        border-radius: 2px;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
    }

    .mv-card-vision .mv-card-divider {
        background: rgba(232, 160, 32, 0.6);
    }

    .mv-card-mission .mv-card-divider {
        background: var(--amber, #e8a020);
    }

    /* Card body text */
    .mv-card-body {
        font-size: 1rem;
        line-height: 1.8;
        position: relative;
        z-index: 1;
    }

    .mv-card-vision .mv-card-body {
        color: rgba(255, 255, 255, 0.78);
    }

    .mv-card-mission .mv-card-body {
        color: var(--text-body, #374151);
    }

    /* Quote mark decoration */
    .mv-card-quote-mark {
        position: absolute;
        bottom: 1.25rem;
        right: 1.75rem;
        font-size: 6rem;
        font-family: var(--font-display);
        line-height: 1;
        font-weight: 900;
        opacity: 0.06;
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .mv-card-vision .mv-card-quote-mark {
        color: #fff;
    }

    .mv-card-mission .mv-card-quote-mark {
        color: var(--navy);
    }


    /* ── CTA Banner ── */
    .about-cta {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
        padding: 2.5rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 2rem;
        border: 1.5px solid rgba(13, 27, 42, 0.06);
    }

    .about-cta-text h3 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.35rem;
    }

    .about-cta-text p {
        font-size: 0.9rem;
        color: var(--text-muted, #6b7280);
        margin: 0;
        line-height: 1.6;
    }

    .about-cta-actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
        flex-wrap: wrap;
    }

    .btn-cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--navy);
        color: #fff;
        font-size: 0.88rem;
        font-weight: 700;
        padding: 0.7rem 1.5rem;
        border-radius: 9px;
        text-decoration: none;
        transition: opacity 0.2s, transform 0.2s;
    }

    .btn-cta-primary:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

    .btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: transparent;
        color: var(--navy);
        font-size: 0.88rem;
        font-weight: 700;
        padding: 0.7rem 1.5rem;
        border-radius: 9px;
        text-decoration: none;
        border: 1.5px solid rgba(13, 27, 42, 0.2);
        transition: border-color 0.2s, transform 0.2s;
    }

    .btn-cta-secondary:hover {
        border-color: var(--navy);
        transform: translateY(-1px);
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
        .mv-grid {
            grid-template-columns: 1fr;
        }

        .about-intro {
            flex-direction: column;
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .about-cta {
            flex-direction: column;
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .about-cta-actions {
            justify-content: center;
        }

        .values-strip {
            padding: 2rem 1.5rem;
        }
    }

    @media (max-width: 600px) {
        .mv-card {
            padding: 1.75rem 1.5rem;
        }

        .about-page-header {
            padding: 2.5rem 0 2rem;
        }
    }

/* ==================================================== */

/* ============================================================
   MISSION & VISION — About Page
   ============================================================ */
.mvv-section {
  background: #f0f4fb;
  padding: 4.5rem 1.5rem 5rem;
}
.mvv-inner { max-width: 1100px; margin: 0 auto; }
.mvv-heading { text-align: center; margin-bottom: 3rem; }
.mvv-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  color: #c8a415; text-transform: uppercase;
  margin-bottom: 0.65rem; padding: 0.28rem 1rem;
  border: 1px solid rgba(200,164,21,0.35); border-radius: 100px;
  background: rgba(200,164,21,0.06);
}
.mvv-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #0a2154;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 0.75rem;
}
.mvv-title-underline {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, #0a2154, #c8a415);
  border-radius: 2px; margin: 0 auto;
}
.mvv-cards-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 48px rgba(10,33,84,0.14);
}
.mvv-quote-card {
  position: relative; padding: 3rem 3.5rem 3rem 3rem;
  display: flex; flex-direction: column; gap: 1rem; overflow: hidden;
}
.mvv-card-dark { background: #0a2154; }
.mvv-card-dark .mvv-quote-label { color: #c8a415; }
.mvv-card-dark .mvv-quote-text  { color: rgba(255,255,255,0.88); }
.mvv-card-dark .mvv-quote-mark  { color: rgba(255,255,255,0.07); }
.mvv-card-light { background: #f7f9ff; border-left: 1px solid rgba(10,33,84,0.08); }
.mvv-card-light .mvv-quote-label { color: #0a2154; }
.mvv-card-light .mvv-quote-text  { color: #374151; }
.mvv-card-light .mvv-quote-mark  { color: rgba(10,33,84,0.06); }
.mvv-quote-label {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.mvv-quote-text {
  font-size: 1rem; line-height: 1.8;
  font-style: italic; position: relative; z-index: 1;
}
.mvv-quote-mark {
  position: absolute; bottom: -0.5rem; right: 1.5rem;
  font-size: 9rem; font-family: Georgia, serif;
  line-height: 1; user-select: none; pointer-events: none;
}
@media (max-width: 720px) {
  .mvv-cards-row { grid-template-columns: 1fr; }
  .mvv-card-light { border-left: none; border-top: 1px solid rgba(10,33,84,0.08); }
  .mvv-quote-card { padding: 2rem 2rem 2.5rem; }
}

/* ==================================================== */

/* ================================================================
   WAVE PAGE HERO
   ================================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 55%, #071020 100%);
  padding: calc(0rem + 70px) 0 0;
  overflow: hidden;
  z-index: 0;
}
.page-hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none; opacity: 0.18; z-index: 0;
}
.page-hero-glow {
  position: absolute; top: -60px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.page-hero-inner { position: relative; z-index: 2; padding-bottom: 1rem; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.45);
  margin-bottom: 1.1rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb span { color: rgba(255,255,255,.28); }
.page-hero-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: .6rem;
  text-shadow: 0 2px 24px rgba(0,0,80,.3);
}
.page-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 520px; line-height: 1.65;
}
.page-hero-wave { position: relative; z-index: 1; display: block; margin-bottom: -2px; line-height: 0; }
.page-hero-wave svg { display: block; width: 100%; height: 45px; }

/* ==================================================== */

.map-slide-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 48px rgba(10,33,84,0.15);
  background: #f0f2f5;
}
.map-slide {
  width: 100%; height: auto;
  display: block; object-fit: contain;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.map-slide:not(:first-child) {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.map-slide.active { opacity: 1; }

/* ==================================================== */

/* ============================================================
   SCHOOL HISTORY SECTION
   ============================================================ */
.school-history-section {
  background: #fff;
  padding: 5rem 0 4rem;
}
.sh-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em;
  color: #c8a415; text-transform: uppercase;
  margin-bottom: 0.65rem; padding: 0.28rem 1rem;
  border: 1px solid rgba(200,164,21,0.35); border-radius: 100px;
  background: rgba(200,164,21,0.06);
}
.sh-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #0a2154;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 0.75rem;
}
.sh-title-underline {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, #0a2154, #c8a415);
  border-radius: 2px; margin-bottom: 2.5rem;
}
.sh-body {
  max-width: 1100px;
  margin: 0 auto;
}
.sh-body p {
  font-size: 1rem; line-height: 1.9; color: #374151;
  text-align: justify; hyphens: auto;
  text-indent: 3em;
  margin-bottom: 1.5rem;
}

/* ============================================================
   DIT PROGRAM SECTION
   ============================================================ */
.dit-section {
  background: #f0f4fb;
  padding: 5rem 0 5rem;
  border-top: 3px solid #c8d8f0;
}
.dit-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.dit-heading { margin-bottom: 2.5rem; }
.dit-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em;
  color: #c8a415; text-transform: uppercase;
  margin-bottom: 0.65rem; padding: 0.28rem 1rem;
  border: 1px solid rgba(200,164,21,0.35); border-radius: 100px;
  background: rgba(200,164,21,0.06);
}
.dit-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #0a2154;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 0.75rem;
}
.dit-title-underline {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, #0a2154, #c8a415);
  border-radius: 2px; margin-bottom: 0;
}
.dit-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.dit-body p {
  font-size: 1rem; line-height: 1.9; color: #374151;
  text-align: justify; hyphens: auto;
  text-indent: 3em;
  margin-bottom: 1.5rem;
}
.dit-highlights {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 1.5rem;
}
.dit-highlight-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: #fff; border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(10,33,84,0.07);
  border-left: 4px solid #c8a415;
}
.dit-highlight-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.dit-highlight-text strong {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: #0a2154; margin-bottom: 0.2rem;
}
.dit-highlight-text span { font-size: 0.83rem; color: #6b7280; line-height: 1.5; }

.dit-nc-card {
  background: linear-gradient(145deg, #0a2154 0%, #1a3a6e 100%);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(10,33,84,0.22);
  position: sticky;
  top: 100px;
}
.dit-nc-card-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.9rem; font-weight: 800;
  color: #c8a415; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.3rem;
}
.dit-nc-card-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem; line-height: 1.5;
}
.dit-nc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.dit-nc-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.82);
  line-height: 1.45;
}
.dit-nc-list li::before {
  content: '✓';
  color: #c8a415; font-weight: 800; font-size: 0.75rem;
  flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 860px) {
  .dit-layout { grid-template-columns: 1fr; }
  .dit-nc-card { position: static; }
}

/* ==================================================== */

/* ============================================================
   SCHOOL UNIFORMS SECTION
   ============================================================ */
.uniforms-section {
  background: #fff;
  padding: 5rem 0 5rem;
  border-top: 3px solid #e8edf5;
}
.uniforms-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.uniforms-heading { margin-bottom: 2.5rem; }
.uniforms-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em;
  color: #c8a415; text-transform: uppercase;
  margin-bottom: 0.65rem; padding: 0.28rem 1rem;
  border: 1px solid rgba(200,164,21,0.35); border-radius: 100px;
  background: rgba(200,164,21,0.06);
}
.uniforms-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #0a2154;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 0.75rem;
}
.uniforms-title-underline {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, #0a2154, #c8a415);
  border-radius: 2px; margin-bottom: 0;
}
.uniforms-big-img {
  width: 100%;
  display: block;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 48px rgba(10,33,84,0.15);
}
.uniforms-big-img img {
  width: 100%; height: auto; display: block; object-fit: cover;
}