/* MVSR shell — top bar, header, menu (placeholder chrome) */

:root {
    --mvsr-navy: #0b205c;
    --mvsr-navy-hover: #0d2565;
    --mvsr-top-bg: #061a4d;
    --mvsr-border: #e0e0e0;
    --mvsr-shell-pad: clamp(16px, 4vw, 32px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.mvsr-site {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: #fff;
}

.mvsr-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--mvsr-shell-pad);
    padding-right: var(--mvsr-shell-pad);
}

/* Make only top/header/nav chrome full width */
.mvsr-top-header__inner.mvsr-shell,
.mvsr-main-header__inner.mvsr-shell,
.mvsr-nav-bar .mvsr-shell {
    max-width: none;
    margin: 0;
}

/* --- Top utility bar --- */
.mvsr-top-header {
    background: var(--mvsr-top-bg);
    color: #e8f0ff;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mvsr-top-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 44px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.mvsr-top-header__left {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 24px;
}

.mvsr-top-header__right {
    flex: 0 1 auto;
    min-height: 24px;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

/* --- Ticker (left) --- */
.mvsr-ticker {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 24px;
    font-size: 13px;
    color: #e8f0ff;
}

.mvsr-ticker__icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.mvsr-ticker__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.mvsr-ticker__track {
    position: relative;
    min-height: 1.35em;
}

.mvsr-ticker__item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mvsr-ticker__item--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mvsr-ticker__link {
    color: inherit;
    text-decoration: none;
}

.mvsr-ticker__link:hover {
    text-decoration: underline;
    color: #fff;
}

/* --- Top utilities (right: links + buttons) --- */
.mvsr-top-utilities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 14px;
    font-size: 13px;
}

.mvsr-top-utilities__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mvsr-top-utilities__link {
    color: #e8f0ff;
    text-decoration: none;
    white-space: nowrap;
}

.mvsr-top-utilities__link:hover {
    color: #fff;
    text-decoration: underline;
}

.mvsr-top-utilities__sep {
    display: inline-block;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.45);
    user-select: none;
}

.mvsr-top-utilities__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.mvsr-top-utilities__btn {
    display: inline-block;
    background: #e65c00;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 999px;
    border: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.mvsr-top-utilities__btn:hover {
    background: #ff6a12;
    color: #fff !important;
}

.mvsr-top-utilities__btn--pending {
    opacity: 0.85;
    cursor: not-allowed;
}

.mvsr-ph--top-right {
    min-width: 120px;
    min-height: 14px;
}

/* Mobile top bar: only Pay Fee + Student Login (hide ticker + text links) */
@media (max-width: 767.98px) {
    .mvsr-top-header__left {
        display: none;
    }

    .mvsr-top-utilities__links {
        display: none;
    }

    .mvsr-top-header__inner {
        justify-content: flex-end;
    }

    .mvsr-top-header__right {
        flex: 1 1 100%;
        max-width: none;
        margin-left: 0;
    }

    .mvsr-top-utilities {
        width: 100%;
        justify-content: flex-end;
    }

    .mvsr-main__placeholder {
        display: none;
    }
}

/* --- Main header (logo row) --- */
.mvsr-main-header {
    background: #fff;
    border-bottom: 1px solid var(--mvsr-border);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.mvsr-main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 90px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.mvsr-main-header__logo {
    flex: 0 0 auto;
}

.mvsr-main-header__logo a {
    display: block;
    line-height: 0;
}

.mvsr-logo-img {
    display: block;
    height: 80px;
    width: auto;
    object-fit: contain;
}

.mvsr-main-header__aside {
    flex: 0 0 auto;
}

.mvsr-accreditation-img {
    display: block;
    height: 72px;
    width: auto;
    object-fit: contain;
}

.mvsr-nav-toggle {
    display: none;
    margin-left: auto;
    padding: 8px 12px;
    border: 1px solid var(--mvsr-navy);
    background: #fff;
    color: var(--mvsr-navy);
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

.mvsr-nav-toggle:hover {
    background: #f4f6fb;
}

/* --- Primary menu bar --- */
.mvsr-nav-bar {
    background: var(--mvsr-navy);
    color: #fff;
}

.mvsr-nav-bar .mvsr-shell {
    padding-top: 0;
    padding-bottom: 0;
}

.mvsr-nav-bar__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Let links + search share one row: nav must not claim 100% width (see .mvsr-nav-menu width below). */
.mvsr-nav-bar__row .mvsr-nav-menu {
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important; /* override .mvsr-nav-menu { width:100% } so search stays on same row */
    max-width: none;
    justify-content: flex-start;
    overflow-x: visible; /* avoid in-bar horizontal scrollbar; use Read more + wrap in tight widths */
}

/* Shown only on wide desktop so it does not crowd links (see min-width rule below). */
.mvsr-nav-search {
    display: none;
    align-items: stretch;
    flex: 0 0 auto;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 1600px) {
    .mvsr-nav-search {
        display: flex;
    }
}

.mvsr-nav-search__label {
    display: flex;
    margin: 0;
}

.mvsr-nav-search__input {
    width: min(220px, 36vw);
    min-width: 120px;
    border: none;
    padding: 8px 12px;
    font-size: 0.88rem;
    background: #fff;
    color: #1a1a1a;
    outline: none;
}

.mvsr-nav-search__submit {
    border: none;
    padding: 0 14px;
    background: #e65c00;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mvsr-nav-search__submit:hover {
    background: #cc5200;
}

.mvsr-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mvsr-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: clamp(2px, 1vw, 12px);
}

.mvsr-nav-item {
    position: relative;
    flex: 0 0 auto;
}

.mvsr-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 48px;
    padding: 0 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mvsr-nav-arrow {
    font-size: 0.6rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.mvsr-nav-item:hover .mvsr-nav-link,
.mvsr-nav-item:focus-within .mvsr-nav-link {
    background: var(--mvsr-navy-hover);
}

.mvsr-nav-item:hover .mvsr-nav-arrow,
.mvsr-nav-item:focus-within .mvsr-nav-arrow {
    transform: rotate(180deg);
}

/* --- "Read more" overflow
   992–1799: Research + IIC + Alumni live only inside Read more (no duplicate Research after the button)
   1800+: full inline bar. Search from 1600px. --- */
.mvsr-nav-more {
    display: none;
}

.mvsr-nav-link--more {
    font: inherit;
    font-family: inherit;
    text-align: center;
    width: 100%;
}

.mvsr-nav-more .mvsr-nav-dropdown {
    left: auto;
    right: 0;
}

/* 992px–1799.98px: overflow clones hidden — real links are only inside Read more dropdown */
@media (min-width: 992px) and (max-width: 1799.98px) {
    .mvsr-nav-item--overflow-research,
    .mvsr-nav-item--overflow-after {
        display: none !important;
    }

    .mvsr-nav-more {
        display: list-item;
    }
}

/* 992px–1180px: tighter bar + wrap on small laptops */
@media (min-width: 992px) and (max-width: 1180px) {
    .mvsr-nav-bar__row {
        flex-wrap: wrap;
        align-items: flex-start;
        row-gap: 6px;
    }

    .mvsr-nav-bar__row .mvsr-nav-menu {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .mvsr-nav-link,
    .mvsr-nav-link--more {
        min-height: 44px;
        padding: 0 9px;
        font-size: 0.88rem;
    }
}

/* 1800px+: full inline bar (+ search visible from 1600px) */
@media (min-width: 1800px) {
    .mvsr-nav-more {
        display: none !important;
    }

    .mvsr-nav-item--overflow-research,
    .mvsr-nav-item--overflow-after {
        display: list-item !important;
    }
}

/* --- Dropdown panel --- */
.mvsr-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--mvsr-border);
    border-top: 3px solid var(--mvsr-navy);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 900;
}

.mvsr-nav-item--has-dropdown:hover .mvsr-nav-dropdown,
.mvsr-nav-item--has-dropdown:focus-within .mvsr-nav-dropdown {
    display: block;
}

.mvsr-nav-dropdown__item {
    margin: 0;
}

.mvsr-nav-dropdown__link {
    display: block;
    padding: 9px 18px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.35;
    transition: background 0.12s ease, color 0.12s ease;
    white-space: normal;
}

.mvsr-nav-dropdown__link:hover {
    background: #f0f4ff;
    color: var(--mvsr-navy);
}

/* placeholder styles kept for any ph spans still in markup */
.mvsr-nav-link--placeholder {
    min-width: 72px;
    cursor: default;
}

.mvsr-nav-link--placeholder:empty::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    margin: 0 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
}

/* --- Placeholder blocks (visual only) --- */
.mvsr-ph {
    display: block;
    width: 100%;
    min-height: 12px;
    border-radius: 6px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.06),
        rgba(0, 0, 0, 0.06) 6px,
        rgba(0, 0, 0, 0.02) 6px,
        rgba(0, 0, 0, 0.02) 12px
    );
    border: 1px dashed rgba(0, 0, 0, 0.12);
}

