:root {
    --blue-990: #031224;
    --blue-950: #071f3c;
    --blue-900: #0a3261;
    --blue-800: #0d558f;
    --blue-700: #1670b9;
    --blue-100: #e7f0f9;
    --blue-050: #f5f8fc;
    --red-accent: #c4334e;
    --gold-accent: #d4b071;
    --text-strong: #11263f;
    --text-soft: #526a84;
    --white: #ffffff;
    --border-soft: rgba(17, 38, 63, 0.1);
    --shadow-soft: 0 24px 60px rgba(6, 25, 48, 0.08);
    --shadow-deep: 0 32px 90px rgba(3, 18, 36, 0.28);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --page-pad: clamp(1rem, 3vw, 2.8rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-strong);
    background:
        radial-gradient(circle at top left, rgba(22, 112, 185, 0.12), transparent 22%),
        linear-gradient(180deg, #eef4fa 0%, #f8fbfe 42%, #eef4fa 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 35%),
        radial-gradient(circle at bottom right, rgba(10, 50, 97, 0.08), transparent 30%);
    z-index: -1;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--blue-950);
    color: var(--white);
    z-index: 100;
}

.skip-link:focus {
    top: 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

main {
    display: block;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 18, 36, 0.62);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(3, 18, 36, 0.14);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0.9rem var(--page-pad);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.brand-mark,
.footer-brand img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(3, 18, 36, 0.18);
    flex: 0 0 auto;
}

.brand-mark img,
.footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text,
.footer-brand span {
    display: grid;
    gap: 0.12rem;
}

.brand-text strong {
    color: var(--white);
    font-size: 1.08rem;
}

.brand-text span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.main-nav {
    justify-self: end;
}

.main-nav ul,
.footer-links,
.footer-details,
.schedule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.main-nav li {
    position: relative;
}

.nav-link-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.main-nav a,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav li.is-active > .nav-link-row > a {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.header-cta {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.86));
    color: var(--blue-950);
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.12);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.hero-control:hover,
.hero-control:focus-visible,
.hero-dot:hover,
.hero-dot:focus-visible,
.quick-card:hover,
.quick-card:focus-visible,
.news-card a:hover,
.news-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    transform: translateY(-2px);
}

.submenu-toggle,
.nav-toggle,
.hero-control,
.hero-dot {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.submenu-toggle {
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.8rem);
    min-width: 230px;
    display: grid;
    gap: 0.3rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    border: 1px solid rgba(7, 31, 60, 0.08);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.submenu a {
    display: block;
    color: var(--text-strong);
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
}

.submenu a:hover,
.submenu a:focus-visible {
    background: var(--blue-050);
    color: var(--blue-900);
}

.has-children:hover > .submenu,
.has-children:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 0.35rem 0;
    border-radius: 99px;
    background: var(--white);
}

.hero-slider,
.section-shell,
.page-hero {
    width: 100%;
}

.hero-slider {
    position: relative;
    margin: 0;
}

