/* ==========================================================================
   Education Incubator — homepage design system
   Token values below are the approved brand spec (client-provided reference
   mockup). They override custom.css's placeholder --purple/--night/etc.
   values — safe because no other view in this codebase references those
   custom properties directly (verified: only this file does).
   Classes are "edu-" prefixed throughout to avoid colliding with Bootstrap's
   own .container/.btn/.logo classes used sitewide — layout containers reuse
   Bootstrap's own .container for consistency with the rest of the site.

   NOTE ON !important: public/assets/web/asset/css/custom.css forces
   font-size (and line-height) on every h1-h6/p/li/a tag site-wide via
   `!important` (e.g. `h4 { font-size: var(--base-h4-size) !important; }`).
   Since this stylesheet loads after custom.css, matching `!important` here
   wins on source order — every rule below that sizes a heading/paragraph/
   link tag needs it, or the legacy rule silently wins.
   ========================================================================== */

:root {
    --purple: #7c5cff;
    --purple-dark: #5b3df0;
    --night: #0e0b1f;
    --heading: #1a1730;
    --text: #5b5876;
    --muted: #a29ecb;
    --bg-light: #f9f8fd;
    --line: #ece9f7;

    --edu-orange: #ffb020;
    --edu-green: #3ecf8e;
    --edu-dark-bg2: #141130;
    --edu-card-dark: #1c1836;
    --edu-border-dark: #2c2750;
    --edu-purple-rgb: 124, 92, 255;
    --edu-radius: 14px;
    --edu-section-py: clamp(48px, 7vw, 90px);
}

.edu-section {
    padding-block: var(--edu-section-py);
    position: relative;
}

.edu-section--light {
    background: #fff;
}

.edu-section--muted {
    background: var(--bg-light);
}

.edu-section--dark {
    background: var(--night);
    color: #fff;
}

.edu-section--dark2 {
    background: var(--edu-dark-bg2);
    color: #fff;
}

