﻿:root {
    --primary: #23466e;
    --primary-dark: #152d5e;
    --primary-light: #5b8fc4;
    --accent: #3ab5ae;
    --accent-light: #6dd5cf;
    --accent-soft: #d6f4f2;
    --teal: #0d6e6a;
    --text-dark: #0f2548;
    --text-mid: #2e5088;
    --text-light: #6688b8;
    --surface: #ffffff;
    --surface-alt: #f0f7f7;
    --surface-blue: #e6f0f9;
    --border: rgba(30, 61, 123, 0.09);
    --shadow-sm: 0 4px 15px rgba(30, 61, 123, 0.07);
    --shadow-md: 0 15px 40px rgba(30, 61, 123, 0.13);
    --shadow-lg: 0 30px 70px rgba(30, 61, 123, 0.20);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 50px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.academic-magazine {
    background-color: #fdfdfd;
    color: #2d2d2d;
    overflow-x: hidden;
}

.spread {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5vw;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15vh 5vw;
    min-height: 80vh;
    border-bottom: 1px solid #e0e0e0;
}

.left-page {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giant-letter {
    font-size: clamp(18rem, 40vw, 35rem);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.left-page h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
}

.right-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.right-page h4 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.right-page h4:first-child {
    margin-top: 0;
}

.right-page p,
.right-page ul {
    margin-bottom: 1.5rem;
}

.features-list,
.skills-list {
    list-style: none;
    padding-left: 0;
}

.features-list li,
.skills-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5rem;
}

.features-list li::before,
.skills-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #bca071;
    font-size: 1.2em;
}

.multi-column {
    column-count: 2;
    column-gap: 3rem;
}

.multi-column h4 {
    column-span: all;
}

@media (max-width: 992px) {
    .spread {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 10vh 5vw;
    }

    .left-page {
        min-height: 30vh;
        text-align: left;
    }

    .giant-letter {
        font-size: 18rem;
        left: 0;
        transform: translate(0, -50%);
    }

    .left-page h2 {
        text-align: left;
    }

    .multi-column {
        column-count: 1;
    }
}

/* ============================================================
   FOUNDATION & PRIMARY BENTO GRID
   ============================================================ */
.core-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}

.core-bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 300px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.core-bento-card.tall {
    grid-row: span 2;
    min-height: 624px;
    /* 300 + 24 + 300 */
}

@media (max-width: 768px) {
    .core-bento-card.tall {
        grid-row: span 1;
        min-height: 350px;
    }
}

.core-bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    z-index: 1;
}

.core-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.core-bento-card:hover .core-bento-bg {
    transform: scale(1.08);
}

.core-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 28, 61, 0.95) 0%, rgba(11, 28, 61, 0.5) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.4s ease;
}

.core-bento-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.core-bento-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.core-bento-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.core-bento-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.core-bento-card:hover .core-bento-desc {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================================
   MIDDLE STAGE & SECONDARY CULTURE SECTION
   ============================================================ */
.culture-section.dark-bg {
    background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 70%, #1a4a88 100%);
    color: #fff;
    position: relative;
    border-radius: 30px;
    margin: 0 auto;
    overflow: hidden;
}

.culture-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.culture-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.culture-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.15);
}