.hero-slides {
    position: relative;
    min-height: calc(100vh - 96px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background:
        linear-gradient(135deg, rgba(3, 18, 36, 0.9), rgba(7, 31, 60, 0.74));
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-visual,
.hero-visual::before,
.hero-visual::after {
    position: absolute;
    inset: 0;
}

.hero-visual {
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    background-image:
        linear-gradient(110deg, rgba(3, 18, 36, 0.58) 10%, rgba(3, 18, 36, 0.14) 42%, rgba(3, 18, 36, 0.5) 100%),
        var(--slide-image);
    background-position: center;
    background-size: cover;
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.04);
}

.hero-visual::after {
    content: "";
    background:
        radial-gradient(circle at right top, rgba(212, 176, 113, 0.16), transparent 22%),
        linear-gradient(180deg, transparent 58%, rgba(3, 18, 36, 0.26) 100%);
}

.hero-slide.is-active .hero-visual::before {
    animation: hero-pan 12s ease-in-out infinite alternate;
}

.hero-copy {
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    width: min(620px, 52vw, 100%);
    min-height: calc(100vh - 96px);
    padding: 0 var(--page-pad) clamp(6.5rem, 14vh, 8.75rem);
    color: var(--white);
}

.hero-copy-shell {
    margin-top: auto;
    width: 100%;
    padding: 1.65rem 1.7rem 1.8rem;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(7, 31, 60, 0.26), rgba(7, 31, 60, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 26px 70px rgba(3, 18, 36, 0.28);
    backdrop-filter: blur(12px) saturate(1.12);
}

.hero-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.9rem);
    line-height: 0.98;
    max-width: 10.5ch;
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.section-heading p,
.highlight-panel p,
.info-card p,
.mini-card p,
.value-card p,
.news-card p,
.event-card p,
.notice-card p,
.gallery-caption p,
.media-card p,
.contact-card p,
.team-card p,
.schedule-card li,
.contact-form p,
.footer-grid p,
.footer-details li,
.timeline-item p,
.gallery-overlay p,
.quick-card span,
.banner-card p {
    line-height: 1.8;
}

.hero-copy p:not(.eyebrow) {
    max-width: 46ch;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    letter-spacing: 0.03em;
}

.hero-actions,
.hero-controls,
.banner-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 1.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    color: var(--blue-950);
    box-shadow: 0 16px 38px rgba(255, 255, 255, 0.14);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-controls {
    position: absolute;
    right: var(--page-pad);
    bottom: 2rem;
    z-index: 2;
    padding: 0.55rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hero-control {
    width: 3.2rem;
    height: 3.2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-dots {
    display: inline-flex;
    gap: 0.55rem;
}

.hero-dot {
    width: 0.88rem;
    height: 0.88rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-dot.is-active {
    width: 2.8rem;
    background: linear-gradient(90deg, var(--gold-accent), var(--red-accent));
}

.media-player {
    display: block;
    width: 100%;
    border-radius: 22px;
    background: #09192f;
}

.hero-quicklinks {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0 var(--page-pad);
    margin-top: -4.8rem;
    margin-bottom: 1.8rem;
}

.quick-card {
    display: grid;
    position: relative;
    isolation: isolate;
    gap: 0.7rem;
    min-height: 220px;
    padding: 1.5rem 1.5rem 1.4rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(8, 29, 56, 0.98), rgba(12, 53, 101, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(3, 18, 36, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.quick-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
        radial-gradient(circle at top right, rgba(212, 176, 113, 0.18), transparent 26%);
}

.quick-card::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(212, 176, 113, 0.92));
    z-index: -1;
}

.quick-card:hover,
.quick-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 34px 80px rgba(3, 18, 36, 0.3);
}

.quick-card-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.25rem;
}

.quick-card-top span,
.quick-index,
.quick-kicker {
    line-height: 1;
}

.quick-index {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.quick-kicker {
    color: rgba(212, 176, 113, 0.96);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.quick-card strong {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.25;
}

.quick-description,
.quick-link-text {
    color: rgba(255, 255, 255, 0.76);
}

.quick-description {
    max-width: 26ch;
    font-size: 0.98rem;
}

.quick-link-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quick-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-arrow {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.05rem;
}

.section-shell,
.page-hero {
    padding: 5rem var(--page-pad);
}

.section-shell + .section-shell {
    padding-top: 0;
}

.section-heading {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 108px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-700), var(--gold-accent));
}

.section-heading h2 {
    max-width: 14ch;
}

.section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.section-heading-split h2 {
    max-width: 12ch;
}

.section-heading-link {
    margin-top: 0;
    white-space: nowrap;
}

.section-heading .eyebrow,
.page-hero .eyebrow,
.highlight-panel .eyebrow,
.banner-card .eyebrow {
    color: var(--blue-700);
}

.section-heading .eyebrow::before,
.page-hero .eyebrow::before,
.highlight-panel .eyebrow::before,
.banner-card .eyebrow::before {
    background: rgba(22, 112, 185, 0.4);
}

.section-heading h2,
.page-hero h1,
.highlight-panel h2,
.banner-card h2,
.team-card h2,
.contact-card h2,
.event-card h2,
.notice-card h2,
.media-card h2,
.gallery-caption h2,
.schedule-card h3,
.timeline-item h2,
.footer-grid h2 {
    color: var(--blue-950);
}

.section-heading p,
.highlight-panel p,
.info-card p,
.mini-card p,
.value-card p,
.news-card p,
.event-card p,
.notice-card p,
.gallery-caption p,
.media-card p,
.contact-card p,
.team-card p,
.schedule-card li,
.footer-grid p,
.footer-details li,
.timeline-item p,
.contact-form label {
    color: var(--text-soft);
}

.page-hero {
    background:
        radial-gradient(circle at right top, rgba(212, 176, 113, 0.14), transparent 20%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: var(--white);
}

.page-hero h1,
.page-hero p {
    max-width: 900px;
}

.page-hero p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.section-contrast {
    background: linear-gradient(180deg, rgba(231, 240, 249, 0.55), rgba(244, 249, 253, 0.92));
    border-top: 1px solid rgba(17, 38, 63, 0.06);
    border-bottom: 1px solid rgba(17, 38, 63, 0.06);
}

.college-editorial-grid,
.college-feature-grid,
.college-foundation-grid,
.college-history-spotlight,
.college-history-grid,
.college-admin-focus {
    display: grid;
    gap: 1.4rem;
}

.college-editorial-grid,
.college-history-spotlight,
.college-admin-focus {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}

.college-feature-grid,
.college-history-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
}

.college-foundation-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.college-history-side {
    display: grid;
    gap: 1.2rem;
}

.college-visual-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--blue-950);
    box-shadow: var(--shadow-soft);
}

