@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   RATE 2026 — PROFESSIONAL TECHNOLOGY CONFERENCE THEME
   Navy + Royal Blue + Gold
========================================================= */

:root {
    /* Main colors */
    --bg: #061525;
    --bg-dark: #04101d;
    --bg-elevated: #0b2138;
    --bg-card: #102c46;
    --bg-card-hover: #153957;

    /* Borders */
    --border: rgba(255,255,255,0.10);
    --border-hover: rgba(255,255,255,0.22);

    /* Text */
    --text: #f8fafc;
    --text-dim: #b7c6d6;
    --text-muted: #71869a;

    /* Brand */
    --accent: #4f8cff;
    --accent-hover: #76a7ff;
    --accent-dark: #1f5ed8;

    /* Gold */
    --gold: #f5bd4f;
    --gold-light: #ffd978;

    /* Status */
    --red: #ef5350;
    --green: #42c77a;

    /* Fonts */
    --heading-font: 'Space Grotesk', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.20);
    --shadow-md: 0 15px 40px rgba(0,0,0,0.30);
    --shadow-lg: 0 25px 70px rgba(0,0,0,0.40);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--body-font);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(55,120,220,0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(245,189,79,0.04),
            transparent 25%
        ),
        var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: rgba(79,140,255,0.35);
    color: #fff;
}

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

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


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(4,16,29,0.78);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(4,16,29,0.94);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.header-inner {
    max-width: 1250px;
    margin: 0 auto;

    padding: 0 2rem;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;

    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: 40px;

    object-fit: cover;

    border-radius: 7px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 4px 15px rgba(0,0,0,0.25);
}

.logo-text {
    font-family: var(--heading-font);

    font-size: 1.15rem;
    font-weight: 700;

    letter-spacing: -0.03em;

    color: #fff;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav a {
    position: relative;

    font-size: 0.82rem;
    font-weight: 500;

    color: var(--text-dim);

    padding: 0.55rem 0.75rem;

    border-radius: 7px;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.055);
}


/* =========================================================
   COMMITTEE DROPDOWN
========================================================= */

.nav-dd {
    position: relative;
}

.nav-dd-menu {
    position: absolute;

    top: calc(100% + 8px);
    right: 0;

    min-width: 200px;

    background: rgba(13,39,63,0.98);

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 0.45rem;

    box-shadow: var(--shadow-md);

    opacity: 0;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.nav-dd:hover .nav-dd-menu {
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0);
}

.nav-dd-menu a {
    display: block;

    padding: 0.65rem 0.8rem;

    font-size: 0.8rem;

    border-radius: 7px;
}

.nav-dd-menu a:hover {
    background: rgba(79,140,255,0.12);
    color: #fff;
}


/* =========================================================
   SUBMIT PAPER NAV BUTTON
========================================================= */

.nav-cta {
    font-size: 0.8rem !important;
    font-weight: 700 !important;

    color: #071525 !important;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #e9f1fa
        );

    padding: 0.55rem 1rem !important;

    border-radius: 9px !important;

    margin-left: 0.5rem;

    box-shadow:
        0 5px 20px rgba(255,255,255,0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease !important;
}

.nav-cta:hover {
    opacity: 1 !important;

    color: #071525 !important;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255,255,255,0.15);
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-btn {
    display: none;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 8px;

    cursor: pointer;

    padding: 9px;

    width: 42px;
    height: 42px;
}

.mobile-btn span {
    display: block;

    width: 21px;
    height: 2px;

    background: #fff;

    margin: 4px auto;

    border-radius: 5px;

    transition: all 0.3s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;
    height: 100dvh;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(79,140,255,0.12),
            transparent 35%
        ),
        #061525;

    z-index: 99999;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 0.35rem;

    padding: 80px 25px 40px;

    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    width: min(340px, 100%);

    text-align: center;

    font-family: var(--heading-font);

    font-size: 1.15rem;

    font-weight: 600;

    color: var(--text-dim);

    padding: 0.9rem 1.5rem;

    border-radius: 10px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.mobile-menu a:hover {
    color: #fff;

    background:
        rgba(79,140,255,0.12);

    transform: translateY(-1px);
}

.mobile-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 10px;

    font-size: 2rem;

    line-height: 1;

    color: var(--text-dim);

    cursor: pointer;
}

.mobile-close:hover {
    color: #fff;

    background: rgba(255,255,255,0.10);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #061525,
            #0b2943
        );
}

.hero-bg {
    position: absolute;

    inset: 0;

    overflow: hidden;
}
.hero-eyebrow {
    display: inline-block;

    background: linear-gradient(
        135deg,
        #8b0000,
        #c62828,
        #e53935
    );

    color: #ffffff;

    padding: 10px 22px;
    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;

    box-shadow:
        0 6px 20px rgba(198, 40, 40, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
@media (max-width: 600px) {
    .hero-eyebrow {
        max-width: 92%;
        padding: 8px 14px;
        font-size: 0.65rem;
        line-height: 1.5;
        letter-spacing: 0.05em;
    }
}
.carousel-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.02);

    transition:
        opacity 1.5s ease,
        transform 6s ease;
}

.carousel-image.active {
    opacity: 0.48;

    transform: scale(1);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-dim {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,16,29,0.92) 0%,
            rgba(5,25,43,0.76) 38%,
            rgba(6,28,47,0.68) 70%,
            rgba(4,17,30,0.90) 100%
        );

    z-index: 1;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(79,140,255,0.10),
            transparent 42%
        );

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-body {
    position: relative;

    z-index: 2;

    max-width: 1050px;

    width: 100%;

    margin: 0 auto;

    padding:
        9rem 2rem
        5rem;

    text-align: center;
}