.mvsr-top-header .mvsr-ph {
    border-color: rgba(255, 255, 255, 0.2);
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.08) 6px,
        rgba(255, 255, 255, 0.02) 6px,
        rgba(255, 255, 255, 0.02) 12px
    );
}

/* --- Page + footer --- */
.mvsr-main {
    min-height: 40vh;
    padding: 32px var(--mvsr-shell-pad);
}

/* Full-width reference footer (main-footer) — styles at end of file */

@media (max-width: 991.98px) {
    .mvsr-main-header__aside {
        display: none;
    }

    .mvsr-main-header__logo {
        flex: 0 0 auto;
    }

    .mvsr-logo-img {
        height: 60px;
    }

    .mvsr-nav-toggle {
        display: inline-flex;
    }

    .mvsr-nav-more {
        display: none !important;
    }

    /* Full list in flyout: overflow duplicates must show (desktop hides them into Read more). */
    .mvsr-nav-item--overflow-research,
    .mvsr-nav-item--overflow-after {
        display: list-item !important;
    }

    /* Mobile nav: stack vertically below header */
    .mvsr-nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-top: 1px solid var(--mvsr-border);
    }

    .mvsr-nav-menu.is-open {
        display: flex;
    }

    .mvsr-nav-bar .mvsr-nav-link {
        color: #1a1a1a;
        border-bottom: 1px solid var(--mvsr-border);
        min-height: 44px;
    }

    .mvsr-nav-item:hover .mvsr-nav-link,
    .mvsr-nav-item:focus-within .mvsr-nav-link {
        background: #f0f4ff;
        color: var(--mvsr-navy);
    }

    /* Mobile dropdown: show inline below parent */
    .mvsr-nav-dropdown {
        display: none;
        position: static;
        border: none;
        border-top: none;
        box-shadow: none;
        border-radius: 0;
        background: #f8faff;
        padding: 0;
        min-width: 0;
        width: 100%;
    }

    .mvsr-nav-item--has-dropdown.is-open .mvsr-nav-dropdown {
        display: block;
    }

    .mvsr-nav-dropdown__link {
        padding: 10px 28px;
        border-bottom: 1px solid #e8edf8;
        font-size: 0.85rem;
    }

    .mvsr-nav-link--placeholder:empty::after {
        background: rgba(11, 32, 92, 0.15);
    }
}

/* =====================================================
   Hero Banner
   ===================================================== */
.mvsr-hero {
    position: relative;
    width: 100%;
    height: clamp(420px, 70vh, 680px);
    overflow: hidden;
    background: #061a4d;
}

/* YouTube iframe fills the container */
.mvsr-hero__video-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mvsr-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;   /* 16:9 fill */
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
}

/* Dark gradient overlay */
.mvsr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(6, 26, 77, 0.82) 0%,
        rgba(6, 26, 77, 0.55) 55%,
        rgba(6, 26, 77, 0.25) 100%
    );
}

/* Swiper fills the hero */
.mvsr-hero__swiper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.mvsr-hero__swiper .swiper-wrapper,
.mvsr-hero__swiper .swiper-slide {
    height: 100%;
}

/* Slide content — shell provides side padding; full height for vertical centering */
.mvsr-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #fff;
}

/* Cap the text block so it doesn't sprawl across full width */
.mvsr-hero__content > * {
    max-width: 600px;
}

/* Title */
.mvsr-hero__title {
    margin: 0 0 18px;
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.mvsr-hero__title-line {
    display: block;
}

/* Description */
.mvsr-hero__desc {
    margin: 0 0 28px;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    max-width: 540px;
}

/* CTA button */
.mvsr-hero__cta {
    display: inline-block;
    background: #e65c00;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(230,92,0,0.45);
}

.mvsr-hero__cta:hover {
    background: #ff6a12;
    transform: translateY(-1px);
    color: #fff;
}

/* Swiper pagination dots */
.mvsr-hero__pagination {
    bottom: 20px !important;
}

.mvsr-hero__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background 0.2s, width 0.2s;
}

.mvsr-hero__pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Swiper prev/next arrows */
.mvsr-hero__btn-prev,
.mvsr-hero__btn-next {
    color: rgba(255,255,255,0.75) !important;
    transition: color 0.2s;
}

.mvsr-hero__btn-prev:hover,
.mvsr-hero__btn-next:hover {
    color: #fff !important;
}

.mvsr-hero__btn-prev::after,
.mvsr-hero__btn-next::after {
    font-size: 1.4rem !important;
    font-weight: 900;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .mvsr-hero {
        height: clamp(320px, 60vh, 480px);
    }

    .mvsr-hero__title {
        font-size: clamp(1.35rem, 6vw, 2rem);
    }

    .mvsr-hero__btn-prev,
    .mvsr-hero__btn-next {
        display: none !important;
    }
}

/* =====================================================
   About Us Section
   ===================================================== */
.mvsr-about {
    padding: 72px 0;
    background: #fff;
}

.mvsr-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Section label pill */
.mvsr-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e65c00;
    background: #fff3ec;
    border: 1px solid #ffd5b8;
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.mvsr-about__heading {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--mvsr-navy);
    line-height: 1.2;
}

.mvsr-about__body {
    margin: 0 0 16px;
    font-size: 0.975rem;
    color: #444;
    line-height: 1.75;
}