.college-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.college-visual-card-large {
    min-height: 460px;
}

.college-visual-card-medium {
    min-height: 380px;
}

.college-visual-card-tall {
    min-height: 100%;
}

.college-visual-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.6rem;
    background: linear-gradient(180deg, transparent, rgba(3, 18, 36, 0.9));
    color: var(--white);
}

.college-visual-overlay h2,
.college-visual-overlay p,
.college-visual-overlay .eyebrow {
    color: var(--white);
}

.college-visual-overlay .eyebrow::before {
    background: rgba(255, 255, 255, 0.4);
}

.college-editorial-copy {
    display: grid;
    align-content: center;
}

.college-editorial-copy h2,
.college-service-card h2,
.college-info-card h3,
.college-summary-card h3 {
    max-width: none;
}

.college-mini-card,
.college-info-card,
.college-service-card,
.college-summary-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 253, 0.96));
}

.college-service-card {
    position: relative;
    overflow: hidden;
}

.college-service-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 112, 185, 0.14), transparent 72%);
}

.college-summary-card ul {
    display: grid;
    gap: 0.9rem;
}

.card-grid,
.split-layout,
.stacked-cards,
.notice-list,
.gallery-grid,
.contact-layout,
.contact-cards,
.footer-grid,
.values-grid,
.gallery-strip {
    display: grid;
    gap: 1.25rem;
}

.three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
    gap: 1.4rem;
}

.values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-strip {
    grid-template-columns: 1.45fr 1fr 1fr;
}

.gallery-tile {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.gallery-tile-large {
    min-height: 420px;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.4rem;
    background: linear-gradient(180deg, transparent, rgba(3, 18, 36, 0.88));
    color: var(--white);
}

.gallery-overlay h3,
.gallery-overlay p {
    color: var(--white);
}

.highlight-panel,
.info-card,
.mini-card,
.value-card,
.news-card,
.event-card,
.notice-card,
.team-card,
.media-card,
.contact-card,
.schedule-card,
.contact-form,
.timeline-item,
.banner-card,
.gallery-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.highlight-panel,
.info-card,
.mini-card,
.value-card,
.news-card,
.event-card,
.notice-card,
.team-card,
.media-card,
.contact-card,
.schedule-card,
.contact-form,
.timeline-item {
    padding: 1.55rem;
}

.highlight-panel {
    position: relative;
    overflow: hidden;
    padding: 2.25rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 250, 0.92));
    border-left: 4px solid rgba(212, 176, 113, 0.9);
}

.highlight-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 112, 185, 0.12), transparent 70%);
}

.highlight-divider {
    width: 88px;
    height: 3px;
    margin: 1.35rem 0 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-accent), rgba(212, 176, 113, 0.1));
}

.highlight-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.highlight-points span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(22, 112, 185, 0.07);
    color: var(--blue-900);
    font-size: 0.84rem;
    font-weight: 600;
}

.value-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
}

.value-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(22, 112, 185, 0.88), rgba(212, 176, 113, 0.88));
}

.value-index {
    width: 2.45rem;
    height: 2.45rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(22, 112, 185, 0.09);
    color: var(--blue-900);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.text-link,
.news-card a,
.feature-card a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--blue-700);
    font-weight: 600;
}