.hero-label {
    display: inline-block;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: #c3d1df;

    margin-bottom: 1.6rem;

    padding: 0.45rem 0.8rem;

    background: rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 30px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    font-family: var(--heading-font);

    font-size: clamp(
        2.7rem,
        6vw,
        5.3rem
    );

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -0.055em;

    margin-bottom: 1.5rem;

    color: #fff;

    text-shadow:
        0 8px 35px rgba(0,0,0,0.35);
}

.hero-title em {
    font-style: normal;

    background:
        linear-gradient(
            90deg,
            #4f8cff,
            #7db0ff
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.hero-sub {
    font-size: 1.05rem;

    color: #c1cfdd;

    margin-bottom: 0.5rem;

    line-height: 1.6;
}

.hero-theme {
    font-size: 0.95rem;

    font-style: italic;

    color: var(--gold-light);

    margin-bottom: 2.7rem;

    text-shadow:
        0 3px 15px rgba(0,0,0,0.35);
}


/* =========================================================
   COUNTDOWN
========================================================= */

.cd {
    display: flex;

    justify-content: center;

    gap: 0.8rem;

    margin-bottom: 2.8rem;

    flex-wrap: wrap;
}

.cd-box {
    position: relative;

    min-width: 82px;

    padding: 1rem 0.7rem;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(17,51,81,0.90),
            rgba(7,28,47,0.90)
        );

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);

    overflow: hidden;
}

.cd-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 20%;

    width: 60%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );
}

.cd-n {
    font-family: var(--heading-font);

    font-size: 2rem;

    font-weight: 700;

    letter-spacing: -0.03em;

    font-variant-numeric: tabular-nums;

    color: #fff;
}

.cd-l {
    font-size: 0.62rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.11em;

    color: #7890a5;

    margin-top: 5px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-btns {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.8rem;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-family: var(--body-font);

    font-weight: 700;

    font-size: 0.94rem;

    padding:
        0.9rem
        1.8rem;

    min-height: 52px;

    border-radius: 10px;

    border: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
}


/* White primary button */

.btn-w {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eaf2fa
        );

    color: #071525;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
}

.btn-w:hover {
    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);
}


/* Transparent secondary */

.btn-ghost {
    background:
        rgba(255,255,255,0.03);

    color: #fff;

    border:
        1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background:
        rgba(79,140,255,0.12);

    border-color:
        rgba(79,140,255,0.55);
}


/* Blue button */

.btn-accent {
    background:
        linear-gradient(
            135deg,
            var(--accent),
            #326dd8
        );

    color: #fff;

    box-shadow:
        0 10px 30px rgba(45,105,210,0.25);
}

.btn-accent:hover {
    background:
        linear-gradient(
            135deg,
            #6ea3ff,
            #3f7ee7
        );

    box-shadow:
        0 15px 40px rgba(45,105,210,0.35);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    position: relative;

    padding: 6rem 2rem;

    border-top:
        1px solid rgba(255,255,255,0.06);
}

.section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 140px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(79,140,255,0.5),
            transparent
        );
}

.wrap {
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.sec-eyebrow {
    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    color: var(--accent);

    margin-bottom: 0.75rem;
}

.sec-title {
    font-family: var(--heading-font);

    font-size:
        clamp(
            1.8rem,
            3.5vw,
            2.8rem
        );

    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.1;

    margin-bottom: 0.8rem;

    color: #fff;
}

.sec-desc {
    font-size: 0.94rem;

    color: var(--text-dim);

    max-width: 560px;

    line-height: 1.7;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

[data-anim] {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 0.7s cubic-bezier(.22,.61,.36,1),
        transform 0.7s cubic-bezier(.22,.61,.36,1);
}

[data-anim].in {
    opacity: 1;

    transform:
        translateY(0);
}

[data-anim-delay="1"] {
    transition-delay: 0.08s;
}

[data-anim-delay="2"] {
    transition-delay: 0.16s;
}

[data-anim-delay="3"] {
    transition-delay: 0.24s;
}

[data-anim-delay="4"] {
    transition-delay: 0.32s;
}

[data-anim-delay="5"] {
    transition-delay: 0.40s;
}


/* =========================================================
   ABOUT + DATES
========================================================= */

.split {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 3rem;

    align-items: start;
}

.about-body {
    font-size: 0.94rem;

    color: var(--text-dim);

    line-height: 1.8;

    text-align: justify;
}

.about-body strong {
    color: #fff;
}

.arr-link {
    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    font-size: 0.82rem;

    font-weight: 700;

    color: var(--accent);

    margin-top: 1.5rem;

    transition:
        gap 0.2s ease;
}

.arr-link:hover {
    gap: 0.7rem;

    color: var(--accent-hover);
}


/* =========================================================
   DATES CARD
========================================================= */

.dates-box {
    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.92),
            rgba(7,27,46,0.92)
        );

    border:
        1px solid var(--border);

    border-radius: 16px;

    padding: 2rem;

    box-shadow:
        var(--shadow-sm);
}

.dates-heading {
    font-family: var(--heading-font);

    font-size: 1.25rem;

    font-weight: 700;

    margin-bottom: 1.75rem;

    padding-bottom: 0.8rem;

    border-bottom:
        1px solid var(--border);

    letter-spacing: -0.02em;
}

.tl {
    padding-left: 1.5rem;

    border-left:
        2px solid rgba(79,140,255,0.25);
}