/* ---------- Eyebrow / heading ---------- */
.edu-eyebrow {
    text-align: center;
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.edu-eyebrow--start {
    text-align: start;
}

.edu-section--dark .edu-eyebrow--invert {
    color: #fff;
}

.edu-eyebrow-pill {
    display: inline-block;
    background: rgba(var(--edu-purple-rgb), 0.15);
    color: var(--purple);
    border: 1px solid rgba(var(--edu-purple-rgb), 0.4);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.edu-section-title {
    text-align: center;
    font-size: clamp(28px, 3.4vw, 38px) !important;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 16px;
    line-height: 1.25 !important;
}

.edu-section--dark .edu-section-title,
.edu-section--dark2 .edu-section-title {
    color: #fff;
}

.edu-section-title .edu-accent {
    color: var(--purple);
}

.edu-section-sub {
    text-align: center;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

.edu-section--dark .edu-section-sub,
.edu-section--dark2 .edu-section-sub {
    color: var(--muted);
}

/* ---------- Buttons ---------- */
.edu-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px !important;
    line-height: 1.4 !important;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.edu-btn:hover {
    transform: translateY(-1px);
}

.edu-btn-primary {
    background: var(--purple);
    color: #fff;
}

.edu-btn-primary:hover {
    color: #fff;
    background: var(--purple-dark);
}

.edu-btn-orange {
    background: var(--edu-orange);
    color: #2b1d00;
}

.edu-btn-orange:hover {
    color: #2b1d00;
}

.edu-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.edu-btn-outline:hover {
    color: #fff;
    border-color: #fff;
}

.edu-btn-outline-dark {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}

.edu-btn-outline-dark:hover {
    color: var(--purple-dark);
    border-color: var(--purple-dark);
}

.edu-btn-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.edu-center-btn {
    text-align: center;
}

/* ---------- Grids ---------- */
.edu-grid {
    display: grid;
    gap: 24px;
}

.edu-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.edu-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.edu-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {

    .edu-grid--3,
    .edu-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .edu-grid--2,
    .edu-grid--3,
    .edu-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Logo (header + footer) ---------- */
.edu-logo {
    color: #fff;
    font-weight: 800;
    font-size: 19px !important;
    line-height: 1.2 !important;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.edu-logo-dot {
    width: 10px;
    height: 10px;
    background: var(--purple);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ---------- Header nav ---------- */
.edu-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--night);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edu-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.edu-nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    min-width: 0;
}

.edu-nav-links a {
    color: var(--muted);
    font-size: 14.5px !important;
    line-height: 1.4 !important;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.edu-nav-links a:hover {
    color: #fff;
}

.edu-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.edu-nav-actions .edu-signin {
    color: var(--muted);
    font-size: 15px !important;
    line-height: 1.4 !important;
    text-decoration: none;
    white-space: nowrap;
}

.edu-nav-actions .edu-signin:hover {
    color: #fff;
}

.edu-nav-toggle {
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.edu-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color .15s ease, color .15s ease;
}

.edu-lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.edu-lang-btn i {
    font-size: 14px;
}

.edu-lang-modal-content {
    border-radius: var(--edu-radius, 14px);
    border: none;
}

.edu-lang-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edu-lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--heading);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    transition: border-color .15s ease, background-color .15s ease;
}

.edu-lang-option:hover {
    border-color: var(--purple);
    background: rgba(var(--edu-purple-rgb), .06);
}

.edu-lang-option.active {
    border-color: var(--purple);
    background: rgba(var(--edu-purple-rgb), .08);
    color: var(--purple);
}

.edu-lang-option i {
    color: var(--purple);
}

/* ==========================================================================
   Section-specific
   ========================================================================== */

/* Hero */
.edu-hero {
    background: radial-gradient(ellipse at top, #1c1640 0%, #0e0b1f 60%);
    color: #fff;
    padding-block: clamp(56px, 9vw, 90px) clamp(48px, 7vw, 70px);
    text-align: center;
}

.edu-hero h1 {
    font-size: clamp(30px, 4.4vw, 50px) !important;
    font-weight: 800;
    line-height: 1.2 !important;
    margin-bottom: 22px;
}

.edu-hero h1 .edu-accent {
    color: var(--purple);
}

.edu-hero p {
    max-width: 640px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: 18px !important;
    line-height: 1.7 !important;
}

.edu-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.edu-hero-search {
    max-width: 620px;
    margin: 0 auto;
    background: var(--edu-card-dark);
    border: 1px solid var(--edu-border-dark);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    gap: 8px;
}

.edu-hero-search select,
.edu-hero-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 14px;
    font-size: 15px;
    flex: 1;
}

.edu-hero-search select {
    border-inline-end: 1px solid var(--edu-border-dark);
    flex: 0 0 140px;
}

.edu-hero-search button {
    background: var(--edu-orange);
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 15px;
    color: #2b1d00;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .edu-hero-search {
        flex-wrap: wrap;
    }

    .edu-hero-search select,
    .edu-hero-search input {
        flex: 1 1 100%;
        border-inline-end: none;
    }
}

/* Not Just Education (intro) */
.edu-heading-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.edu-heading-row h2 {
    flex: 1;
    min-width: 280px;
    font-size: clamp(24px, 2.8vw, 32px) !important;
    line-height: 1.3 !important;
    font-weight: 800;
    color: var(--heading);
}

.edu-heading-row h2 .edu-accent {
    color: var(--purple);
}

.edu-heading-row p {
    flex: 1;
    min-width: 280px;
    color: var(--text);
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.edu-trio-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
}

.edu-trio-card .edu-icon-box {
    width: 46px;
    height: 46px;
    background: var(--purple);
    border-radius: 10px;
    margin: 0 auto 20px;
}

.edu-trio-card h4 {
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading);
}

.edu-trio-card p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--text);
}

/* Feature cards (Everything you need) */
.edu-feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px 26px;
    height: 100%;
}

.edu-feature-card .edu-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    margin-bottom: 18px;
}

.edu-feature-card h4 {
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading);
}

.edu-feature-card p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--text);
}

/* Marketplace tabs + listing cards */
.edu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.edu-tabs .edu-tab {
    padding: 9px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid var(--edu-border-dark);
    cursor: pointer;
    background: transparent;
}