.news-card,
.event-card,
.notice-card {
    position: relative;
    overflow: hidden;
}

.news-card {
    display: grid;
    align-content: start;
    gap: 0.3rem;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 253, 0.95));
    border-color: rgba(17, 38, 63, 0.07);
}

.news-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.news-card a {
    margin-top: 1.25rem;
}

.news-card::after,
.event-card::after,
.notice-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -55px;
    bottom: -70px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(22, 112, 185, 0.16), transparent 68%);
}

.section-news-band {
    position: relative;
}

.featured-news-slider {
    position: relative;
    display: grid;
    gap: 1.25rem;
}

.featured-news-viewport {
    overflow: hidden;
    scroll-snap-type: x mandatory;
}

.featured-news-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2.5rem) / 3);
    gap: 1.25rem;
    padding-bottom: 0.4rem;
    scrollbar-width: none;
}

.featured-news-track::-webkit-scrollbar {
    display: none;
}

.featured-news-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
}

.featured-news-card-event {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 252, 0.97));
}

.featured-news-card-announcement {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 246, 247, 0.98));
}

.featured-news-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.featured-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news-body {
    display: grid;
    align-content: start;
    gap: 0.95rem;
    padding: 1.45rem;
}

.featured-news-body h3 {
    font-size: 1.45rem;
    line-height: 1.15;
    color: var(--blue-950);
}

.featured-news-body p {
    color: var(--text-soft);
}

.featured-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.featured-news-category {
    color: var(--blue-800);
    font-size: 0.88rem;
    font-weight: 600;
}

.featured-news-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.featured-news-controls .hero-control {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    box-shadow: 0 16px 38px rgba(10, 50, 97, 0.18);
}

.news-meta,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(22, 112, 185, 0.12);
    color: var(--blue-900);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge.soft {
    background: rgba(196, 51, 78, 0.1);
    color: var(--red-accent);
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1.25rem;
    align-items: start;
}

.timeline-step {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    box-shadow: 0 18px 36px rgba(10, 50, 97, 0.22);
}

.notice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero-rich {
    padding-bottom: 3.3rem;
}

.page-hero-stats,
.story-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-hero-stats {
    margin-top: 1.5rem;
}

.page-hero-stats span,
.story-metric {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.page-hero-stats span {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.story-showcase,
.story-card,
.story-empty,
.story-detail-hero,
.story-article,
.story-side-card,
.story-gallery-card,
.story-video-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.story-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.story-showcase-notice {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 245, 247, 0.97));
}

.story-showcase-media,
.story-card-media {
    display: block;
    overflow: hidden;
}

.story-showcase-media {
    min-height: 360px;
}

.story-showcase-media img,
.story-card-media img,
.story-detail-visual img,
.story-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-showcase-body,
.story-card-body,
.story-video-body {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.story-showcase-body {
    padding: 2rem;
    background:
        radial-gradient(circle at right top, rgba(212, 176, 113, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 253, 0.96));
}

.story-showcase-body h2,
.story-card-body h2,
.story-video-body h3,
.story-empty h2 {
    color: var(--blue-950);
}

.story-showcase-body h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
}

.story-link-button {
    justify-self: start;
    margin-top: 0.55rem;
}

.story-list-grid,
.story-gallery-grid,
.story-video-grid,
.story-detail-grid {
    display: grid;
    gap: 1.4rem;
}

.story-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
    overflow: hidden;
    min-height: 100%;
}

.story-card-media {
    aspect-ratio: 16 / 10;
}

.story-card-body {
    padding: 1.45rem;
}

.story-card-body h2 {
    font-size: 1.45rem;
    line-height: 1.14;
}

.story-card-body p,
.story-showcase-body p,
.story-empty p,
.story-article .story-copy,
.story-video-link p,
.story-side-card p,
.story-side-list li {
    color: var(--text-soft);
    line-height: 1.85;
}

.story-meta-row {
    margin-top: 0.2rem;
}

.story-metric {
    background: rgba(22, 112, 185, 0.08);
    color: var(--blue-900);
    border: 1px solid rgba(22, 112, 185, 0.08);
}

.story-meta-row-light .story-metric.light {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.14);
}

.story-empty {
    padding: 2rem;
    text-align: center;
}

.story-back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--blue-700);
    font-weight: 700;
}

.story-detail-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: var(--blue-950);
}