.mvsr-about__body:last-of-type {
    margin-bottom: 28px;
}

.mvsr-about__cta {
    display: inline-block;
    background: var(--mvsr-navy);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 26px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.mvsr-about__cta:hover {
    background: #0d2565;
    transform: translateY(-1px);
    color: #fff;
}

/* ---- Gallery Swiper (right column) ---- */
.mvsr-about__gallery {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(11, 32, 92, 0.12);
    aspect-ratio: 4 / 3;
    background: #e8edf8;
}

.mvsr-gallery-swiper {
    width: 100%;
    height: 100%;
}

.mvsr-gallery-slide {
    position: relative;
    overflow: hidden;
}

.mvsr-gallery-slide__link {
    display: block;
    width: 100%;
    height: 100%;
}

.mvsr-gallery-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mvsr-gallery-slide:hover .mvsr-gallery-slide__img {
    transform: scale(1.04);
}

.mvsr-gallery-slide__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: linear-gradient(transparent, rgba(6,26,77,0.72));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Gallery Swiper controls */
.mvsr-gallery-pagination {
    bottom: 10px !important;
}

.mvsr-gallery-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.55);
    opacity: 1;
}

.mvsr-gallery-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

.mvsr-gallery-btn-prev,
.mvsr-gallery-btn-next {
    color: rgba(255,255,255,0.8) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.mvsr-gallery-btn-prev::after,
.mvsr-gallery-btn-next::after {
    font-size: 1.1rem !important;
    font-weight: 900;
}

/* Empty state */
.mvsr-gallery-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #8a99b8;
    text-align: center;
    padding: 24px;
    gap: 12px;
}

.mvsr-gallery-empty .fa-images {
    font-size: 3rem;
    opacity: 0.4;
}

.mvsr-gallery-empty p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.mvsr-gallery-empty code {
    font-size: 0.8rem;
    background: #f0f4ff;
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--mvsr-navy);
}

/* Responsive */
@media (max-width: 900px) {
    .mvsr-about__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mvsr-about__gallery {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767.98px) {
    .mvsr-about {
        padding: 48px 0;
    }
}

/* =====================================================
   Shared section typography helpers
   ===================================================== */
.mvsr-section-title {
    margin: 6px 0 10px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-section-sub {
    margin: 0 0 36px;
    font-size: 0.975rem;
    color: #64748b;
    max-width: 640px;
}

/* =====================================================
   Section 2 – Our Recruiters (infinite auto-scroll)
   ===================================================== */
.mvsr-recruiters {
    padding: 56px 0;
    background: #f8faff;
    overflow: hidden;
}

.mvsr-recruiters__header {
    text-align: center;
    margin-bottom: 36px;
}

.mvsr-recruiters__title {
    margin: 6px 0 8px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-recruiters__sub {
    margin: 0;
    font-size: 0.975rem;
    color: #64748b;
}

/* The scrolling track */
.mvsr-recruiters__track-wrap {
    position: relative;
    overflow: hidden;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.mvsr-recruiters__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: mvsrScrollLogos 36s linear infinite;
}

.mvsr-recruiters__track:hover {
    animation-play-state: paused;
}

@keyframes mvsrScrollLogos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.mvsr-recruiters__item {
    flex: 0 0 auto;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e2e8f0;
}

.mvsr-recruiters__item img {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.mvsr-recruiters__item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.mvsr-recruiters__item a {
    display: flex;
    align-items: center;
}

/* =====================================================
   Section 4 – Upcoming Events
   ===================================================== */
.mvsr-events {
    padding: 72px 0;
    background: #f8faff;
}

.mvsr-events__header {
    text-align: center;
    margin-bottom: 40px;
}

.mvsr-events__header .mvsr-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.mvsr-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mvsr-events__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 32px;
}

.mvsr-event-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--mvsr-border);
    border-radius: 12px;
    padding: 22px 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mvsr-event-card--has-thumb {
    flex-wrap: wrap;
    align-items: flex-start;
}

.mvsr-event-card__thumb {
    flex: 1 1 100%;
    width: 100%;
    max-height: 160px;
    border-radius: 10px;
    overflow: hidden;
    margin: -0.5rem -0.5rem 0.25rem;
}

.mvsr-event-card__thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.mvsr-event-card--has-thumb .mvsr-event-card__date {
    margin-top: 0.25rem;
}

.mvsr-event-card:hover {
    box-shadow: 0 6px 24px rgba(11,32,92,0.1);
    transform: translateY(-2px);
}

.mvsr-event-card__date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--mvsr-navy);
    border-radius: 10px;
    color: #fff;
    line-height: 1;
}

.mvsr-event-card__month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0.8;
    text-transform: uppercase;
}

.mvsr-event-card__day {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 2px;
}

.mvsr-event-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.mvsr-event-card__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--mvsr-navy);
    line-height: 1.35;
}