.culture-list i {
    font-size: 1.8rem;
    color: var(--accent-light, #6dd5cf);
    background: rgba(109, 213, 207, 0.12);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.culture-list li:hover i {
    transform: scale(1.1) rotate(5deg);
    background: rgba(109, 213, 207, 0.2);
}

.culture-list h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.culture-list p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   ACADEMIC OVERVIEW SPLIT LAYOUT (Admissions Style)
   ============================================================ */
.ov-feature-section {
    width: 100%;
    overflow: hidden;
    background: var(--surface);
}

.ov-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.ov-split.ov-reverse {
    direction: rtl;
}

.ov-split.ov-reverse>* {
    direction: ltr;
    /* Reset direction for child text */
}

/* ─────────────────────────────────
   LEFT PANEL — Light elegant content box
───────────────────────────────── */
.ov-left {
    background: #ffffff;
    padding: clamp(50px, 7vw, 90px) clamp(36px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.ov-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 80%, rgba(58, 181, 174, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(35, 70, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ov-split.ov-reverse .ov-left {
    background: #ffffff;
}

.ov-split.ov-reverse .ov-left::before {
    background-image:
        radial-gradient(circle at 90% 80%, rgba(58, 181, 174, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 20%, rgba(35, 70, 110, 0.04) 0%, transparent 50%);
}

.ov-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.ov-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(58, 181, 174, 0.5);
}

.ov-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.ov-heading-accent {
    color: var(--accent);
    font-style: italic;
    display: inline-block;
    position: relative;
}

.ov-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.ov-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 48ch;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-align: justify;
}

/* ─────────────────────────────────
   RIGHT PANEL — Image Area without box shadow or flowing gradient
───────────────────────────────── */
.ov-right {
    background: var(--surface-alt);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

/* Reusing the soft radial background from Home Admission to ground the image */
.ov-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 40% 60%, rgba(58, 181, 174, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 90%, rgba(30, 61, 123, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.ov-split.ov-reverse .ov-right {
    background: var(--surface-blue);
    background:
        radial-gradient(ellipse at 60% 60%, rgba(30, 61, 123, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 90%, rgba(58, 181, 174, 0.1) 0%, transparent 50%);
}

.ov-image-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* This keeps the subject anchored at the bottom edge */
}

.ov-student-img {
    width: 85%;
    height: auto;
    object-position: bottom center;
    object-fit: contain;
    /* Soft drop shadow applied directly to the image pixels, NO box-shadow */
    filter: drop-shadow(0 20px 40px rgba(15, 63, 166, 0.25));
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: -1px;
    /* Ensure no tiny gap below */
}

.ov-split:hover .ov-student-img {
    transform: scale(1.03) translateY(-10px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .ov-split,
    .ov-split.ov-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        /* Stack normally on mobile */
    }

    .ov-left {
        padding: 60px 30px;
    }

    .ov-right {
        min-height: 400px;
        order: -1;
        /* Image appears above text on mobile */
    }

    .ov-student-img {
        width: 75%;
    }
}

@media (max-width: 576px) {
    .ov-heading {
        font-size: 2.3rem;
    }

    .ov-right {
        min-height: 300px;
    }
}

/* ============================================================
   FOUNDATION — REIMAGINED FACILITIES SHOWCASE
   ============================================================ */

/* ── Section wrapper ── */
.fnd-showcase-section {
    background: #0d1b2a;
    overflow: hidden;
}

/* ── Section header ── */
.fnd-showcase-header {
    position: relative;
    padding: 100px 7% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #12355b 60%, #152d5e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fnd-showcase-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(58, 181, 174, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.fnd-showcase-header-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.fnd-showcase-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #3ab5ae;
    margin-bottom: 28px;
}

.fnd-eyebrow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 181, 174, 0.6), transparent);
    max-width: 80px;
}

.fnd-showcase-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.fnd-showcase-title em {
    font-style: italic;
    color: #3ab5ae;
}

.fnd-title-highlight {
    position: relative;
    display: inline-block;
    color: #D4AF37;
}

.fnd-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
    opacity: 0.7;
}

.fnd-showcase-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 50ch;
    margin: 0;
}

.fnd-showcase-deco-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(8rem, 15vw, 14rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    user-select: none;
    letter-spacing: -4px;
}

/* ── Showcase list ── */
.fnd-showcase-list {
    display: flex;
    flex-direction: column;
}

/* ── Individual card ── */
.fnd-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fnd-showcase-card.fnd-card-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.fnd-showcase-card.fnd-card-reverse>* {
    direction: ltr;
}

/* Scroll-reveal active state */
.fnd-showcase-card.fnd-reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.fnd-showcase-card:nth-child(2) {
    transition-delay: 0.05s;
}

.fnd-showcase-card:nth-child(3) {
    transition-delay: 0.1s;
}

.fnd-showcase-card:nth-child(4) {
    transition-delay: 0.15s;
}

/* ── Image side ── */
.fnd-card-image-side {
    position: relative;
    overflow: hidden;
}

.fnd-card-img-wrap {
    position: absolute;
    inset: 0;
}

.fnd-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fnd-showcase-card:hover .fnd-card-img {
    transform: scale(1.06);
}

.fnd-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(58, 181, 174, 0.2), rgba(11, 28, 61, 0.6));
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Card number badge */
.fnd-card-number {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
    transition: color 0.4s ease;
}

.fnd-showcase-card:hover .fnd-card-number {
    color: rgba(255, 255, 255, 0.25);
}

/* ── Content side ── */
.fnd-card-content-side {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fnd-card-content-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(58, 181, 174, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(18, 53, 91, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.fnd-card-content {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 6vw, 70px);
    max-width: 480px;
    width: 100%;
}

/* Tag pill */
.fnd-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(58, 181, 174, 0.1);
    color: #3ab5ae;
    border: 1px solid rgba(58, 181, 174, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: 'Oswald', sans-serif;
}

.fnd-card-tag i {
    font-size: 1rem;
}

/* Card title */
.fnd-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #0f2548;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Card description */
.fnd-card-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #4a6080;
    margin-bottom: 32px;
}

/* Feature pills row */
.fnd-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.fnd-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(58, 181, 174, 0.08);
    color: #3a7a76;
    border: 1px solid rgba(58, 181, 174, 0.2);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: all 0.25s ease;
}

.fnd-feature-pill i {
    font-size: 0.9rem;
}

.fnd-showcase-card:hover .fnd-feature-pill {
    transform: translateY(-2px);
}

/* Accent bar at bottom */
.fnd-card-accent-bar {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3ab5ae, #6dd5cf);
    transition: width 0.4s ease;
}

.fnd-showcase-card:hover .fnd-card-accent-bar {
    width: 120px;
}

/* ── Separator line between cards ── */
.fnd-showcase-card+.fnd-showcase-card {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Responsive ── */
@media (max-width: 900px) {

    .fnd-showcase-card,
    .fnd-showcase-card.fnd-card-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: auto;
    }

    .fnd-card-image-side {
        min-height: 320px;
    }

    .fnd-showcase-header {
        padding: 80px 6% 60px;
        flex-direction: column;
        align-items: flex-start;
    }

    .fnd-showcase-deco-number {
        display: none;
    }
}

@media (max-width: 576px) {
    .fnd-showcase-title {
        font-size: 2.6rem;
    }

    .fnd-card-image-side {
        min-height: 250px;
    }

    .fnd-card-content {
        padding: 40px 24px;
    }

    .fnd-card-title {
        font-size: 2rem;
    }
}

/* ============================================================
   FACILITIES — DESCRIPTION INTRO SECTION
   ============================================================ */
.fac-intro-section {
    background: #ffffff;
    padding: 90px 7% 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(18, 53, 91, 0.07);
}

.fac-intro-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(58, 181, 174, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(18, 53, 91, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.fac-intro-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.fac-intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary, #23466e);
    margin-bottom: 22px;
}

.fac-intro-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, #3ab5ae);
    box-shadow: 0 0 8px rgba(58, 181, 174, 0.5);
    flex-shrink: 0;
}

.fac-intro-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #0f2548;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 28px;
}

.fac-intro-accent {
    color: var(--accent, #3ab5ae);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.fac-intro-accent::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #3ab5ae), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.fac-intro-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #4a6080;
    max-width: 72ch;
    margin: 0 auto 56px;
}

/* Stats row */
.fac-intro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.fac-intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 25px;
}

.fac-intro-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #12355b;
    line-height: 1;
    background: linear-gradient(135deg, #12355b, #3ab5ae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fac-intro-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6688b8;
}

.fac-intro-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(18, 53, 91, 0.15), transparent);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 700px) {
    .fac-intro-section {
        padding: 60px 6% 50px;
    }

    .fac-intro-stat {
        padding: 16px 28px;
    }

    .fac-intro-stat-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(18, 53, 91, 0.15), transparent);
    }

    .fac-intro-stats {
        flex-direction: column;
        gap: 0;
    }
}