.edu-tabs .edu-tab.is-active {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

.edu-listing-card {
    background: var(--edu-card-dark);
    border: 1px solid var(--edu-border-dark);
    border-radius: var(--edu-radius);
    padding: 26px;
    height: 100%;
}

.edu-listing-card .edu-tag {
    display: inline-block;
    background: rgba(var(--edu-purple-rgb), 0.15);
    color: var(--purple);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.edu-listing-card h4 {
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.edu-listing-card p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: var(--muted);
    margin-bottom: 16px;
}

.edu-listing-card .edu-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid var(--edu-border-dark);
    padding-top: 14px;
}

/* Steps (Idea to Global Institution) */
.edu-steps-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.edu-step {
    flex: 1;
    min-width: 110px;
    text-align: center;
}

.edu-step .edu-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--purple);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 19px;
    border: 2px solid var(--purple);
}

.edu-step h5 {
    font-size: 14.5px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading);
}

.edu-step p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: var(--text);
}

/* Invest (asset classes) */
.edu-invest-card {
    background: var(--edu-card-dark);
    border: 1px solid var(--edu-border-dark);
    border-radius: var(--edu-radius);
    padding: 28px 26px;
    height: 100%;
}

.edu-invest-card .edu-roi {
    color: var(--edu-green);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px;
}

.edu-invest-card h4 {
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.edu-invest-card p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--muted);
}

/* Partner universities */
.edu-uni-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.edu-uni-text {
    flex: 1;
    min-width: 280px;
}

.edu-uni-text h2 {
    font-size: clamp(24px, 2.8vw, 32px) !important;
    line-height: 1.3 !important;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--heading);
}

.edu-uni-text h2 .edu-accent {
    color: var(--purple);
}

.edu-uni-text p {
    color: var(--text);
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 24px;
}

.edu-uni-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.edu-uni-stats div {
    font-size: 13.5px;
    color: var(--text);
}

.edu-uni-stats strong {
    display: block;
    font-size: 22px;
    color: var(--heading);
}

.edu-uni-image {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.edu-uni-image img {
    border-radius: 16px;
    width: 100%;
    display: block;
}

.edu-float-card {
    position: absolute;
    bottom: -20px;
    inset-inline: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--heading);
}

/* Student journey */
.edu-journey-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 26px;
    border: 1px solid var(--line);
    height: 100%;
}

.edu-journey-card .edu-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--edu-orange);
    margin-bottom: 18px;
}

.edu-journey-card h4 {
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading);
}

.edu-journey-card p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--text);
}

/* Arabic / Islamic programs */
.edu-arabic-card {
    background: var(--edu-card-dark);
    border: 1px solid var(--edu-border-dark);
    border-radius: var(--edu-radius);
    padding: 28px 26px;
    display: flex;
    gap: 18px;
    height: 100%;
}

.edu-arabic-card .edu-icon-box {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 10px;
    background: var(--purple);
}

.edu-arabic-card h4 {
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.edu-arabic-card p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--muted);
}

/* Impact stats bar (full-bleed) */
.edu-impact-bar {
    background: linear-gradient(90deg, #1c1640, #241a55);
    padding: 64px 0;
}

.edu-kpi-eyebrow {
    display: block;
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.edu-impact-bar h3 {
    text-align: center;
    color: #fff;
    font-size: 28px !important;
    line-height: 1.3 !important;
    font-weight: 800;
    margin-bottom: 44px;
}

.edu-impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.edu-impact-stats div {
    text-align: center;
    color: #fff;
}

.edu-impact-stats strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--edu-orange);
}

.edu-impact-stats span {
    font-size: 13.5px;
    color: var(--muted);
}

/* Investors & partners (image grid) */
.edu-partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.edu-partner-logos div {
    background: var(--bg-light);
    border-radius: 12px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 700;
    font-size: 13.5px;
    overflow: hidden;
}

.edu-partner-logos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .edu-partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .edu-partner-logos {
        grid-template-columns: 1fr;
    }
}

/* Education intelligence / market reports */
.edu-intel-card {
    background: #fff;
    border-radius: var(--edu-radius);
    overflow: hidden;
    border: 1px solid var(--line);
    height: 100%;
}

.edu-intel-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.edu-intel-card .edu-intel-body {
    padding: 24px;
}

.edu-intel-card h4 {
    font-size: 17px !important;
    line-height: 1.4 !important;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading);
}