.mvsr-event-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mvsr-event-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 999px;
    background: #e8edf8;
    color: var(--mvsr-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mvsr-event-card__desc {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mvsr-event-card__cta {
    margin-top: auto;
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e65c00;
    text-decoration: none;
}

.mvsr-event-card__cta:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .mvsr-events__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .mvsr-events__grid { grid-template-columns: 1fr; }
    .mvsr-recruiters__item img { height: 34px; }
}

/* =====================================================
   Sections 5-12
   ===================================================== */
.mvsr-departments,
.mvsr-placement,
.mvsr-feature-block,
.mvsr-strengths {
    padding: 72px 0;
}

.mvsr-departments { background: #fff; }
.mvsr-placement { background: #f8faff; }
.mvsr-feature-block { background: #fff; }
.mvsr-feature-block:nth-of-type(even) { background: #f8faff; }
.mvsr-strengths { background: #fff; }

.mvsr-dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mvsr-dept-card {
    border: 1px solid var(--mvsr-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.mvsr-dept-card__img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.mvsr-dept-card__body { padding: 16px; }
.mvsr-dept-card__title { margin: 0 0 8px; color: var(--mvsr-navy); font-size: 1rem; }
.mvsr-dept-card__desc { margin: 0 0 10px; font-size: 0.86rem; color: #555; line-height: 1.5; }
.mvsr-dept-card__list { margin: 0 0 12px 18px; padding: 0; color: #475569; font-size: 0.82rem; line-height: 1.5; }
.mvsr-dept-card__btn {
    display: inline-block; text-decoration: none; background: var(--mvsr-navy); color: #fff;
    padding: 8px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
}

.mvsr-dept-cta-wrap { text-align: center; margin-top: 28px; }

/* Section "View all …" / primary CTA aligned below cards or two-column content */
.mvsr-section-footer-cta {
    text-align: center;
    margin-top: 28px;
}

.mvsr-section-footer-cta--placement {
    margin-top: 32px;
}
.mvsr-dept-all-btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    text-decoration: none; background: #e65c00; color: #fff;
    padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 0.86rem;
    line-height: 1.25;
}
.mvsr-dept-all-btn__text { line-height: 1.2; }
.mvsr-dept-all-btn--doc::before,
.mvsr-dept-all-btn--pdf::before {
    font-family: "Font Awesome 6 Free";
    content: "\f1c1";
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1;
}
.mvsr-dept-all-btn--external::before {
    font-family: "Font Awesome 6 Free";
    content: "\f35d";
    font-weight: 900;
    font-size: 0.92rem;
    line-height: 1;
}
.mvsr-dept-all-btn:hover { filter: brightness(1.05); color: #fff; }
.mvsr-dept-all-btn--outline {
    background: transparent;
    color: var(--mvsr-navy);
    border: 2px solid rgba(11, 34, 96, 0.35);
}
.mvsr-dept-all-btn--outline:hover {
    filter: none;
    background: rgba(11, 34, 96, 0.06);
    color: var(--mvsr-navy);
}
.mvsr-doc-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 6px;
    font-size: 0.88rem; font-weight: 700; color: var(--mvsr-navy);
    text-decoration: none;
}
.mvsr-doc-link:hover { text-decoration: underline; color: #e65c00; }
.mvsr-doc-link--pdf .fa-file-pdf { color: #c0262d; font-size: 1.15rem; }
.mvsr-doc-link--external .fa-arrow-up-right-from-square { font-size: 0.85rem; opacity: 0.85; }
.mvsr-doc-link--muted {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 6px;
    font-size: 0.85rem; font-weight: 600; color: #94a3b8;
}

.mvsr-placement__grid,
.mvsr-feature-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Zigzag: Career Success uses image first, then content */
.mvsr-placement__grid .mvsr-placement__media { order: 1; }
.mvsr-placement__grid .mvsr-placement__content { order: 2; }

.mvsr-feature-block__grid.is-reverse .mvsr-feature-block__content { order: 2; }
.mvsr-feature-block__grid.is-reverse .mvsr-feature-block__media { order: 1; }

.mvsr-placement__desc { color: #475569; line-height: 1.75; margin: 0 0 14px; font-size: 0.93rem; }
.mvsr-placement__highlights { margin: 0 0 18px 18px; padding: 0; color: #1f2937; line-height: 1.6; font-size: 0.9rem; }
.mvsr-placement__highlights li { margin-bottom: 6px; }

.mvsr-placement__media,
.mvsr-feature-block__media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(11, 32, 92, 0.12);
    background: #e8edf8;
}

.mvsr-placement-swiper,
.mvsr-feature-swiper { width: 100%; height: 100%; }

.mvsr-placement__img {
    width: 100%;
    height: min(460px, 58vw);
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.mvsr-placement-pagination,
.mvsr-feature-swiper .swiper-pagination { bottom: 10px !important; }
.mvsr-placement-pagination .swiper-pagination-bullet,
.mvsr-feature-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); opacity: 1; }
.mvsr-placement-pagination .swiper-pagination-bullet-active,
.mvsr-feature-swiper .swiper-pagination-bullet-active { background: #fff; width: 20px; border-radius: 4px; }

.mvsr-placement-prev, .mvsr-placement-next,
.mvsr-feature-swiper .swiper-button-prev, .mvsr-feature-swiper .swiper-button-next { color: rgba(255,255,255,0.8) !important; }

.mvsr-strengths__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mvsr-strength-card {
    border: 1px solid var(--mvsr-border);
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}

.mvsr-strength-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: var(--mvsr-navy);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.mvsr-strength-card h3 { margin: 0 0 8px; font-size: 0.95rem; color: var(--mvsr-navy); }
.mvsr-strength-card p { margin: 0; font-size: 0.84rem; line-height: 1.55; color: #555; }

/* Section 3: synced announcements */
.mvsr-news-sync {
    padding: 72px 0;
    background: #fff;
}

.mvsr-news-sync__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.mvsr-news-text-swiper {
    height: 360px;
    border: 1px solid var(--mvsr-border);
    border-radius: 10px;
    background: #fafbff;
}

.mvsr-news-sync__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    padding: 14px 18px;
    text-decoration: none;
    border-bottom: 1px solid #eef0f8;
}

.mvsr-news-sync__item h3 {
    margin: 0 0 6px;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mvsr-news-sync__item span {
    color: #94a3b8;
    font-size: 0.78rem;
}

.mvsr-news-sync__item:hover h3 {
    color: var(--mvsr-navy);
    text-decoration: underline;
}

.mvsr-news-image-swiper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 32, 92, 0.12);
    background: #e8edf8;
    height: 360px;
}

.mvsr-news-sync__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.mvsr-news-sync__pagination {
    bottom: 8px !important;
}

.mvsr-announcement-detail__img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1100px) {
    .mvsr-dept-grid { grid-template-columns: repeat(2, 1fr); }
    .mvsr-strengths__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .mvsr-placement__grid, .mvsr-feature-block__grid { grid-template-columns: 1fr; }
    .mvsr-news-sync__grid { grid-template-columns: 1fr; }
    .mvsr-placement__grid .mvsr-placement__media,
    .mvsr-placement__grid .mvsr-placement__content { order: initial; }
    .mvsr-feature-block__grid.is-reverse .mvsr-feature-block__content,
    .mvsr-feature-block__grid.is-reverse .mvsr-feature-block__media { order: initial; }
    .mvsr-strengths__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .mvsr-dept-grid { grid-template-columns: 1fr; }
    .mvsr-strengths__grid { grid-template-columns: 1fr; }
    .mvsr-departments, .mvsr-placement, .mvsr-feature-block, .mvsr-strengths { padding: 50px 0; }
}

/* ===== Reference footer (old is gold/reference) ===== */
.main-footer {
    background: #fff;
    color: #333;
    margin-top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #ea580c 100%);
}

.footer-main {
    padding: 70px 0 50px;
    position: relative;
}

.mvsr-footer-main-inner {
    max-width: 1400px;
}

.mvsr-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 40px;
    align-items: start;
}

.mvsr-footer-menu-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-location {
    margin-bottom: 0;
}

.footer-section-heading {
    color: #0b205c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.footer-section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #ea580c;
    border-radius: 2px;
}

.footer-map-wrapper {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-map-wrapper iframe {
    display: block;
    width: 100%;
    border: 0;
}

.footer-contact-details {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.contact-item i {
    color: #0b205c;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 16px;
    min-width: 20px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #0b205c;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #0b205c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    border: 1px solid #e5e7eb;
}

.footer-social .social-icon:hover {
    background: #ea580c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
    border-color: #ea580c;
}

.footer-menus {
    padding-left: 0;
}

@media (min-width: 992px) {
    .footer-menus {
        padding-left: 40px;
    }
}

.footer-menu-block {
    margin-bottom: 0;
}

.footer-menu-heading {
    color: #0b205c;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    position: relative;
}

.footer-menu-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #ea580c;
    border-radius: 2px;
}

.footer-menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-items li {
    margin-bottom: 10px;
}

.footer-menu-items li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.footer-menu-items li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #ea580c;
}

.footer-menu-items li a:hover {
    color: #0b205c;
    padding-left: 5px;
}

.mvsr-footer-compliance {
    margin: 28px 0 0;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.mvsr-footer-compliance a {
    color: #555;
    text-decoration: none;
}

.mvsr-footer-compliance a:hover {
    color: #0b205c;
    text-decoration: underline;
}

.mvsr-footer-compliance__sep {
    margin: 0 6px;
    color: #ccc;
}

.footer-icons-bar {
    padding: 35px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.mvsr-footer-icons-inner {
    max-width: 1400px;
}

.footer-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 20px 25px;
    border-radius: 10px;
    min-width: 110px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.footer-icon-btn:hover {
    color: #0b205c;
    background: #fff;
    border-color: #0b205c;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(11, 32, 92, 0.15);
}

.footer-icon-btn i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #0b205c;
    transition: all 0.3s ease;
}

.footer-icon-btn:hover i {
    transform: scale(1.15);
}

.footer-icon-btn span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.footer-bottom-bar {
    padding: 25px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.mvsr-footer-bottom-inner {
    max-width: 1400px;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.legal-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-links li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.legal-links li a:hover {
    color: #0b205c;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .mvsr-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-menus {
        padding-left: 0;
    }

    .mvsr-footer-menu-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .mvsr-footer-menu-row {
        grid-template-columns: 1fr;
    }

    .footer-icons-container {
        gap: 20px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Contact page ===== */
.mvsr-contact-page {
    padding-bottom: 48px;
}

.mvsr-contact-hero {
    padding-top: 24px;
    padding-bottom: 8px;
}

.mvsr-contact-hero__intro {
    max-width: 52rem;
}

.mvsr-contact-alert {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mvsr-contact-alert--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.mvsr-contact-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.mvsr-contact-alert--warn {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}

.mvsr-contact-alert__list {
    margin: 0;
    padding-left: 1.2rem;
}

.mvsr-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 32px;
    align-items: start;
    padding-top: 8px;
    padding-bottom: 32px;
}

.mvsr-contact-card {
    background: #fff;
    border: 1px solid var(--mvsr-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.mvsr-contact-card__title {
    margin: 0 0 16px;
    font-size: 1.15rem;
    color: var(--mvsr-navy);
    font-weight: 700;
}

.mvsr-contact-form__row {
    margin-bottom: 16px;
}

.mvsr-contact-form__grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .mvsr-contact-form__grid2 {
        grid-template-columns: 1fr;
    }
}

.mvsr-contact-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.mvsr-contact-form__req {
    color: #dc2626;
}

.mvsr-contact-form__input,
.mvsr-contact-form__textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font: inherit;
    font-size: 0.95rem;
    color: #0f172a;
    background: #fff;
}

.mvsr-contact-form__input:focus,
.mvsr-contact-form__textarea:focus {
    outline: 2px solid rgba(11, 32, 92, 0.25);
    border-color: var(--mvsr-navy);
}

.mvsr-contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.mvsr-contact-form__note {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 16px;
}

.mvsr-contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mvsr-contact-form-wrap {
    position: relative;
}

.mvsr-contact-form__submit {
    border: none;
    cursor: pointer;
}

.mvsr-contact-detail__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--mvsr-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.mvsr-contact-detail__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
}

.mvsr-contact-detail__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mvsr-contact-detail__list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.mvsr-contact-detail__list li:last-child {
    margin-bottom: 0;
}

.mvsr-contact-detail__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    font-weight: 600;
}

.mvsr-contact-detail__value {
    font-size: 0.95rem;
    color: var(--mvsr-navy);
    text-decoration: none;
    font-weight: 600;
}

.mvsr-contact-detail__value:hover {
    text-decoration: underline;
}

.mvsr-contact-map-section {
    padding-bottom: 32px;
}

.mvsr-contact-map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--mvsr-border);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    aspect-ratio: 16 / 9;
    max-height: 420px;
}

.mvsr-contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.mvsr-contact-quick {
    padding-bottom: 16px;
}

.mvsr-contact-quick__title {
    font-size: 1.1rem;
    color: var(--mvsr-navy);
    margin: 0 0 16px;
    font-weight: 700;
}

.mvsr-contact-quick__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.mvsr-contact-quick__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid var(--mvsr-border);
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.mvsr-contact-quick__link:hover {
    background: #fff;
    border-color: var(--mvsr-navy);
    color: var(--mvsr-navy);
}

.mvsr-contact-quick__link i {
    opacity: 0.6;
    font-size: 0.85rem;
}

@media (max-width: 960px) {
    .mvsr-contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Announcements / events listing & detail */
.mvsr-list-page {
    padding-bottom: 72px;
}

.mvsr-list-page__body {
    padding-top: 8px;
    padding-bottom: 48px;
}

.mvsr-announce-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mvsr-announce-list__item {
    border: 1px solid var(--mvsr-border);
    border-radius: 12px;
    padding: 18px 20px;
    background: #fff;
}

.mvsr-announce-list__link {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    text-decoration: none;
    color: var(--mvsr-navy);
}

.mvsr-announce-list__link:hover .mvsr-announce-list__title {
    text-decoration: underline;
}

.mvsr-announce-list__title {
    font-size: 1.05rem;
    font-weight: 700;
}

.mvsr-announce-list__meta {
    font-size: 0.82rem;
    color: #94a3b8;
    white-space: nowrap;
}

.mvsr-announce-list__summary {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}

.mvsr-detail-page {
    padding-bottom: 64px;
}

.mvsr-detail-back {
    margin: 0 0 16px;
    font-size: 0.88rem;
}

.mvsr-detail-back a {
    color: #e65c00;
    text-decoration: none;
    font-weight: 600;
}

.mvsr-detail-back a:hover {
    text-decoration: underline;
}

.mvsr-detail-date {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.mvsr-detail-title {
    margin-bottom: 20px;
}

.mvsr-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.mvsr-detail-prose {
    max-width: 720px;
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
}

.mvsr-detail-prose--html p {
    margin: 0 0 1em;
}

.mvsr-detail-prose--html .mvsr-announce-gallery-note {
    margin-top: 1.25em;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f8faff;
    border: 1px solid #e2e8f0;
    font-size: 0.92rem;
}

.mvsr-detail-prose--html .mvsr-announce-gallery-note a {
    color: #e65c00;
    font-weight: 600;
    text-decoration: none;
}

.mvsr-detail-prose--html .mvsr-announce-gallery-note a:hover {
    text-decoration: underline;
}

.mvsr-detail-related {
    margin-top: 28px;
}

/* =====================================================
   About Us — full page (sidebar + article)
   ===================================================== */
.mvsr-about-page {
    padding-bottom: clamp(48px, 8vw, 88px);
}

.mvsr-about-page__hero {
    background: linear-gradient(135deg, var(--mvsr-navy) 0%, #071338 45%, #0d2565 100%);
    color: #e8f0ff;
    padding: clamp(24px, 4vw, 40px) 0 clamp(28px, 5vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mvsr-about-page__crumb {
    margin: 0 0 12px;
    font-size: 0.82rem;
    opacity: 0.88;
}

.mvsr-about-page__crumb a {
    color: #ffd4a8;
    text-decoration: none;
    font-weight: 600;
}

.mvsr-about-page__crumb a:hover {
    text-decoration: underline;
}

.mvsr-about-page__crumb span[aria-hidden="true"] {
    margin: 0 0.35em;
    opacity: 0.6;
}

.mvsr-about-page__title {
    margin: 0 0 10px;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.mvsr-about-page__lead {
    margin: 0;
    max-width: 52rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    color: rgba(232, 240, 255, 0.92);
}

.mvsr-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
    padding-top: clamp(28px, 5vw, 48px);
}

.mvsr-about-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 8px;
    padding: 12px 16px;
    font: inherit;
    font-weight: 700;
    color: var(--mvsr-navy);
    background: #f1f5ff;
    border: 1px solid #c7d7f5;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.mvsr-about-sidebar-toggle:hover {
    background: #e8efff;
    border-color: #a8c0ef;
}

.mvsr-about-sidebar {
    position: sticky;
    top: 12px;
    z-index: 5;
}

.mvsr-about-sidebar__inner {
    background: #fff;
    border: 1px solid var(--mvsr-border);
    border-radius: 14px;
    padding: 18px 16px 20px;
    box-shadow: 0 4px 24px rgba(11, 32, 92, 0.06);
}

.mvsr-about-sidebar__heading {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.mvsr-about-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mvsr-about-nav__list--nested {
    display: none;
    margin-top: 4px;
    margin-left: 0;
    padding-left: 12px;
    border-left: 2px solid #e2e8f0;
}

.mvsr-about-nav__item {
    margin: 0;
}

.mvsr-about-nav__list > .mvsr-about-nav__item + .mvsr-about-nav__item {
    margin-top: 2px;
}

.mvsr-about-nav__list--nested .mvsr-about-nav__item + .mvsr-about-nav__item {
    margin-top: 2px;
}

.mvsr-about-nav__link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    line-height: 1.35;
    transition: background 0.15s, color 0.15s;
}

.mvsr-about-nav__list--nested .mvsr-about-nav__link {
    font-size: 0.86rem;
    font-weight: 500;
    padding: 6px 8px;
}

.mvsr-about-nav__link:hover {
    background: #f1f5f9;
    color: var(--mvsr-navy);
}

.mvsr-about-nav__item.is-current > .mvsr-about-nav__link {
    background: linear-gradient(90deg, rgba(230, 92, 0, 0.12), rgba(11, 32, 92, 0.08));
    color: var(--mvsr-navy);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(11, 32, 92, 0.12);
}

.mvsr-about-nav__item.is-open > .mvsr-about-nav__list--nested {
    display: block;
}

.mvsr-about-nav__row {
    display: flex;
    align-items: center;
    gap: 2px;
}
.mvsr-about-nav__row .mvsr-about-nav__link {
    flex: 1;
    min-width: 0;
}
.mvsr-about-nav__expander {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--mvsr-navy);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.mvsr-about-nav__expander:hover {
    background: #e2e8f0;
    color: #e65c00;
}
.mvsr-about-nav__expander-icon {
    display: block;
    transform: translateY(-1px);
}

.mvsr-about-article {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--mvsr-border);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 8px 40px rgba(11, 32, 92, 0.05);
}

.mvsr-about-article__header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.mvsr-about-article__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e65c00;
}

.mvsr-about-article__title {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--mvsr-navy);
    line-height: 1.25;
}

.mvsr-about-article__subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.55;
}

.mvsr-about-article__hero-img {
    margin: 0 0 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.mvsr-about-article__hero-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(420px, 40vh);
    object-fit: cover;
}

.mvsr-about-prose {
    font-size: 0.975rem;
    line-height: 1.75;
    color: #334155;
}

.mvsr-about-prose p {
    margin: 0 0 1em;
}

.mvsr-about-prose p:last-child {
    margin-bottom: 0;
}

.mvsr-about-prose h3 {
    margin: 1.35em 0 0.5em;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-prose h4 {
    margin: 1.1em 0 0.35em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--mvsr-navy);
}

.mvsr-about-prose ul,
.mvsr-about-prose ol {
    margin: 0.5em 0 1em;
    padding-left: 1.35em;
}

.mvsr-about-prose li {
    margin-bottom: 0.35em;
}

.mvsr-about-prose a {
    color: #e65c00;
    font-weight: 600;
    text-decoration: none;
}

.mvsr-about-prose a:hover {
    text-decoration: underline;
}

/* Solid CTA buttons in article HTML: prose link color matches button fill, so labels vanish */
.mvsr-about-prose a.mvsr-dept-all-btn,
.mvsr-about-prose a.mvsr-dept-all-btn:visited {
    color: #fff;
}
.mvsr-about-prose a.mvsr-dept-all-btn:hover {
    color: #fff;
    text-decoration: none;
}

.mvsr-about-placeholder {
    color: #94a3b8;
    font-style: italic;
}

.mvsr-about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.mvsr-about-stats__item {
    background: linear-gradient(145deg, #f8faff 0%, #fff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
}

.mvsr-about-stats__value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--mvsr-navy);
    line-height: 1.1;
}

.mvsr-about-stats__label {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mvsr-about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.mvsr-about-card {
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(11, 32, 92, 0.04);
}

.mvsr-about-card__title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-card__text {
    margin: 0;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
}

.mvsr-about-infra {
    margin-bottom: 28px;
}

.mvsr-about-infra__heading {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-infra__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mvsr-about-infra__grid li {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.mvsr-about-infra__grid strong {
    color: var(--mvsr-navy);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mvsr-about-infra__grid span {
    color: #475569;
    line-height: 1.5;
}

.mvsr-about-timeline {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    position: relative;
}

.mvsr-about-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, #e65c00, var(--mvsr-navy));
    border-radius: 2px;
}

.mvsr-about-timeline__item {
    position: relative;
    padding-left: 36px;
    margin-bottom: 22px;
}

.mvsr-about-timeline__item:last-child {
    margin-bottom: 0;
}

.mvsr-about-timeline__item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--mvsr-navy);
    box-shadow: 0 0 0 2px #fff;
}

.mvsr-about-timeline__period {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e65c00;
    margin-bottom: 4px;
}

.mvsr-about-timeline__badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--mvsr-navy);
    background: #e8efff;
    border-radius: 999px;
    vertical-align: middle;
}

.mvsr-about-timeline__title {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-timeline__body {
    margin: 0;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

.mvsr-about-vm {
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #f8faff;
    border: 1px solid #e2e8f0;
}

.mvsr-about-vm__heading {
    margin: 0 0 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mvsr-navy);
}

.mvsr-about-vm__vision {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.55;
}

.mvsr-about-vm__list {
    margin: 0;
    padding-left: 1.2em;
}

.mvsr-about-vm__list li {
    margin-bottom: 0.5em;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.55;
}

.mvsr-about-exec {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.mvsr-about-exec__item {
    text-align: center;
}

.mvsr-about-exec__photo {
    margin: 0 auto 10px;
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
}

.mvsr-about-exec__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mvsr-about-exec__photo--placeholder {
    background: linear-gradient(160deg, #e2e8f0 0%, #f1f5f9 45%, #e8edf5 100%);
    box-shadow: inset 0 0 0 1px rgba(11, 32, 92, 0.08);
}

.mvsr-about-founder-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: 28px;
}

.mvsr-about-founder-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(11, 32, 92, 0.05);
}

.mvsr-about-founder-card__media {
    aspect-ratio: 4 / 5;
    background: #f1f5f9;
}

.mvsr-about-founder-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mvsr-about-founder-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, #e2e8f0, #f8fafc);
    box-shadow: inset 0 0 0 1px rgba(11, 32, 92, 0.06);
}

.mvsr-about-founder-card__body {
    padding: 18px 18px 20px;
}

.mvsr-about-founder-card__name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mvsr-navy);
    line-height: 1.25;
}

.mvsr-about-founder-card__role {
    margin: 0 0 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #e65c00;
}

.mvsr-about-founder-card__dates {
    margin: 0 0 10px;
    font-size: 0.82rem;
    color: #64748b;
}

.mvsr-about-founder-card__intro {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
}

.mvsr-about-founder-timeline-heading {
    margin: 8px 0 16px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-exec__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mvsr-about-exec__name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-exec__role {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
}

.mvsr-about-badges {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.mvsr-about-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 2px 16px rgba(11, 32, 92, 0.05);
}
.mvsr-about-badge__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}
.mvsr-about-badge__logo img {
    max-height: 56px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.mvsr-about-badge__text {
    flex: 1;
    min-width: 200px;
}

.mvsr-about-badge__code {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #e65c00;
}

.mvsr-about-badge__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-about-badge__summary {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}

.mvsr-about-badge__programs {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: #334155;
}

.mvsr-about-badge__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--mvsr-navy);
    text-decoration: none;
}

.mvsr-about-badge__link:hover {
    text-decoration: underline;
}

.mvsr-about-leadership {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 32px);
    align-items: flex-start;
    margin-bottom: 8px;
}
.mvsr-about-leadership__portrait {
    flex: 0 0 auto;
}
.mvsr-about-leadership__portrait img {
    display: block;
    width: min(200px, 38vw);
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    object-fit: cover;
    box-shadow: 0 6px 24px rgba(11, 32, 92, 0.1);
}
.mvsr-about-leadership__body {
    flex: 1;
    min-width: min(100%, 280px);
}
.mvsr-about-leadership__body h3:first-child {
    margin-top: 0;
}
.mvsr-about-signature {
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    color: var(--mvsr-navy);
}
.mvsr-about-quote {
    margin: 0.75em 0 0;
    padding: 14px 18px;
    border-left: 4px solid #e65c00;
    background: #fffaf5;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #334155;
    line-height: 1.65;
}

/* --- Placements hub (placements.php) --- */
.mvsr-placement-hub .mvsr-placement-hub__slideshow {
    margin: 0 0 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #0f172a;
    box-shadow: 0 8px 32px rgba(11, 32, 92, 0.12);
}

.mvsr-placement-hub .mvsr-placement-hub__slideshow .swiper-slide {
    height: auto;
    min-height: min(320px, 52vw);
}

.mvsr-placement-hub__slide-figure {
    margin: 0;
    height: 100%;
    min-height: min(320px, 52vw);
}

.mvsr-placement-hub__slide-img {
    width: 100%;
    height: min(380px, 56vw);
    object-fit: cover;
    display: block;
}

.mvsr-placement-hub__slide-cap {
    padding: 10px 16px;
    font-size: 0.82rem;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.88);
}

.mvsr-placement-hub__placeholder-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: min(320px, 52vw);
    padding: 24px;
    background: linear-gradient(145deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: #94a3b8;
    text-align: center;
}

.mvsr-placement-hub__placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.45;
    color: #cbd5e1;
}

.mvsr-placement-hub__placeholder-text {
    font-weight: 800;
    font-size: 1rem;
    color: #e2e8f0;
    letter-spacing: 0.04em;
}

.mvsr-placement-hub__placeholder-hint {
    font-size: 0.78rem;
    max-width: 16rem;
    line-height: 1.45;
    opacity: 0.85;
}

.mvsr-placement-hub__vm {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

@media (min-width: 768px) {
    .mvsr-placement-hub__vm {
        grid-template-columns: 1fr 1fr;
    }
}

.mvsr-placement-hub__ai-heading {
    margin: 8px 0 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-placement-hub__ai-lead {
    margin: 0 0 14px;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

.mvsr-placement-ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.mvsr-placement-ai-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 2px 14px rgba(11, 32, 92, 0.05);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mvsr-placement-ai-card--link {
    cursor: pointer;
}

.mvsr-placement-ai-card--link:hover {
    border-color: rgba(230, 92, 0, 0.45);
    box-shadow: 0 6px 22px rgba(230, 92, 0, 0.12);
}

.mvsr-placement-ai-card__title {
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--mvsr-navy);
    line-height: 1.3;
}

.mvsr-placement-ai-card__sub {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
}

.mvsr-placement-ai-card__go {
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #e65c00;
}

.mvsr-placement-hub__subh {
    margin: 1.5em 0 0.65em;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-placement-hub__cta-block {
    margin-bottom: 8px;
}

.mvsr-placement-hub__pending {
    display: inline-block;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    font-size: 0.88rem;
    color: #9a3412;
}

.mvsr-placement-policies li {
    margin-bottom: 0.65em;
}

.mvsr-placement-hub .swiper-button-prev,
.mvsr-placement-hub .swiper-button-next {
    color: rgba(255, 255, 255, 0.85);
}

.mvsr-placement-hub .swiper-pagination-bullet-active {
    background: #e65c00;
}

/* --- Alumni hub --- */
.mvsr-alumni-citation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.mvsr-alumni-citation-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 2px 14px rgba(11, 32, 92, 0.05);
}

.mvsr-alumni-citation-card__photo {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    background: #f1f5f9;
}

.mvsr-alumni-citation-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mvsr-alumni-citation-card__body {
    flex: 1;
    min-width: 0;
}

.mvsr-alumni-citation-card__name {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-alumni-citation-card__role {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
}

.mvsr-alumni-citation-card__quote {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
}

.mvsr-alumni-citation-card__quote p {
    margin: 0;
}

.mvsr-alumni-meet-intro {
    margin-bottom: 8px;
}

.mvsr-alumni-meet-section {
    margin-bottom: 32px;
}

.mvsr-alumni-meet-section__title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-alumni-meet-swiper.mvsr-placement-hub__slideshow {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #0f172a;
}

.mvsr-alumni-meet-swiper .swiper-button-prev,
.mvsr-alumni-meet-swiper .swiper-button-next {
    color: rgba(255, 255, 255, 0.9);
}

.mvsr-alumni-meet-swiper .swiper-pagination-bullet-active {
    background: #e65c00;
}

.mvsr-about-prose .mvsr-alumni-quote {
    margin: 1em 0;
    padding: 14px 18px;
    border-left: 4px solid #e65c00;
    background: #fffaf5;
    border-radius: 0 10px 10px 0;
    font-size: 0.92rem;
    color: #334155;
}

.mvsr-about-prose .mvsr-alumni-quote p {
    margin: 0;
}

.mvsr-about-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.mvsr-about-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.mvsr-about-table th,
.mvsr-about-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.mvsr-about-table th {
    background: #f8fafc;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #475569;
    white-space: nowrap;
}

.mvsr-about-table tbody tr:hover {
    background: #fafcff;
}

.mvsr-about-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 991.98px) {
    .mvsr-about-layout {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mvsr-about-sidebar-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .mvsr-about-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(320px, 88vw);
        max-width: 100%;
        z-index: 200;
        padding: 72px 0 24px;
        background: rgba(6, 26, 77, 0.45);
        backdrop-filter: blur(4px);
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
    }

    .mvsr-about-sidebar.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mvsr-about-sidebar__inner {
        height: 100%;
        overflow-y: auto;
        margin: 0 0 0 0;
        border-radius: 0 14px 14px 0;
        border-left: none;
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.28s ease;
    }

    .mvsr-about-sidebar.is-open .mvsr-about-sidebar__inner {
        transform: translateX(0);
    }

    .mvsr-about-article {
        flex: 1;
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .mvsr-about-sidebar-toggle {
        display: none !important;
    }
}

/* --- DB-driven site pages (Academics, Departments hub, IQAC, …) --- */
.mvsr-site-page {
    padding-bottom: clamp(40px, 6vw, 72px);
}

.mvsr-site-page__hero {
    padding: clamp(20px, 4vw, 36px) 0 clamp(8px, 2vw, 16px);
}

.mvsr-site-page__crumb {
    margin: 0 0 12px;
    font-size: 0.85rem;
    color: #64748b;
}

.mvsr-site-page__crumb a {
    color: #e65c00;
    font-weight: 600;
    text-decoration: none;
}

.mvsr-site-page__crumb a:hover {
    text-decoration: underline;
}

.mvsr-site-page__title {
    margin: 8px 0 12px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--mvsr-navy);
    line-height: 1.2;
}

.mvsr-site-page__lead {
    margin: 0 0 8px;
    max-width: 42rem;
    font-size: 1rem;
    color: #475569;
    line-height: 1.55;
}

.mvsr-site-page__article {
    padding-bottom: 24px;
}

.mvsr-site-page .mvsr-about-list {
    margin: 0 0 1.25em;
    padding-left: 1.25em;
}

.mvsr-site-page .mvsr-about-list li {
    margin-bottom: 0.45em;
}

.mvsr-search-page-form {
    display: flex;
    align-items: stretch;
    margin-bottom: 1.5rem;
    max-width: 440px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--mvsr-border);
    background: #fff;
}

.mvsr-search-page-form__label {
    display: flex;
    flex: 1;
    margin: 0;
}

.mvsr-search-page-form__input {
    width: 100%;
    border: none;
    padding: 10px 14px;
    font-size: 0.95rem;
    outline: none;
}

.mvsr-search-page-form__btn {
    border: none;
    padding: 0 16px;
    background: #e65c00;
    color: #fff;
    cursor: pointer;
}

.mvsr-search-page-form__btn:hover {
    background: #cc5200;
}

/* Pills on site pages use the same .mvsr-dept-grid as home (3-col grid); do not override
   with flex here — a second .mvsr-dept-grid rule broke department cards to 2+3+1 rows. */
.mvsr-site-page .mvsr-dept-grid {
    margin: 1.25em 0;
}

.mvsr-dept-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #c7d7f5;
    background: #f8faff;
    color: var(--mvsr-navy);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.mvsr-dept-pill:hover {
    background: #eef3ff;
    border-color: #a8c0ef;
    color: var(--mvsr-navy);
}

.mvsr-coming-soon a {
    color: #e65c00;
    font-weight: 600;
}

/* ----- Departments hub landing ----- */
.mvsr-dept-landing__hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    overflow: hidden;
    color: #fff;
}

.mvsr-dept-landing__hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 400px at 10% -10%, rgba(234, 88, 12, 0.35), transparent 55%),
        radial-gradient(900px 360px at 90% 20%, rgba(99, 102, 241, 0.25), transparent 50%),
        linear-gradient(135deg, #0a1744 0%, #0b2260 42%, #0e2d7a 100%);
    z-index: 0;
}

