.mission-vision-and-values-hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
}

.mission-vision-and-values-hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}


@media (max-width: 767px) {
    .mission-vision-and-values-hero {
        min-height: auto;
    }

    .mission-vision-and-values-hero-inner {
        padding: 80px 0 60px;
    }
}









.mv-section {
    padding: 88px 0;
    background: var(--bg);
}

/* Two-column grid with a centre divider */
.mv-section .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 48px;
    align-items: start;
}

/* Vertical divider line */
.mv-section .mv-divider {
    background: var(--border);
    width: 1px;
    align-self: stretch;
    min-height: 100%;
}

/* Each card */
.mv-section .mv-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    height: 100%;
    transition: box-shadow .25s;
}

.mv-section .mv-card:hover {
    box-shadow: var(--sh-md);
}

/* Top row: icon + eyebrow */
.mv-section .mv-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.mv-section .mv-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.mv-section .mv-icon-wrap--alt {
    background: rgba(22, 163, 74, .1);
    color: var(--green);
}

/* Override eyebrow margin inside card */
.mv-section .mv-card-top .eyebrow {
    margin-bottom: 0;
    font-size: .75rem;
}

/* List */
.mv-section .mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.mv-section .mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Check icon bubble */
.mv-section .mv-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
}

/* Green check for second card */
.mv-section .mv-card:last-child .mv-check {
    background: rgba(22, 163, 74, .12);
    color: var(--green);
}

/* Text block */
.mv-section .mv-list-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mv-section .mv-list-text strong {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.mv-section .mv-list-text span {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Bottom link */
.mv-section .mv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    transition: gap .18s, color .18s;
    width: 100%;
}

.mv-section .mv-link:hover {
    gap: 10px;
    color: var(--blue-mid);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
    .mv-section .mv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mv-section .mv-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .mv-section {
        padding: 56px 0;
    }

    .mv-section .mv-card {
        padding: 28px 22px;
    }
}








/* ── MISSION VISION VALUES – scoped under .mvv-section
   Requires Bootstrap Icons, Manrope + Source Sans 3,
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.mvv-section {
    padding: 88px 0;
    background: var(--white);
}

/* ── TOP GRID: Mission + Vision ─────────────────────── */
.mvv-section .mvv-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.mvv-section .mvv-top-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

.mvv-section .mvv-top-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
}

/* Mission – dark blue */
.mvv-section .mvv-mission {
    background: linear-gradient(140deg, #001e4a 0%, #004a99 60%, #0061c2 100%);
}

/* Vision – slightly lighter blue */
.mvv-section .mvv-vision {
    background: linear-gradient(140deg, #003a80 0%, #0061c2 60%, #0077d4 100%);
}

/* Values – slightly lighter blue */
.mvv-section .mvv-values {
    background: linear-gradient(140deg, #003a80 0%, #0061c2 60%, #0077d4 100%);
}

/* Dot-grid texture on both */
.mvv-section .mvv-top-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.mvv-section .mvv-top-card-inner {
    position: relative;
    z-index: 2;
    padding: 40px 36px;
}

/* Small label */
.mvv-section .mvv-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mvv-section .mvv-top-card .mvv-label {
    color: rgba(255, 255, 255, .55);
}

/* Icon circle */
.mvv-section .mvv-top-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.mvv-section .mvv-top-icon--green {
    background: rgba(22, 163, 74, .12);
    border: 1px solid rgba(22, 163, 74, .2);
    color: var(--green);
}

.mvv-section .mvv-top-card p {
    font-size: .93rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.78;
    margin: 0;
    font-weight: 300;
}

/* ── BOTTOM: VALUES ──────────────────────────────────── */
.mvv-section .mvv-values-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 44px 40px;
}





.mvv-section .mvv-values-desc p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 10px;
}

.mvv-section .mvv-values-desc p:last-child {
    margin-bottom: 0;
}

/* 4 pillar cards */
.mvv-section .mvv-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mvv-section .mvv-pillar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.mvv-section .mvv-pillar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}

.mvv-section .mvv-pillar:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: transparent;
}

.mvv-section .mvv-pillar:hover::after {
    transform: scaleX(1);
}

.mvv-section .mvv-pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 16px;
    transition: background .25s, color .25s;
}

.mvv-section .mvv-pillar:hover .mvv-pillar-icon {
    background: var(--blue);
    color: var(--white);
}

.mvv-section .mvv-pillar h5 {
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.mvv-section .mvv-pillar p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1199px) {
    .mvv-section .mvv-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .mvv-section .mvv-top-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mvv-section {
        padding: 56px 0;
    }

    .mvv-section .mvv-values-wrap {
        padding: 30px 22px;
    }

    .mvv-section .mvv-top-card-inner {
        padding: 30px 24px;
    }
}

@media (max-width: 575px) {
    .mvv-section .mvv-pillars {
        grid-template-columns: 1fr;
    }
}