.tl-item {
    position: relative;

    padding-bottom: 1.75rem;

    transition:
        transform 0.2s ease;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-item:hover {
    transform:
        translateX(5px);
}

.tl-dot {
    position: absolute;

    left: -1.875rem;

    top: 4px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--bg);

    border:
        2.5px solid var(--accent);

    box-shadow:
        0 0 12px rgba(79,140,255,0.45);
}

.tl-item.red .tl-dot {
    border-color: var(--red);

    box-shadow:
        0 0 12px rgba(239,83,80,0.35);
}

.tl-item.gold .tl-dot {
    border-color: var(--gold);

    background: var(--gold);

    box-shadow:
        0 0 15px rgba(245,189,79,0.45);
}

.tl-date {
    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    color: var(--text-muted);
}

.tl-item.red .tl-date {
    color: var(--red);
}

.tl-item.gold .tl-date {
    color: var(--gold);
}

.tl-label {
    font-size: 0.94rem;

    font-weight: 600;

    margin-top: 3px;

    color: #eef4fa;
}


/* =========================================================
   FEES
========================================================= */

.fees-row {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1rem;
}

.fee {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.95),
            rgba(8,29,48,0.95)
        );

    border:
        1px solid var(--border);

    border-radius: 14px;

    padding: 2rem 1.5rem;

    text-align: center;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.fee::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );

    opacity: 0.5;
}

.fee:hover {
    border-color:
        rgba(79,140,255,0.40);

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-md);
}

.fee.pop {
    border-color:
        rgba(79,140,255,0.55);

    box-shadow:
        0 12px 40px rgba(79,140,255,0.10);
}

.fee-cat {
    font-size: 0.82rem;

    font-weight: 600;

    color: var(--text-dim);

    margin-bottom: 0.75rem;
}

.fee-price {
    font-family: var(--heading-font);

    font-size: 2.5rem;

    font-weight: 700;

    letter-spacing: -0.04em;

    margin-bottom: 0.3rem;

    color: #fff;
}

.fee-price small {
    font-size: 0.85rem;

    font-weight: 400;

    color: var(--text-muted);
}

.fee-note {
    font-size: 0.75rem;

    color: var(--text-muted);
}


/* =========================================================
   QR
========================================================= */

.qr-strip {
    display: flex;

    align-items: center;

    gap: 2rem;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.95),
            rgba(7,27,46,0.95)
        );

    border:
        1px solid var(--border);

    border-radius: 16px;

    padding: 2rem;

    margin-top: 2.5rem;

    max-width: 680px;

    margin-left: auto;
    margin-right: auto;

    box-shadow:
        var(--shadow-sm);
}

.qr-strip img {
    width: 130px;
    height: 130px;

    border-radius: 10px;

    object-fit: contain;

    background: #fff;

    padding: 5px;

    border:
        1px solid var(--border);
}

.qr-strip h4 {
    font-family: var(--heading-font);

    font-size: 1.125rem;

    font-weight: 700;

    margin-bottom: 0.5rem;
}

.qr-strip p {
    font-size: 0.82rem;

    color: var(--text-dim);

    line-height: 1.6;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners-strip {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 3rem;

    flex-wrap: wrap;
}

.partner-a {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.5rem;

    opacity: 0.75;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.partner-a:hover {
    opacity: 1;

    transform:
        translateY(-3px);
}

.partner-a img {
    height: 56px;

    border-radius: 7px;

    object-fit: contain;
}

.partner-a span {
    font-size: 0.75rem;

    font-weight: 600;

    color: var(--text-muted);
}


/* =========================================================
   TRACKS
========================================================= */

.t-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1rem;
}

.t-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.92),
            rgba(8,28,47,0.92)
        );

    border:
        1px solid var(--border);

    border-radius: 14px;

    padding: 1.5rem;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.t-card:hover {
    border-color:
        rgba(79,140,255,0.35);

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-md);
}

.t-card h3 {
    font-family: var(--heading-font);

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: -0.02em;

    margin-bottom: 0.9rem;

    color: #fff;
}

.t-card ul {
    list-style: none;
}

.t-card li {
    font-size: 0.82rem;

    color: var(--text-dim);

    padding:
        0.28rem
        0
        0.28rem
        0.9rem;

    position: relative;
}

.t-card li::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0.65rem;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 7px rgba(79,140,255,0.5);
}


/* =========================================================
   SPEAKERS
========================================================= */

.sp-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 1.25rem;
}

.sp-card {
    display: flex;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.95),
            rgba(8,29,48,0.95)
        );

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sp-card:hover {
    border-color:
        rgba(79,140,255,0.35);

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-md);
}

.sp-photo {
    flex:
        0 0 160px;

    background:
        linear-gradient(
            145deg,
            #123653,
            #0a233a
        );

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 1.25rem;
}

.sp-photo img {
    width: 120px;
    height: 150px;

    object-fit: cover;

    border-radius: 10px;

    border:
        1px solid rgba(255,255,255,0.12);
}

.sp-body {
    padding: 1.5rem;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.sp-role {
    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.07em;

    color: var(--accent);

    margin-bottom: 0.15rem;
}

.sp-name {
    font-family: var(--heading-font);

    font-size: 1.25rem;

    font-weight: 700;

    letter-spacing: -0.02em;

    margin-bottom: 0.15rem;
}

.sp-at {
    font-size: 0.75rem;

    color: var(--text-dim);

    margin-bottom: 0.75rem;
}

.sp-bio {
    font-size: 0.75rem;

    color: var(--text-muted);

    line-height: 1.6;

    margin-bottom: 0.75rem;
}


/* =========================================================
   VENUE
========================================================= */

.v-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Venue Image */
.v-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 420px;

    object-fit: cover;

    display: block;

    border-radius: 15px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-md);

    box-sizing: border-box;
}