.mvsr-dept-landing__hero-inner {
    position: relative;
    z-index: 1;
}

.mvsr-dept-landing__crumb,
.mvsr-dept-landing__crumb a {
    color: rgba(255, 255, 255, 0.88);
}

.mvsr-dept-landing__crumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.mvsr-dept-landing .mvsr-section-label {
    color: rgba(255, 255, 255, 0.88);
}

.mvsr-dept-landing__title {
    margin: 0.35em 0 0.5em;
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.mvsr-dept-landing__lead {
    margin: 0 0 1.75rem;
    max-width: 52ch;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.mvsr-dept-landing__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 900px;
}

.mvsr-dept-landing__stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 14px 14px 12px;
    text-align: center;
}

.mvsr-dept-landing__stat-value {
    display: block;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 800;
    color: #fff;
}

.mvsr-dept-landing__stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

.mvsr-dept-landing__intro {
    padding: 28px 0 8px;
}

.mvsr-dept-landing__intro-prose {
    max-width: 900px;
}

.mvsr-dept-landing__showcase {
    padding: 20px 0 56px;
}

.mvsr-dept-landing__showcase-head {
    max-width: 720px;
    margin-bottom: 24px;
}

.mvsr-dept-landing__showcase-title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-dept-landing__showcase-sub {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
}