.edu-intel-card p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--text);
}

/* Check-list bullets (Investors page - sector cards) */
.edu-check-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.edu-check-list li {
    position: relative;
    padding-inline-start: 24px;
    margin-bottom: 10px;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    color: var(--text);
}

.edu-check-list li::before {
    content: '\2713';
    position: absolute;
    inset-inline-start: 0;
    color: var(--edu-green);
    font-weight: 700;
}

/* Final CTA */
.edu-cta-section {
    background: radial-gradient(ellipse at center, #241a55 0%, #0e0b1f 70%);
    color: #fff;
    padding-block: var(--edu-section-py);
    text-align: center;
}

.edu-cta-section .edu-section-title {
    color: #fff;
}

.edu-cta-section p {
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.edu-footer {
    background: var(--night);
    color: var(--muted);
    padding-block: 70px 30px;
}

.edu-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.edu-footer-grid h5 {
    color: #fff;
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-bottom: 18px;
}

.edu-footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.edu-footer-grid ul li {
    margin-bottom: 11px;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.edu-footer-grid ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.edu-footer-grid ul a:hover {
    color: #fff;
}

.edu-footer-grid p {
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.edu-footer-bottom {
    border-top: 1px solid var(--edu-border-dark);
    padding-top: 24px;
    text-align: center;
    font-size: 13.5px;
}

@media (max-width: 900px) {
    .edu-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .edu-footer-grid {
        grid-template-columns: 1fr;
    }

    .edu-steps-row {
        justify-content: center;
    }
}

/* ==========================================================================
   RTL overrides — logical properties cover almost everything already.
   ========================================================================== */
html[dir="rtl"] .edu-hero-search select {
    border-inline-end: none;
    border-inline-start: 1px solid var(--edu-border-dark);
}

/* ==========================================================================
   About page — split image/text sections, purpose cards, checklists,
   audience grid, principles grid. Reuses existing tokens/section wrappers.
   ========================================================================== */
.edu-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.edu-split.edu-split--reverse .edu-split-media {
    order: 2;
}

@media (max-width: 900px) {
    .edu-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .edu-split.edu-split--reverse .edu-split-media {
        order: 0;
    }
}

.edu-split-media img,
.edu-split-media .edu-photo-block {
    width: 100%;
    height: 320px;
    border-radius: var(--edu-radius);
    object-fit: cover;
    box-shadow: 0 25px 50px -20px rgba(2, 42, 76, 0.25);
}

.edu-split-media .edu-photo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.edu-split-text h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 16px;
    line-height: 1.3;
}

.edu-section--dark .edu-split-text h2 {
    color: #fff;
}

.edu-split-text p {
    color: var(--text);
    font-size: 14.5px !important;
    line-height: 1.85 !important;
    margin-bottom: 14px;
}

.edu-section--dark .edu-split-text p {
    color: var(--muted);
}

.edu-check-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.edu-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--heading);
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 14px;
}

.edu-section--dark .edu-check-list li {
    color: #fff;
}

.edu-check-list .edu-check-tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.edu-purpose-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .edu-purpose-cards {
        grid-template-columns: 1fr;
    }
}

.edu-purpose-card {
    border-radius: var(--edu-radius);
    padding: 40px 34px;
}

.edu-purpose-card--accent {
    background: linear-gradient(150deg, var(--purple), var(--purple-dark));
    color: #fff;
}

.edu-purpose-card--plain {
    background: #fff;
    box-shadow: 0 20px 45px -25px rgba(2, 42, 76, 0.2);
}

.edu-purpose-card--blue {
    background: linear-gradient(150deg, #2f7cf0, var(--purple));
    color: #fff;
}

.edu-purpose-card--blue .edu-icon-box {
    background: rgba(255, 255, 255, 0.18);
}

.edu-purpose-card--blue p {
    opacity: .92;
}

.edu-purpose-card .edu-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 20px;
}

.edu-purpose-card--accent .edu-icon-box {
    background: rgba(255, 255, 255, 0.18);
}

.edu-purpose-card--plain .edu-icon-box {
    background: rgba(124, 92, 255, 0.1);
    color: var(--purple);
}