.story-detail-visual,
.story-detail-overlay {
    position: absolute;
    inset: 0;
}

.story-detail-overlay {
    background:
        linear-gradient(112deg, rgba(3, 18, 36, 0.88) 16%, rgba(3, 18, 36, 0.34) 52%, rgba(3, 18, 36, 0.8) 100%),
        radial-gradient(circle at right top, rgba(212, 176, 113, 0.16), transparent 22%);
}

.story-detail-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 1rem;
    min-height: 500px;
    padding: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
}

.story-detail-content h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    line-height: 0.98;
    color: var(--white);
}

.story-detail-content p {
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
}

.story-detail-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    align-items: start;
}

.story-article,
.story-side-card {
    padding: 1.9rem;
}

.story-inline-heading {
    margin-bottom: 1.4rem;
}

.story-inline-heading h2 {
    max-width: none;
}

.story-copy {
    font-size: 1.02rem;
}

.story-copy br + br {
    display: block;
    content: "";
    margin-top: 0.8rem;
}

.story-side-panel {
    display: grid;
    gap: 1.2rem;
}

.story-side-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

.story-side-list li + li {
    margin-top: 0.75rem;
}

.story-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-gallery-card,
.story-video-card {
    overflow: hidden;
}

.story-gallery-card img {
    aspect-ratio: 1 / 1;
}

.story-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-video-frame,
.story-video-link,
.story-video-card .media-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 24px;
    background: #08192f;
}

.story-video-link {
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
}

.story-video-body {
    padding: 1.25rem 1.35rem 1.4rem;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
    overflow: hidden;
}

.gallery-card img,
.media-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-caption,
.media-card {
    padding: 1.35rem;
}

.media-card {
    display: grid;
    gap: 1rem;
}

.contact-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: start;
}

.contact-layout-enhanced,
.contact-map-layout,
.contact-stack,
.contact-inline-actions,
.contact-form-actions,
.contact-quick-actions {
    display: grid;
    gap: 1.2rem;
}

.contact-layout-enhanced {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.contact-stack {
    align-content: start;
}

.contact-card-featured,
.contact-card-panel,
.contact-map-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 253, 0.96));
}

.contact-card-featured {
    padding: 1.8rem;
}

.contact-card-featured .eyebrow {
    color: var(--blue-700);
}

.contact-card-featured .eyebrow::before {
    background: rgba(22, 112, 185, 0.4);
}

.contact-detail-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-detail-list li {
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(231, 240, 249, 0.55);
    border: 1px solid rgba(17, 38, 63, 0.08);
}