.mvsr-dept-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mvsr-dept-showcase-card {
    --card-accent: var(--mvsr-navy);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--card-accent);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mvsr-dept-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.mvsr-dept-showcase-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.mvsr-dept-showcase-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    overflow: hidden;
}

.mvsr-dept-showcase-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mvsr-dept-showcase-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2.5rem;
    color: #94a3b8;
}

.mvsr-dept-showcase-card__body {
    padding: 16px 18px 18px;
}

.mvsr-dept-showcase-card__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mvsr-navy);
}

.mvsr-dept-showcase-card__desc {
    margin: 0 0 10px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #64748b;
}

.mvsr-dept-showcase-card__tags {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mvsr-dept-showcase-card__tags li {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
}

.mvsr-dept-showcase-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e65c00;
}

.mvsr-dept-showcase-card:hover .mvsr-dept-showcase-card__cta {
    text-decoration: underline;
}

.mvsr-dept-landing__footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .mvsr-dept-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mvsr-dept-landing__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mvsr-dept-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Department detail (portal) ----- */
.mvsr-dept-portal__hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3rem) 0;
    overflow: hidden;
    color: #fff;
}

.mvsr-dept-portal__hero-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, #061032 0%, var(--mvsr-dept-p) 48%, #0b2260 100%);
    z-index: 0;
}

.mvsr-dept-portal__hero-inner {
    position: relative;
    z-index: 1;
}

.mvsr-dept-portal__crumb,
.mvsr-dept-portal__crumb a {
    color: rgba(255, 255, 255, 0.88);
}

.mvsr-dept-portal__crumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.mvsr-dept-portal__hero-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mvsr-dept-portal__hero-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.mvsr-dept-portal__title {
    margin: 0 0 0.35em;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.mvsr-dept-portal__lead {
    margin: 0;
    max-width: 52ch;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.mvsr-dept-portal__layout {
    padding-bottom: 48px;
}