.edu-purpose-card h3 {
    font-size: 19px !important;
    font-weight: 700;
    margin-bottom: 12px;
}

.edu-purpose-card p {
    font-size: 14px !important;
    line-height: 1.85 !important;
}

.edu-purpose-card--plain p {
    color: var(--text);
}

.edu-purpose-card--accent p {
    opacity: .92;
}

.edu-audience-item {
    text-align: center;
}

.edu-audience-item .edu-thumb {
    width: 100%;
    height: 130px;
    border-radius: var(--edu-radius);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 15px 30px -20px rgba(2, 42, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.edu-audience-item span {
    font-size: 13.5px !important;
    font-weight: 600;
}

/* ==========================================================================
   Admissions Services page — scoped additions, reusing existing tokens.
   ========================================================================== */
:root {
    --edu-blue: #2f7cf0;
}

.edu-search-card {
    background: #fff;
    border-radius: var(--edu-radius);
    box-shadow: 0 25px 60px -30px rgba(2, 42, 76, 0.35);
    padding: 26px 28px;
    margin-top: -46px;
    position: relative;
    z-index: 5;
}

.edu-search-card .form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.edu-search-card .form-select,
.edu-search-card .form-control {
    border-radius: 8px;
    border-color: var(--line);
    font-size: 14px;
}

.edu-soft-card {
    border-radius: var(--edu-radius);
    padding: 28px 24px;
    height: 100%;
}

.edu-soft-card .edu-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.edu-soft-card h4 {
    font-size: 16px !important;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading);
}

.edu-soft-card p {
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    color: var(--text);
    margin-bottom: 0;
}

.edu-soft-card--purple {
    background: rgba(var(--edu-purple-rgb), .08);
}

.edu-soft-card--purple .edu-icon-box {
    background: var(--purple);
    color: #fff;
}

.edu-soft-card--green {
    background: rgba(62, 207, 142, .12);
}

.edu-soft-card--green .edu-icon-box {
    background: var(--edu-green);
    color: #fff;
}

.edu-soft-card--yellow {
    background: rgba(255, 176, 32, .14);
}

.edu-soft-card--yellow .edu-icon-box {
    background: var(--edu-orange);
    color: #fff;
}

.edu-soft-card--blue {
    background: rgba(47, 124, 240, .1);
}

.edu-soft-card--blue .edu-icon-box {
    background: var(--edu-blue);
    color: #fff;
}

.edu-destination-card {
    border-radius: var(--edu-radius);
    padding: 26px 22px;
    height: 100%;
    position: relative;
}

.edu-destination-card .edu-destination-meta {
    display: flex;
    gap: 16px;
    margin: 14px 0 16px;
    font-size: 12.5px;
    color: var(--text);
}

.edu-destination-card .edu-destination-meta strong {
    color: var(--heading);
    font-weight: 700;
}

.edu-program-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--edu-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
}

.edu-program-card:hover {
    box-shadow: 0 25px 50px -30px rgba(2, 42, 76, 0.3);
    transform: translateY(-3px);
}

.edu-program-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.edu-program-card .edu-program-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.edu-program-card .edu-program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
    font-size: 12px;
    color: var(--muted);
}

.edu-program-card .edu-program-meta span {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 4px 9px;
}

.edu-scholarship-badge {
    display: inline-block;
    background: rgba(62, 207, 142, .15);
    color: var(--edu-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.edu-required-doc-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    height: 100%;
}

.edu-required-doc-item .edu-icon-box {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(var(--edu-purple-rgb), .1);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-callout-card {
    background: linear-gradient(135deg, rgba(var(--edu-purple-rgb), .08), rgba(47, 124, 240, .06));
    border-radius: var(--edu-radius);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 900px) {
    .edu-callout-card {
        grid-template-columns: 1fr;
    }
}

.edu-callout-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.edu-collage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.edu-collage-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.edu-collage-grid .edu-collage-stack {
    display: grid;
    gap: 16px;
}

.edu-collage-grid .edu-collage-stack img {
    height: 152px;
}

@media (max-width: 700px) {
    .edu-collage-grid {
        grid-template-columns: 1fr;
    }

    .edu-collage-grid .edu-collage-stack {
        grid-template-columns: 1fr 1fr;
    }
}