/* Venue Information */
.v-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
}

/* Venue Heading */
.v-info h3 {
    font-family: var(--heading-font);

    font-size: 1.5rem;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.02em;

    margin: 0 0 1.2rem;

    color: #ffffff;
}

/* Venue Paragraph */
.v-info p {
    font-size: 0.95rem;

    color: var(--text-dim);

    line-height: 1.8;

    margin: 0 0 1rem;

    text-align: justify;

    text-justify: inter-word;

    max-width: 100%;
}

/* Strong Text */
.v-info strong {
    color: #ffffff;

    font-weight: 700;
}

/* Last paragraph */
.v-info p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VENUE - DESKTOP
========================================================= */

@media (min-width: 1025px) {

    .v-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 3.5rem;

        align-items: center;
    }

    .v-img {
        min-height: 350px;
        height: 350px;
    }

    .v-info {
        padding: 0.5rem 0;
    }

    .v-info h3 {
        font-size: 1.6rem;
    }

    .v-info p {
        font-size: 0.96rem;
        line-height: 1.85;
        text-align: justify;
    }
}


/* =========================================================
   VENUE - TABLET
========================================================= */

@media (max-width: 1024px) and (min-width: 769px) {

    .v-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 2rem;
    }

    .v-img {
        height: 300px;
        min-height: 300px;
    }

    .v-info h3 {
        font-size: 1.4rem;
    }

    .v-info p {
        font-size: 0.92rem;
        line-height: 1.7;
        text-align: justify;
    }
}


/* =========================================================
   VENUE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .v-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 1.75rem;

        width: 100%;
    }

    .v-img {
        width: 100%;

        height: 260px;

        min-height: 260px;

        max-height: 300px;
    }

    .v-info {
        width: 100%;
    }

    .v-info h3 {
        font-size: 1.3rem;

        line-height: 1.35;

        margin-bottom: 0.9rem;
    }

    .v-info p {
        font-size: 0.92rem;

        line-height: 1.7;

        text-align: justify;

        margin-bottom: 0.9rem;
    }
}


/* =========================================================
   VENUE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .v-grid {
        gap: 1.4rem;
    }

    .v-img {
        height: 220px;
        min-height: 220px;
    }

    .v-info h3 {
        font-size: 1.2rem;
    }

    .v-info p {
        font-size: 0.88rem;
        line-height: 1.65;
    }
}

/* =========================================================
   COMMITTEE
========================================================= */

.sub-heading {
    font-family: var(--heading-font);

    font-size: 1.25rem;

    font-weight: 700;

    text-align: center;

    margin-bottom: 2rem;

    letter-spacing: -0.02em;
}

.patrons {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto 4.5rem;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1.25rem;
}

.pat {
    width: 100%;
    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 1.2rem;

    padding: 1.25rem 1.5rem;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.96),
            rgba(8,29,48,0.96)
        );

    border: 1px solid var(--border);

    border-radius: 14px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

    box-sizing: border-box;
}

.pat:hover {
    transform: translateY(-4px);

    border-color:
        rgba(79,140,255,0.45);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25);
}

.pat img {
    width: 68px;
    height: 68px;

    min-width: 68px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,0.15);
}

.pat > div {
    min-width: 0;
    flex: 1;
}

.pat .pr {
    font-size: 0.7rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: var(--accent);

    margin-bottom: 3px;
}

.pat .pn {
    font-family: var(--heading-font);

    font-size: 1.05rem;

    font-weight: 700;

    line-height: 1.25;

    color: #fff;

    margin-bottom: 3px;
}

.pat .pp {
    font-size: 0.72rem;

    color: var(--text-muted);

    font-style: italic;

    line-height: 1.45;
}


/* =========================================================
   ADVISORY COMMITTEE
========================================================= */

.adv-grid {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 1rem;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1rem;

    box-sizing: border-box;
}


/* =========================================================
   ADVISORY CARD
========================================================= */

.adv-grid > .adv {
    width: 100%;
    min-width: 0;

    min-height: 110px;

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 1rem 1.15rem;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.96),
            rgba(8,29,48,0.96)
        );

    border:
        1px solid var(--border);

    border-radius: 12px;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.adv-grid > .adv:hover {
    transform: translateY(-3px);

    border-color:
        rgba(79,140,255,0.45);

    box-shadow:
        0 10px 28px rgba(0,0,0,0.25);
}


/* =========================================================
   ADVISORY PHOTO
========================================================= */

.adv-grid > .adv img {
    width: 64px;
    height: 64px;

    min-width: 64px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid rgba(255,255,255,0.15);

    background: #183b5b;

    flex-shrink: 0;
}


/* =========================================================
   ADVISORY TEXT
========================================================= */

.adv-grid > .adv > div {
    min-width: 0;

    flex: 1;
}

.adv .an {
    margin: 0;

    font-family: var(--heading-font);

    font-size: 0.98rem;

    font-weight: 700;

    line-height: 1.25;

    color: #ffffff;
}

.adv .ar {
    margin: 3px 0 0;

    font-size: 0.76rem;

    font-weight: 600;

    line-height: 1.35;

    color: var(--accent);
}

.adv .ao {
    margin: 3px 0 0;

    font-size: 0.69rem;

    font-weight: 400;

    line-height: 1.4;

    color: var(--text-muted);
}


/* =========================================================
   CORE TEAM
========================================================= */