.contact-detail-list span {
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list strong {
    color: var(--blue-950);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-inline-actions,
.contact-form-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-inline-actions .button,
.contact-form-actions .button {
    width: 100%;
}

.contact-form h2 {
    margin-bottom: 1rem;
    color: var(--blue-950);
}

.contact-form-enhanced {
    padding: 1.8rem;
}

.contact-form-note {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.contact-form label {
    display: block;
    margin: 0.85rem 0 0.45rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(17, 38, 63, 0.12);
    border-radius: 14px;
    background: #f7fafc;
    color: var(--text-strong);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(22, 112, 185, 0.18);
    border-color: rgba(22, 112, 185, 0.32);
}

.contact-form .button {
    margin-top: 1.35rem;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: var(--white);
}

.button-secondary-ink {
    background: rgba(10, 50, 97, 0.08);
    border-color: rgba(10, 50, 97, 0.12);
    color: var(--blue-950);
}

.contact-map-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
}

.contact-map-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.contact-map-body {
    padding: 1.45rem 1.55rem 1.6rem;
}

.contact-map-body .eyebrow {
    color: var(--blue-700);
}

.contact-map-body .eyebrow::before {
    background: rgba(22, 112, 185, 0.4);
}

.contact-card-panel {
    padding: 1.7rem;
}

.contact-quick-actions {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
}

.contact-action-card {
    display: grid;
    gap: 0.4rem;
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: rgba(231, 240, 249, 0.56);
    border: 1px solid rgba(17, 38, 63, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-action-card:hover,
.contact-action-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(22, 112, 185, 0.18);
    box-shadow: 0 18px 40px rgba(6, 25, 48, 0.08);
}

.contact-action-card strong {
    color: var(--blue-950);
    font-size: 1.05rem;
}

.contact-action-card span:last-child {
    color: var(--text-soft);
}

.contact-action-kicker {
    color: var(--blue-800);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-action-card-whatsapp {
    background: linear-gradient(180deg, rgba(237, 251, 244, 0.96), rgba(245, 255, 248, 0.96));
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 38, 63, 0.1);
    color: var(--blue-950);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(6, 25, 48, 0.05);
}

.pagination-link.is-current {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    border-color: transparent;
    color: var(--white);
}

.pagination-link.is-disabled {
    pointer-events: none;
    opacity: 0.4;
}

.banner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background:
        radial-gradient(circle at right top, rgba(212, 176, 113, 0.16), transparent 24%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.banner-card h2,
.banner-card p,
.banner-card .eyebrow {
    color: var(--white);
}

.banner-card .eyebrow::before {
    background: rgba(255, 255, 255, 0.42);
}

.site-footer {
    margin-top: 4rem;
    padding: 4rem var(--page-pad) 2rem;
    background: linear-gradient(180deg, var(--blue-990), var(--blue-950));
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    grid-template-columns: 1.25fr 0.8fr 0.95fr;
}

.footer-brand strong {
    color: var(--white);
}

.footer-brand span span {
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid h2 {
    margin-bottom: 0.9rem;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-links,
.footer-details {
    display: grid;
    gap: 0.7rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.94rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@keyframes hero-pan {
    from {
        transform: scale(1.06) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.15) translate3d(-1.2%, -1.4%, 0);
    }
}

@media (max-width: 1100px) {
    .section-heading-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-news-track {
        grid-auto-columns: calc((100% - 1.25rem) / 2);
    }

    .college-editorial-grid,
    .college-feature-grid,
    .college-foundation-grid,
    .college-history-spotlight,
    .college-history-grid,
    .college-admin-focus {
        grid-template-columns: 1fr;
    }

    .story-showcase,
    .story-detail-grid {
        grid-template-columns: 1fr;
    }

    .story-showcase-media {
        min-height: 300px;
    }

    .story-list-grid,
    .story-video-grid,
    .story-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-quicklinks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .three-columns,
    .gallery-grid,
    .gallery-strip,
    .contact-map-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .four-columns,
    .values-grid,
    .notice-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-shell {
        grid-template-columns: auto auto;
    }

    .main-nav {
        grid-column: 1 / -1;
        width: 100%;
        display: none;
    }

    .site-header.is-open .main-nav {
        display: block;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
    }

    .header-cta {
        display: none;
    }

    .submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.25rem;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.92);
    }

    .has-children:hover > .submenu,
    .has-children:focus-within > .submenu {
        display: none;
    }

    .has-children.is-open > .submenu {
        display: grid;
    }

    .hero-slides {
        min-height: 78vh;
    }

    .hero-copy {
        padding-bottom: 7rem;
    }

    .hero-copy-shell {
        width: min(100%, 680px);
    }
}

@media (max-width: 680px) {
    .featured-news-track {
        grid-auto-columns: 100%;
    }

    .college-visual-card-large {
        min-height: 340px;
    }

    .college-visual-card-medium {
        min-height: 300px;
    }

    .story-list-grid,
    .story-video-grid,
    .story-gallery-grid {
        grid-template-columns: 1fr;
    }

    .story-showcase-body,
    .story-article,
    .story-side-card {
        padding: 1.45rem;
    }

    .story-detail-hero,
    .story-detail-content {
        min-height: 420px;
    }

    .brand-mark,
    .footer-brand img {
        width: 56px;
        height: 56px;
    }

    .hero-copy h1,
    .hero-copy h2,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-copy-shell {
        padding: 1.35rem 1.2rem 1.45rem;
        border-radius: 24px;
    }

    .hero-copy {
        padding-bottom: 8.6rem;
    }

    .hero-quicklinks,
    .three-columns,
    .four-columns,
    .values-grid,
    .gallery-grid,
    .gallery-strip,
    .contact-map-layout,
    .contact-inline-actions,
    .contact-form-actions,
    .notice-list {
        grid-template-columns: 1fr;
    }

    .hero-controls {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 1.4rem;
    }

    .hero-tags,
    .highlight-points {
        gap: 0.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        width: 72px;
        height: 72px;
    }

    .banner-card,
    .footer-bottom,
    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