.core {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.95),
            rgba(7,27,46,0.95)
        );

    border:
        1px solid var(--border);

    border-radius: 18px;

    padding: 3rem 2rem;

    max-width: 880px;

    margin:
        3rem auto;

    text-align: center;

    box-shadow:
        var(--shadow-md);

    overflow: hidden;
}

.core::before {
    content: "";

    position: absolute;

    top: 0;
    left: 20%;

    width: 60%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}

.core-heading {
    font-family: var(--heading-font);

    font-size: 1.375rem;

    font-weight: 700;

    color: var(--gold-light);

    margin-bottom: 2rem;

    letter-spacing: -0.02em;
}

.core-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 2rem;
}

.core-grid .cm {
    text-align: center;
}

.core-grid .cm .cr,
.core-grid .cm .cn,
.core-grid .cm .ct {
    text-align: center;
}

.cm img {
    width: 72px;
    height: 72px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid rgba(245,189,79,0.4);

    margin:
        0 auto
        0.75rem;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25);
}

.cm .cr {
    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    color: var(--gold);
}

.cm .cn {
    font-family: var(--heading-font);

    font-size: 1.06rem;

    font-weight: 700;

    margin-top: 0.25rem;
}

.cm .ct {
    font-size: 0.68rem;

    color: var(--text-muted);

    margin-top: 0.125rem;
}

.cm a {
    font-size: 0.68rem;

    color: var(--accent);

    margin-top: 0.5rem;

    display: inline-block;
}


/* =========================================================
   FUNCTIONAL COMMITTEES
========================================================= */

.fn-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1rem;
}

.fn {
    background:
        linear-gradient(
            145deg,
            rgba(16,44,70,0.92),
            rgba(8,29,48,0.92)
        );

    border:
        1px solid var(--border);

    border-radius: 12px;

    padding: 1.25rem;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.fn:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(79,140,255,0.3);
}

.fn h4 {
    font-family: var(--heading-font);

    font-size: 0.94rem;

    font-weight: 700;

    letter-spacing: -0.01em;

    margin-bottom: 0.25rem;

    padding-bottom: 0.5rem;

    border-bottom:
        1px solid var(--border);
}

.fn .fd {
    font-size: 0.68rem;

    color: var(--text-muted);

    margin-bottom: 0.75rem;
}

.fn ul {
    list-style: none;
}

.fn li {
    font-size: 0.82rem;

    color: var(--text-dim);

    padding: 0.13rem 0;
}

.fn li:first-child {
    font-weight: 700;

    color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    margin-top: 60px;

    background:
        linear-gradient(
            180deg,
            #061525,
            #030b14
        );

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    max-width: 1300px;

    margin: 0 auto;

    padding:
        55px
        32px
        25px;
}

.footer-top {
    display: grid;

    grid-template-columns:
        1fr auto;

    gap: 80px;

    align-items: start;
}

.footer-info {
    max-width: 500px;
}

.footer-info h3 {
    margin:
        0 0 12px;

    color: #fff;

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: -0.02em;
}

.footer-logo {
    width: 150px;
    height: 75px;

    object-fit: contain;

    display: block;

    border-radius: 7px;

    margin:
        0 0 15px;
}

.footer-info p {
    margin: 0;

    color: var(--text-dim);

    font-size: 0.82rem;

    line-height: 1.7;
}

.footer-info .footer-institute {
    margin-top: 4px;
}

.footer-contact {
    min-width: 260px;
}

.footer-contact h4 {
    margin:
        0 0 12px;

    color: #fff;

    font-size: 0.9rem;

    font-weight: 800;
}

.footer-contact a {
    display: block;

    width: fit-content;

    margin-bottom: 7px;

    color: var(--text-dim);

    font-size: 0.8rem;

    transition:
        color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 38px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #65778a;

    font-size: 0.7rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav a {
        padding:
            0.5rem
            0.55rem;

        font-size: 0.76rem;
    }

    .fees-row {
        grid-template-columns:
            repeat(2,1fr);
    }

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

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

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


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 768px) {

    .header-inner {
        height: 64px;

        padding:
            0
            1rem;
    }

    .nav {
        display: none !important;
    }

    .mobile-btn {
        display: block !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .mobile-menu.open {
        display: flex !important;
    }

    .hero {
        min-height:
            100svh;
    }

    .hero-body {
        padding:
            7.5rem
            1.2rem
            4rem;
    }

    .hero-title {
        font-size:
            clamp(
                2.4rem,
                11vw,
                4rem
            );

        line-height: 1.04;
    }

    .hero-label {
        font-size: 0.62rem;

        letter-spacing: 0.09em;

        max-width: 95%;

        line-height: 1.5;
    }

    .hero-sub {
        font-size: 0.94rem;
    }

    .hero-theme {
        font-size: 0.84rem;

        line-height: 1.6;
    }

    .cd {
        gap: 0.55rem;
    }

    .cd-box {
        min-width: 68px;

        padding:
            0.85rem
            0.4rem;
    }

    .cd-n {
        font-size: 1.65rem;
    }

    .section {
        padding:
            4.5rem
            1.2rem;
    }

    .split {
        grid-template-columns:
            1fr;

        gap: 2rem;
    }

    .sp-grid {
        grid-template-columns:
            1fr;
    }

    .v-grid {
        grid-template-columns:
            1fr;

        gap: 2rem;
    }

    .patrons {
        grid-template-columns:
            1fr;
    }

    .core-grid {
        grid-template-columns:
            1fr;

        gap: 2.75rem;
    }

    .cm {
        text-align: center;
    }

    .cm img {
        margin-left: auto;
        margin-right: auto;
    }

    .cm .cr,
    .cm .cn,
    .cm .ct {
        text-align: center;
    }

    .footer-inner {
        padding:
            40px
            20px
            22px;
    }

    .footer-top {
        grid-template-columns:
            1fr;

        gap: 30px;
    }

    .footer-contact {
        min-width: 0;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-body {
        padding:
            7rem
            1rem
            3.5rem;
    }

    .hero-title {
        font-size:
            clamp(
                2.2rem,
                12vw,
                3.3rem
            );
    }

    .hero-label {
        font-size: 0.57rem;

        padding:
            0.4rem
            0.65rem;
    }

    .hero-theme {
        margin-bottom:
            2rem;
    }

    .cd {
        display: grid;

        grid-template-columns:
            repeat(4,1fr);

        width: 100%;

        max-width: 350px;

        margin-left: auto;
        margin-right: auto;
    }

    .cd-box {
        min-width: 0;

        width: 100%;

        padding:
            0.75rem
            0.25rem;
    }

    .cd-n {
        font-size: 1.35rem;
    }

    .cd-l {
        font-size: 0.52rem;

        letter-spacing: 0.07em;
    }

    .hero-btns {
        flex-direction: column;

        width: 100%;

        max-width: 330px;

        margin:
            0 auto;
    }

    .btn {
        width: 100%;
    }

    .fees-row {
        grid-template-columns:
            1fr;
    }

    .t-grid {
        grid-template-columns:
            1fr;
    }

    .adv-grid {
        grid-template-columns:
            1fr;
    }

    .fn-grid {
        grid-template-columns:
            1fr;
    }

    .sp-card {
        flex-direction:
            column;
    }

    .sp-photo {
        flex:
            none;

        padding: 1rem;
    }

    .sp-photo img {
        width: 100%;

        height: 190px;
    }

    .qr-strip {
        flex-direction:
            column;

        text-align:
            center;
    }

    .qr-strip img {
        width: 150px;
        height: 150px;
    }

    .v-img {
        height: 250px;
    }

    .core {
        padding:
            2.5rem
            1.2rem;
    }

    .footer-bottom {
        flex-direction:
            column;

        gap: 0.4rem;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .logo-text {
        font-size: 0.92rem;
    }

    .hero-title {
        font-size:
            2.05rem;
    }

    .cd-n {
        font-size:
            1.15rem;
    }

    .cd-l {
        font-size:
            0.47rem;
    }

    .hero-body {
        padding-left:
            0.8rem;

        padding-right:
            0.8rem;
    }
}


/* =========================================================
   DESKTOP — COMPLETELY HIDE MOBILE MENU
========================================================= */

@media (min-width: 769px) {

    .mobile-menu,
    .mobile-menu.open {
        display: none !important;

        visibility: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;
    }
}


/* =========================================================
   MOBILE MENU FINAL OVERRIDE
========================================================= */

@media (max-width: 768px) {

    .mobile-menu {
        position: fixed !important;

        inset: 0 !important;

        width: 100vw !important;

        height: 100vh !important;

        height: 100dvh !important;

        background:
            radial-gradient(
                circle at 50% 10%,
                rgba(79,140,255,0.12),
                transparent 35%
            ),
            #061525 !important;

        z-index: 99999 !important;

        display: none !important;

        flex-direction: column !important;

        align-items: center !important;

        justify-content: center !important;

        gap: 8px !important;

        padding:
            70px
            20px
            30px !important;

        overflow-y: auto !important;

        opacity: 1 !important;

        visibility: visible !important;

        backdrop-filter: none !important;
    }

    .mobile-menu.open {
        display: flex !important;
    }

    .mobile-menu a {
        display: block !important;

        width: 100% !important;

        max-width: 320px !important;

        padding:
            14px
            20px !important;

        color:
            #f5f7fa !important;

        background:
            transparent !important;

        font-size:
            1.1rem !important;

        font-weight:
            600 !important;

        line-height:
            1.3 !important;

        text-align:
            center !important;

        border-radius:
            9px !important;
    }

    .mobile-menu a:hover {
        background:
            rgba(79,140,255,0.12) !important;

        color:
            #ffffff !important;
    }

    .mobile-close {
        position: absolute !important;

        top: 18px !important;

        right: 18px !important;

        width: 42px !important;

        height: 42px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        background:
            rgba(255,255,255,0.05) !important;

        border:
            1px solid rgba(255,255,255,0.10) !important;

        border-radius:
            9px !important;

        color:
            #a9b8c7 !important;

        font-size:
            2rem !important;

        line-height:
            1 !important;

        cursor:
            pointer !important;

        z-index:
            100000 !important;
    }

    .mobile-close:hover {
        color:
            #ffffff !important;

        background:
            rgba(255,255,255,0.10) !important;
    }
}
/* =========================================================
   DEPARTMENT — VISION & MISSION
   COMPLETE CSS
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.department-vm {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 0 2rem;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   DEPARTMENT HEADING
========================================================= */

.department-vm-heading {
    width: 100%;
    max-width: 950px;

    margin: 0 auto 3.5rem;

    text-align: center;

    position: relative;

    z-index: 2;
}


/* =========================================================
   DEPARTMENT EYEBROW
========================================================= */

.department-vm-heading .vm-eyebrow {
    display: inline-block;

    margin: 0 0 1rem;

    padding: 9px 22px;

    border-radius: 30px;

    background:
        rgba(79, 140, 255, 0.10);

    border:
        1px solid rgba(79, 140, 255, 0.30);

    color: #76a7ff;

    font-family: var(--heading-font);

    font-size: 0.74rem;

    font-weight: 800;

    letter-spacing: 0.10em;

    line-height: 1.4;

    text-transform: uppercase;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.department-vm-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: clamp(
        2rem,
        4vw,
        2.8rem
    );

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.04em;

    text-align: center;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.department-vm-heading .vm-intro {
    width: 100%;
    max-width: 800px;

    margin: 1rem auto 0;

    color: var(--text-dim);

    font-family: var(--body-font);

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.75;

    text-align: center;
}


/* =========================================================
   VISION + MISSION CONTAINER
========================================================= */

.department-vm .vision-mission {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 2rem;

    align-items: stretch;

    box-sizing: border-box;
}


/* =========================================================
   COMMON CARD
========================================================= */

.department-vm .vm-card {
    position: relative;

    width: 100%;
    min-width: 0;

    padding: 2.6rem;

    background:
        linear-gradient(
            145deg,
            #123653 0%,
            #0c2942 100%
        );

    border:
        1px solid rgba(120, 180, 255, 0.20);

    border-radius: 18px;

    overflow: hidden;

    box-sizing: border-box;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   CARD TOP HIGHLIGHT
========================================================= */

.department-vm .vm-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;

    width: 84%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4f8cff,
            transparent
        );

    z-index: 1;
}


/* =========================================================
   CARD DECORATIVE GLOW
========================================================= */

.department-vm .vm-card::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    top: -105px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(79, 140, 255, 0.07);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CARD HOVER
========================================================= */

.department-vm .vm-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(79, 140, 255, 0.42);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   ICON
========================================================= */

.department-vm .vm-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 1.4rem;

    border-radius: 12px;

    background:
        rgba(79, 140, 255, 0.10);

    border:
        1px solid rgba(79, 140, 255, 0.30);

    color: #5b98ff;

    font-size: 1.35rem;

    line-height: 1;

    position: relative;

    z-index: 3;

    box-sizing: border-box;
}


/* =========================================================
   CARD HEADING
========================================================= */

.department-vm .vm-card h3 {
    margin: 0 0 1.35rem;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 1.8rem;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.03em;

    position: relative;

    z-index: 3;
}


/* =========================================================
   VISION TEXT
========================================================= */

.department-vm .vm-card > p {
    margin: 0;

    color: #b7c9da;

    font-family: var(--body-font);

    font-size: 0.95rem;

    font-weight: 400;

    line-height: 1.9;

    text-align: left;

    position: relative;

    z-index: 3;
}


/* =========================================================
   VISION STRONG TEXT
========================================================= */

.department-vm .vm-card > p strong {
    color: #ffffff;

    font-weight: 750;
}


/* =========================================================
   MISSION LIST
========================================================= */

.department-vm .mission-list {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 1.2rem;

    position: relative;

    z-index: 3;
}


/* =========================================================
   MISSION ITEM
========================================================= */

.department-vm .mission-item {
    width: 100%;

    display: grid;

    grid-template-columns:
        46px
        minmax(0, 1fr);

    gap: 1rem;

    align-items: start;

    box-sizing: border-box;
}


/* =========================================================
   MISSION NUMBER
========================================================= */

.department-vm .mission-item span {
    width: 46px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background:
        rgba(79, 140, 255, 0.10);

    border:
        1px solid rgba(79, 140, 255, 0.30);

    color: #62a0ff;

    font-family: var(--heading-font);

    font-size: 0.72rem;

    font-weight: 800;

    line-height: 1;

    box-sizing: border-box;
}


/* =========================================================
   MISSION TEXT
========================================================= */

.department-vm .mission-item p {
    margin: 0;

    padding: 0;

    color: #b7c9da;

    font-family: var(--body-font);

    font-size: 0.94rem;

    font-weight: 400;

    line-height: 1.75;

    text-align: left;

    min-width: 0;
}


/* =========================================================
   MISSION TEXT HOVER
========================================================= */

.department-vm .mission-item:hover span {
    background:
        rgba(79, 140, 255, 0.18);

    border-color:
        rgba(79, 140, 255, 0.50);

    color: #7eb0ff;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .department-vm {
        max-width: 1280px;

        padding-left: 2rem;
        padding-right: 2rem;
    }


    .department-vm-heading {
        max-width: 950px;

        margin-bottom: 3.5rem;
    }


    .department-vm-heading .vm-eyebrow {
        font-size: 0.74rem;

        padding:
            9px 22px;
    }


    .department-vm-heading h2 {
        font-size: 2.8rem;
    }


    .department-vm-heading .vm-intro {
        max-width: 800px;

        font-size: 1rem;
    }


    .department-vm .vision-mission {
        max-width: 1180px;

        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);

        gap: 2rem;
    }


    .department-vm .vm-card {
        padding: 2.6rem;
    }


    .department-vm .vm-card h3 {
        font-size: 1.8rem;
    }


    .department-vm .vm-card > p {
        font-size: 0.95rem;

        line-height: 1.9;
    }


    .department-vm .mission-item p {
        font-size: 0.94rem;

        line-height: 1.75;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) and (min-width: 901px) {

    .department-vm {
        max-width: 1100px;

        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }


    .department-vm-heading {
        margin-bottom: 3rem;
    }


    .department-vm-heading h2 {
        font-size: 2.4rem;
    }


    .department-vm-heading .vm-intro {
        font-size: 0.92rem;
    }


    .department-vm .vision-mission {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);

        gap: 1.5rem;
    }


    .department-vm .vm-card {
        padding: 2rem;
    }


    .department-vm .vm-card h3 {
        font-size: 1.55rem;
    }


    .department-vm .vm-card > p {
        font-size: 0.88rem;

        line-height: 1.8;
    }


    .department-vm .mission-item {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 0.8rem;
    }


    .department-vm .mission-item span {
        width: 42px;
        height: 32px;
    }


    .department-vm .mission-item p {
        font-size: 0.86rem;

        line-height: 1.65;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .department-vm {
        max-width: 850px;

        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }


    .department-vm-heading {
        max-width: 750px;

        margin-bottom: 2.5rem;
    }


    .department-vm-heading .vm-eyebrow {
        font-size: 0.68rem;

        padding:
            7px 15px;

        letter-spacing: 0.08em;
    }


    .department-vm-heading h2 {
        font-size: 2rem;
    }


    .department-vm-heading .vm-intro {
        font-size: 0.88rem;

        line-height: 1.7;
    }


    .department-vm .vision-mission {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 1rem;
    }


    .department-vm .vm-card {
        padding: 1.7rem;
    }


    .department-vm .vm-card h3 {
        font-size: 1.4rem;

        margin-bottom: 1.1rem;
    }


    .department-vm .vm-card > p {
        font-size: 0.84rem;

        line-height: 1.75;
    }


    .department-vm .vm-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 1.1rem;
    }


    .department-vm .mission-list {
        gap: 0.9rem;
    }


    .department-vm .mission-item {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        gap: 0.7rem;
    }


    .department-vm .mission-item span {
        width: 40px;
        height: 31px;
    }


    .department-vm .mission-item p {
        font-size: 0.82rem;

        line-height: 1.6;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .department-vm {
        width: 100%;

        max-width: 100%;

        padding-left: 1rem;
        padding-right: 1rem;
    }


    .department-vm-heading {
        width: 100%;

        margin-bottom: 2rem;
    }


    .department-vm-heading .vm-eyebrow {
        max-width: 100%;

        padding:
            7px 12px;

        font-size: 0.58rem;

        letter-spacing: 0.06em;

        line-height: 1.5;
    }


    .department-vm-heading h2 {
        font-size: 1.7rem;

        line-height: 1.15;
    }


    .department-vm-heading .vm-intro {
        margin-top: 0.8rem;

        font-size: 0.8rem;

        line-height: 1.65;
    }


    .department-vm .vision-mission {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 1rem;

        margin: 0 auto;
    }


    .department-vm .vm-card {
        width: 100%;

        padding: 1.5rem;

        border-radius: 15px;
    }


    .department-vm .vm-card h3 {
        font-size: 1.35rem;

        margin-bottom: 1rem;
    }


    .department-vm .vm-card > p {
        font-size: 0.82rem;

        line-height: 1.7;
    }


    .department-vm .vm-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 1rem;

        font-size: 1.15rem;
    }


    .department-vm .mission-list {
        gap: 0.9rem;
    }


    .department-vm .mission-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 0.65rem;
    }


    .department-vm .mission-item span {
        width: 38px;
        height: 30px;

        font-size: 0.68rem;
    }


    .department-vm .mission-item p {
        font-size: 0.8rem;

        line-height: 1.6;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .department-vm {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }


    .department-vm-heading {
        margin-bottom: 1.7rem;
    }


    .department-vm-heading .vm-eyebrow {
        font-size: 0.52rem;

        padding:
            6px 10px;

        letter-spacing: 0.05em;
    }


    .department-vm-heading h2 {
        font-size: 1.5rem;
    }


    .department-vm-heading .vm-intro {
        font-size: 0.76rem;

        line-height: 1.65;
    }


    .department-vm .vm-card {
        padding: 1.3rem;

        border-radius: 14px;
    }


    .department-vm .vm-card h3 {
        font-size: 1.25rem;

        margin-bottom: 0.9rem;
    }


    .department-vm .vm-card > p {
        font-size: 0.78rem;

        line-height: 1.65;
    }


    .department-vm .vm-icon {
        width: 42px;
        height: 42px;

        font-size: 1.05rem;
    }


    .department-vm .mission-item {
        grid-template-columns:
            36px
            minmax(0, 1fr);

        gap: 0.6rem;
    }


    .department-vm .mission-item span {
        width: 36px;
        height: 29px;

        font-size: 0.64rem;
    }


    .department-vm .mission-item p {
        font-size: 0.76rem;

        line-height: 1.6;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .department-vm {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }


    .department-vm-heading h2 {
        font-size: 1.4rem;
    }


    .department-vm-heading .vm-eyebrow {
        font-size: 0.48rem;

        padding:
            5px 8px;
    }


    .department-vm-heading .vm-intro {
        font-size: 0.72rem;
    }


    .department-vm .vm-card {
        padding: 1.15rem;
    }


    .department-vm .vm-card h3 {
        font-size: 1.15rem;
    }


    .department-vm .vm-card > p {
        font-size: 0.74rem;
    }


    .department-vm .mission-item {
        grid-template-columns:
            34px
            minmax(0, 1fr);

        gap: 0.55rem;
    }


    .department-vm .mission-item span {
        width: 34px;
        height: 28px;
    }


    .department-vm .mission-item p {
        font-size: 0.72rem;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .department-vm .vm-card {
        transition: none;
    }

    .department-vm .vm-card:hover {
        transform: none;
    }
}


/* =========================================================
   SAFETY — PREVENT HORIZONTAL OVERFLOW
========================================================= */

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


.department-vm img {
    max-width: 100%;
}


/* =========================================================
   END — VISION & MISSION
========================================================= */
