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

:root {
    /* Brand reds from logo */
    --brand: #E30117;
    --brand2: #E41B18;
    --brand-dk: #a8000f;
    --brand-lt: #ff6b6b;
    --brand-xs: #ffd5d5;
    /* Navy */
    --navy: #071829;
    --navy2: #0c2340;
    --navy3: #103060;
    /* Accents */
    --gold: #c9920a;
    --gold2: #f5c330;
    --gold3: #fde68a;
    --violet: #7c3aed;
    --violet2: #a855f7;
    --sky: #0ea5e9;
    --orange: #f97316;
    --co-organising: #10b981;
    /* Neutrals */
    --cream: #f8f5f0;
    --white: #ffffff;
    --text: #0f1e30;
    --muted: #3d5068;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease2: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: none
}

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

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

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--navy)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand), var(--violet2), var(--gold2));
    border-radius: 4px
}

/* ═══ CURSOR ═══ */
.cur {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

.cur-dot {
    width: 8px;
    height: 8px;
    background: var(--brand);
    transition: transform .15s, background .3s
}

.cur-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(227, 1, 23, .5);
    transition: width .5s var(--ease), height .5s var(--ease), opacity .3s
}

.cur-dot.hov {
    background: var(--gold2);
    transform: scale(2.5)
}

.cur-ring.hov {
    width: 60px;
    height: 60px;
    opacity: .25
}

@media(hover:none) {
    .cur {
        display: none
    }

    body {
        cursor: auto
    }
}

/* ═══ TOP BAR ═══ */
.topbar {
    background: var(--navy);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: rgba(255, 255, 255, .92);
    position: relative;
    overflow: hidden;
    height: 40px
}

.topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--gold2), var(--violet2), var(--brand2), var(--brand));
    background-size: 400%;
    animation: shimmer 5s linear infinite
}

@keyframes shimmer {
    to {
        background-position: 400% 0
    }
}

.tl {
    display: flex;
    gap: 20px;
    align-items: center
}

.tl a,
.tl span {
    color: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    font-size: 12px
}

.tl a:hover {
    color: var(--brand-lt)
}

.ti {
    width: 14px;
    height: 14px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0
}

.tr {
    display: flex;
    gap: 8px;
    align-items: center
}

.tbb {
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .25s;
    cursor: pointer
}

.tbb-r {
    background: rgba(227, 1, 23, .15);
    border: 1px solid rgba(227, 1, 23, .4);
    color: var(--brand-lt)
}

.tbb-r:hover {
    background: var(--brand);
    color: #fff
}

.tbb-g {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #fff
}

.tbb-g:hover {
    background: var(--brand-dk)
}

/* ═══ NAVBAR ═══ */
nav {
    --nav-h: 80px;
    --brand-logo-h: 54px;
    --brand-theme-h: 58px;
    --brand-theme-max-w: 240px;
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    transition: box-shadow .3s, background .3s;
    overflow: visible
}

nav.sc {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .1)
}

.nw {
    max-width: 100%;
    height: var(--nav-h);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    overflow: visible
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: min(52%, 520px);
    flex: 0 1 auto;
    overflow: hidden
}

.brand-logo {
    height: var(--brand-logo-h);
    max-height: calc(var(--nav-h) - 16px);
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform .3s var(--ease2)
}

.brand-logo:hover {
    transform: scale(1.03)
}

.bt {
    display: flex;
    align-items: center;
    min-width: 0;
    line-height: 0;
    overflow: hidden
}

.brand-theme-logo {
    display: block;
    height: var(--brand-theme-h);
    max-height: calc(var(--nav-h) - 16px);
    width: auto;
    max-width: var(--brand-theme-max-w);
    object-fit: contain;
    object-position: left center;
    transition: transform .3s var(--ease2)
}

.brand:hover .brand-theme-logo {
    transform: scale(1.02)
}

.bt h1 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.01em;
    line-height: 1.1
}

.bt p {
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 1px
}

.bc {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    vertical-align: middle
}

.nl {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    flex-shrink: 0;
    position: relative;
    z-index: 950
}

.nl>li {
    position: relative
}

/* Invisible bridge so hover reaches dropdown across the gap */
.nl>li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
    z-index: 199
}

.nl>li>a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 5px
}

.nl>li>a:hover,
.nl>li.act>a {
    color: var(--brand);
    background: rgba(227, 1, 23, .06)
}

.ci {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform .2s
}

.nl>li:hover .ci {
    transform: rotate(180deg)
}

.dd {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .13);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.97);
    transform-origin: top left;
    transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .25s var(--ease);
    list-style: none;
    padding: 8px;
    z-index: 200;
    overflow: hidden;
    pointer-events: none
}

.dd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--violet2));
    border-radius: 0 0 4px 4px
}

.nl>li:hover .dd,
.nl>li:focus-within .dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.dd li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--text);
    transition: all .2s;
    border-radius: 8px
}

.dd li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    transform: scale(0);
    transition: transform .2s var(--ease2)
}

.dd li a:hover {
    background: rgba(227, 1, 23, .05);
    color: var(--brand);
    padding-left: 18px
}

.dd li a:hover::before {
    transform: scale(1)
}

.nc {
    background: linear-gradient(135deg, var(--brand), var(--brand-dk));
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    letter-spacing: .04em;
    font-size: 13px !important;
    box-shadow: 0 4px 20px rgba(227, 1, 23, .3);
    transition: all .3s !important
}

.nc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(227, 1, 23, .45) !important
}

.hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.hbg span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
    display: block
}

/* ═══════════════════════════════════════════
HERO — Video Background
═══════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    min-height: 95vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #071829
}

/* Video layer */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(7, 24, 41, .93) 0%, rgba(7, 24, 41, .65) 50%, rgba(10, 5, 15, .4) 100%);
}

/* Fallback slides (shown when video fails or before play) */
.slides {
    position: absolute;
    inset: 0;
    z-index: 1
}

.sld {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center
}

.sld.on {
    opacity: 1
}

.sld::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(7, 24, 41, .58) 0%,
            rgba(7, 24, 41, .38) 38%,
            rgba(7, 24, 41, .18) 52%,
            rgba(7, 24, 41, .06) 68%,
            transparent 82%)
}

/* Delhi monuments — full hero width, image anchored right (desktop) */
.hero-monument {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    visibility: visible;
    pointer-events: none;
    background-color: #071829;
    overflow: hidden;
    contain: layout style paint
}

.hmon-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    background-repeat: no-repeat;
    background-position: 72% center;
    background-size: cover;
    filter: brightness(.94) saturate(1.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: opacity;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            transparent 28%,
            rgba(0, 0, 0, .12) 38%,
            rgba(0, 0, 0, .35) 48%,
            rgba(0, 0, 0, .65) 58%,
            rgba(0, 0, 0, .88) 68%,
            #000 78%,
            #000 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            transparent 28%,
            rgba(0, 0, 0, .12) 38%,
            rgba(0, 0, 0, .35) 48%,
            rgba(0, 0, 0, .65) 58%,
            rgba(0, 0, 0, .88) 68%,
            #000 78%,
            #000 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat
}

.hmon-slide.hmon-india {
    background-image: url('../images/hero/India-gate-banner.png')
}

.hmon-slide.hmon-qutub {
    background-image: url('../images/hero/qutub-minar-banner.png')
}

.hmon-slide.hmon-parliament {
    background-image: url('../images/hero/parliament-banner.png')
}

.hmon-slide.on {
    opacity: 1
}

/* Desktop: monument visible while keeping original banner blend */
@media (min-width: 901px) {
    .hero-monument {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important
    }

    .hmon-nav {
        display: flex !important
    }
}

/* Large desktop / high-resolution tuning with same visual style */
@media (min-width: 1920px) {
    .hero {
        min-height: 100vh
    }

    .hc {
        min-height: 92vh
    }

    .hmon-slide {
        background-size: cover;
        background-position: 74% center
    }
}

@media (min-width: 2560px) {
    .hmon-slide {
        background-size: cover;
        background-position: 76% center;
        filter: brightness(.96) saturate(1.1)
    }

    .hmon-nav {
        bottom: 48px;
        right: 6%
    }
}

/* Apple Retina & hi-DPI (MacBook Pro, 5K iMac, etc.) */
@media (-webkit-min-device-pixel-ratio: 2) and (min-width: 901px),
(min-resolution: 192dpi) and (min-width: 901px) {
    .hmon-slide {
        filter: brightness(.96) saturate(1.12) contrast(1.03);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto
    }

    .hmon-slide.hmon-india {
        background-image: image-set(url('../images/hero/India-gate-banner.png') 1x,
                url('../images/hero/India-gate-banner.png') 2x)
    }

    .hmon-slide.hmon-qutub {
        background-image: image-set(url('../images/hero/qutub-minar-banner.png') 1x,
                url('../images/hero/utub-minar-banner.png') 2x)
    }

    .hmon-slide.hmon-parliament {
        background-image: image-set(url('../images/hero/parliament-banner.png') 1x,
                url('../images/hero/parliament-banner.png') 2x)
    }
}

@media (-webkit-min-device-pixel-ratio: 3) and (min-width: 901px),
(min-resolution: 288dpi) and (min-width: 901px) {
    .hmon-slide {
        filter: brightness(.97) saturate(1.14) contrast(1.04)
    }
}

/* Monument carousel dots — bottom right of hero */
.hmon-nav {
    position: absolute;
    bottom: 32px;
    right: 5%;
    z-index: 6;
    display: flex;
    gap: 10px;
    pointer-events: auto
}

.hmond {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: all .4s var(--ease2)
}

.hmond.on {
    width: 28px;
    background: var(--brand)
}

.hmond:hover {
    background: rgba(255, 255, 255, .6)
}

/* Single unified tint — same tone across full hero */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(105deg,
            rgba(7, 24, 41, .72) 0%,
            rgba(7, 24, 41, .48) 32%,
            rgba(7, 24, 41, .28) 50%,
            rgba(7, 24, 41, .14) 65%,
            rgba(7, 24, 41, .06) 80%,
            transparent 94%),
        linear-gradient(to bottom,
            transparent 0%,
            transparent 70%,
            rgba(7, 24, 41, .12) 100%)
}

.sld:nth-child(1) {
    background-image: linear-gradient(135deg, #071829, #2a0005, #071829)
}

.sld:nth-child(2) {
    background-image: linear-gradient(135deg, #071829, #3b1572, #071829)
}

.sld:nth-child(3) {
    background-image: linear-gradient(135deg, #071829, #300020, #103060)
}

/* Animated blobs */
.hblob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: blob 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 4
}

.b1 {
    width: 500px;
    height: 500px;
    background: rgba(227, 1, 23, .18);
    top: -100px;
    right: -100px;
    animation-delay: 0s
}

.b2 {
    width: 400px;
    height: 400px;
    background: rgba(124, 58, 237, .14);
    bottom: -50px;
    left: 100px;
    animation-delay: -3s
}

.b3 {
    width: 300px;
    height: 300px;
    background: rgba(245, 195, 48, .1);
    top: 40%;
    right: 20%;
    animation-delay: -5s
}

@keyframes blob {

    0%,
    100% {
        transform: scale(1) translate(0, 0)
    }

    33% {
        transform: scale(1.1) translate(30px, -20px)
    }

    66% {
        transform: scale(.95) translate(-20px, 30px)
    }
}

/* Heartbeat pulse ring */
.pulse-ring {
    position: absolute;
    bottom: 10%;
    right: 8%;
    z-index: 3;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.pr-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(227, 1, 23, .5);
    animation: pr-anim 2.5s ease-out infinite;
}

.pr-circle:nth-child(2) {
    animation-delay: .8s
}

.pr-circle:nth-child(3) {
    animation-delay: 1.6s
}

@keyframes pr-anim {
    0% {
        transform: scale(.3);
        opacity: .8
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

.pr-heart {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-heart svg {
    width: 32px;
    height: 32px;
    fill: var(--brand);
    animation: heartbeat 1.2s ease-in-out infinite
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.25)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.15)
    }

    70% {
        transform: scale(1)
    }
}

/* ECG SVG overlay */
.ecg-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: .13;
    pointer-events: none;
    z-index: 3
}

.ep {
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    animation: draw 3.5s ease forwards .8s
}

@keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}

/* Slide nav dots */
.sdnav {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10
}

.sdd {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .3);
    transition: all .4s var(--ease2);
    cursor: pointer
}

.sdd.on {
    width: 28px;
    background: var(--brand)
}

/* Hero content */
.hc {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    min-height: 85vh
}

@keyframes hin {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hl {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    animation: hin 1s var(--ease) both
}

.hbdg {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 26px
}

.hbd {
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--brand);
    animation: pulse 1.8s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.6)
    }
}

.htitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5.5vw, 55px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 10px
}

.htitle em {
    display: block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--brand-lt), var(--gold3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hsub {
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
    font-weight: 500
}

.hdesc {
    font-size: 16.5px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 520px;
    font-weight: 400
}

.hbtns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.bp1 {
    background: linear-gradient(135deg, var(--brand), var(--brand-dk));
    color: #fff;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: all .3s var(--ease2);
    box-shadow: 0 8px 30px rgba(227, 1, 23, .45);
    display: flex;
    align-items: center;
    gap: 8px
}

.bp1:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(227, 1, 23, .55)
}

.bp1 svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform .2s
}

.bp1:hover svg {
    transform: translateX(3px)
}

.bp2 {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: all .3s;
    border: 1.5px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px)
}

.bp2:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px)
}

.hst {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 28px
}

.hsn {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-lt), var(--gold3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.hsl {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 4px
}

/* Hero right column — transparent; monument is .hero-monument behind; card on top */
.hr {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: 100%;
    width: 100%;
    display: grid;
    place-items: center
}

.hr .hcard {
    position: relative;
    z-index: 2;
    width: calc(100% - 48px);
    max-width: 340px;
    margin: 24px;
    padding: 40px;
    text-align: center;
    border-radius: 24px;
    background: rgba(7, 24, 41, .38);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35)
}

.hctag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 1, 23, .15);
    border: 1px solid rgba(227, 1, 23, .3);
    color: var(--brand-lt);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hcdate {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px
}

.hcmo {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold3);
    margin-bottom: 22px;
    letter-spacing: .08em
}

.hcsep {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
    margin: 0 auto 22px
}

.hcven {
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6
}

.hcven strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px
}

.hctheme {
    margin-top: 20px;
    padding: 13px 16px;
    background: linear-gradient(135deg, rgba(227, 1, 23, .2), rgba(124, 58, 237, .15));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    font-style: italic;
    font-family: 'Playfair Display', serif
}

.hctheme span {
    color: var(--gold3);
    font-style: normal;
    font-weight: 700
}

/* ═══ COUNTDOWN ═══ */
.cdb {
    background: linear-gradient(90deg, var(--navy2), var(--brand-dk) 35%, var(--navy3) 70%, var(--navy2));
    background-size: 300%;
    animation: bgsl 10s ease infinite;
    padding: 26px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px
}

@keyframes bgsl {

    0%,
    100% {
        background-position: 0%
    }

    50% {
        background-position: 100%
    }
}

.cdl {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-right: 16px;
    font-weight: 600
}

.cdu {
    display: flex;
    gap: 6px;
    align-items: center
}

.cdut {
    text-align: center;
    min-width: 64px
}

.cdbox {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
    transition: transform .15s var(--ease2)
}

.cdbox.fl {
    transform: scaleY(0)
}

.cdlb {
    font-size: 10px;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    display: block
}

.cds {
    font-size: 30px;
    color: rgba(255, 255, 255, .2);
    font-family: 'Playfair Display', serif;
    padding-bottom: 14px
}

/* ═══ TICKER ═══ */
.ticker {
    background: linear-gradient(90deg, var(--brand-dk), var(--brand), var(--violet), var(--brand-dk));
    background-size: 400%;
    animation: shimmer 8s linear infinite;
    padding: 12px 0;
    overflow: hidden;
    position: relative
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--brand-dk), transparent)
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--brand-dk), transparent)
}

.tkt {
    display: flex;
    animation: tck 28s linear infinite;
    width: max-content
}

.tkt:hover {
    animation-play-state: paused
}

@keyframes tck {
    to {
        transform: translateX(-50%)
    }
}

.ti2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, .95);
    font-weight: 500;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.ti2::before {
    content: '♥';
    color: rgba(255, 255, 255, .5);
    font-size: 10px
}

.ti2 a {
    color: var(--gold3);
    font-weight: 700;
    border-bottom: 1px solid rgba(253, 230, 138, .3)
}

.ti2 strong {
    color: #fff
}

/* ═══ SHARED ═══ */
.sec {
    padding: 96px 5%
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.stag::before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 1px;
    display: block
}

.stag.r {
    color: var(--brand)
}

.stag.r::before {
    background: var(--brand)
}

.stag.g {
    color: var(--gold)
}

.stag.g::before {
    background: var(--gold)
}

.stag.v {
    color: var(--violet2)
}

.stag.v::before {
    background: var(--violet2)
}

.stag.w {
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 0 20px rgba(227, 1, 23, .4)
}

.stag.w::before {
    background: var(--brand)
}

.stit {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 14px
}

.stit em {
    font-style: italic;
    font-weight: 400;
    color: var(--brand)
}

.stit.lt {
    color: #fff
}

.stit.lt em {
    color: var(--brand-lt)
}

.sdesc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 580px;
    font-weight: 400
}

.sdesc.lt {
    color: rgba(255, 255, 255, .85)
}

.dl {
    width: 56px;
    height: 4px;
    border-radius: 2px;
    margin: 20px 0 36px;
    background: linear-gradient(90deg, var(--brand), var(--violet2))
}

.dl.g {
    background: linear-gradient(90deg, var(--gold2), var(--orange))
}

.dl.r {
    background: linear-gradient(90deg, var(--brand), var(--brand-lt))
}

/* ═══ REVEAL ═══ */
[data-reveal] {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

[data-reveal="up"] {
    transform: translateY(40px)
}

[data-reveal="left"] {
    transform: translateX(-40px)
}

[data-reveal="right"] {
    transform: translateX(40px)
}

[data-reveal="sc"] {
    transform: scale(.94)
}

[data-reveal].on {
    opacity: 1;
    transform: none
}

[data-d="1"] {
    transition-delay: .1s
}

[data-d="2"] {
    transition-delay: .2s
}

[data-d="3"] {
    transition-delay: .3s
}

[data-d="4"] {
    transition-delay: .4s
}

/* ═══ ABOUT ═══ */
.abs {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px
}

.abs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--violet2), var(--gold2));
    z-index: 1
}

.abs::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 1, 23, .05) 0%, transparent 70%);
    pointer-events: none
}

.abg {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
    margin-top: 48px;
    align-items: stretch
}

.abt {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%
}

.abt p {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.82;
    margin-bottom: 14px;
    font-weight: 400
}

.abt p:last-of-type {
    margin-bottom: 0
}

.abt p strong {
    color: var(--navy);
    font-weight: 700
}

.abt p.inv-hl {
    padding: 14px 16px 14px 18px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, rgba(227, 1, 23, .06) 0%, rgba(7, 24, 41, .04) 100%);
    border-left: 3px solid var(--brand);
    border-radius: 0 10px 10px 0;
    color: #1a2d42
}

.abt p.inv-hl strong {
    color: var(--brand-dk)
}

.absig {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--navy);
    margin-top: auto;
    padding-top: 20px;
    margin-bottom: 0;
    border-top: 1px dashed rgba(0, 0, 0, .1)
}

.cg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

/* Invitation section — profiles fill column height, aligned with text */
.cg-inv {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    height: 100%;
    align-self: stretch;
    align-content: stretch
}

.cg-inv .cc {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .07)
}

.cg-inv .cc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .11)
}

.cg-inv .ciw {
    flex: 1 1 auto;
    width: 100%;
    min-height: 72px;
    aspect-ratio: unset
}

.cg-inv .cm {
    flex-shrink: 0;
    padding: 10px 8px 12px;
    text-align: center;
    border-top: 3px solid transparent;
    border-left: none;
    border-image: linear-gradient(90deg, var(--brand), var(--violet2)) 1
}

.cg-inv .cm h3 {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 3px
}

.cg-inv .cm p {
    font-size: 10.5px;
    line-height: 1.35
}

.cg-inv .cm span {
    display: none
}

.cg-inv .cph svg {
    width: 48px;
    height: 48px
}

.cc {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    transition: transform .4s var(--ease2), box-shadow .4s
}

.cc:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14)
}

.ciw {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--navy2), #1a4a70);
    position: relative;
    overflow: hidden
}

.ciw img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s
}

.cc:hover .ciw img {
    transform: scale(1.04)
}

.cph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--navy2), #1a3a5c)
}

.cph svg {
    width: 55px;
    height: 55px;
    stroke: rgba(255, 255, 255, .2);
    fill: none;
    stroke-width: .8
}

.cm {
    padding: 20px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--brand), var(--violet2)) 1
}

.cm h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.cm p {
    font-size: 13px;
    color: #4a5568;
    letter-spacing: .03em;
    line-height: 1.5
}

.cm span {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(227, 1, 23, .08);
    color: var(--brand);
    border: 1px solid rgba(227, 1, 23, .2)
}

/* ═══ HIGHLIGHTS ═══ */
.hls {
    background: linear-gradient(135deg, var(--navy), var(--navy2) 40%, #0c1e40);
    position: relative;
    overflow: hidden
}

.hls::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.hlg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 52px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4)
}

.hli {
    padding: 38px 28px;
    background: rgba(255, 255, 255, .02);
    position: relative;
    overflow: hidden;
    transition: background .3s;
    border-right: 1px solid rgba(255, 255, 255, .06)
}

.hli:last-child {
    border-right: none
}

.hli::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grd, linear-gradient(90deg, var(--brand), var(--violet2)));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease)
}

.hli:hover {
    background: rgba(255, 255, 255, .05)
}

.hli:hover::before {
    transform: scaleX(1)
}

.hli:nth-child(1) {
    --grd: linear-gradient(90deg, var(--brand), var(--sky))
}

.hli:nth-child(2) {
    --grd: linear-gradient(90deg, var(--violet2), var(--brand-lt))
}

.hli:nth-child(3) {
    --grd: linear-gradient(90deg, var(--gold2), var(--orange))
}

.hli:nth-child(4) {
    --grd: linear-gradient(90deg, var(--brand), var(--gold2))
}

.hlic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .3s var(--ease2)
}

.hli:hover .hlic {
    transform: scale(1.1) rotate(-5deg)
}

.hlic.rd {
    background: rgba(227, 1, 23, .15)
}

.hlic.pu {
    background: rgba(168, 85, 247, .15)
}

.hlic.am {
    background: rgba(245, 195, 48, .12)
}

.hlic.sk {
    background: rgba(14, 165, 233, .15)
}

.hlic svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round
}

.hlic.rd svg {
    stroke: var(--brand-lt)
}

.hlic.pu svg {
    stroke: var(--violet2)
}

.hlic.am svg {
    stroke: var(--gold2)
}

.hlic.sk svg {
    stroke: var(--sky)
}

.hli h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.01em
}

/* Alternate heading style when .hlg sits on white backgrounds */
.hlg.light-bg .hli {
    background: rgba(15, 30, 48, .02);
    border-right: 1px solid rgba(15, 30, 48, .08)
}

.hlg.light-bg .hli:hover {
    background: rgba(15, 30, 48, .05)
}

.hlg.light-bg .hli h4 {
    color: #0f1e30;
    background: #fff;
    border: 1px solid rgba(15, 30, 48, .12);
    border-radius: 10px;
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(15, 30, 48, .08)
}

.hlg.light-bg .hli ul li {
    color: #334155;
    border-bottom: 1px solid rgba(15, 30, 48, .08)
}

.hlg.light-bg .hli:hover ul li {
    color: #0f172a
}

.hli ul {
    list-style: none
}

.hli ul li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .72);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    transition: color .2s
}

.hli:hover ul li {
    color: rgba(255, 255, 255, .95)
}

.hli ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    margin-top: 6px
}

.hli ul li:has(> ul.sub-nested) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0
}

.hli ul.sub-nested {
    list-style: none;
    margin: 5px 0 2px 16px;
    padding: 0;
    width: 100%
}

.hli ul.sub-nested li {
    padding: 3px 0;
    border-bottom: none;
    gap: 6px
}

.hli ul.sub-nested li::before {
    display: none
}

/* ═══ BANNER STRIP ═══ */
.bstrip {
    background: linear-gradient(90deg, var(--brand-dk), var(--brand) 30%, var(--violet) 70%, var(--navy3));
    padding: 0;
    overflow: hidden
}

.bsi2 {
    display: flex;
    animation: bss 22s linear infinite;
    width: max-content
}

.bsi2:hover {
    animation-play-state: paused
}

@keyframes bss {
    to {
        transform: translateX(-50%)
    }
}

.bsit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.bsit::before {
    content: '✦';
    font-size: 9px;
    color: var(--gold3)
}

.bsit strong {
    color: #fff
}

/* ═══ REGISTRATION ═══ */
.rgs {
    background: var(--white);
    position: relative;
    overflow: hidden
}

.rgs::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 1, 23, .04), transparent 70%);
    pointer-events: none
}

.rgg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 52px;
    align-items: start
}

.tlw {
    position: relative;
    padding-left: 10px
}

.tli:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 46px;
    bottom: -36px;
    width: 2px;
    background: linear-gradient(180deg, var(--brand), var(--violet2), var(--gold2));
    border-radius: 1px
}


.tli {
    display: flex;
    gap: 22px;
    margin-bottom: 36px;
    position: relative;
    transition: transform .3s
}

.tli:hover {
    transform: translateX(4px)
}

.tld {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--brand), 0 4px 16px rgba(227, 1, 23, .25);
    transition: transform .3s var(--ease2), box-shadow .3s
}

.tli:hover .tld {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px var(--brand), 0 8px 24px rgba(227, 1, 23, .35)
}

.tld svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold2);
    fill: none;
    stroke-width: 1.8
}

.tlb h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px
}

.tlb p {
    font-size: 14px;
    color: #3d5068;
    line-height: 1.6
}

.tltg {
    display: inline-block;
    margin-top: 8px;
    background: rgba(227, 1, 23, .08);
    border: 1px solid rgba(227, 1, 23, .22);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 100px;
    letter-spacing: .05em
}

.rbox {
    background: linear-gradient(145deg, var(--navy), var(--navy3) 55%, #200025);
    border-radius: 24px;
    padding: 44px 38px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(7, 24, 41, .35)
}

.rbox::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(227, 1, 23, .2);
    filter: blur(50px);
    pointer-events: none
}

.rbox::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .15);
    filter: blur(40px);
    pointer-events: none
}

.rbt {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.rbox p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.75;
    margin-bottom: 28px;
    position: relative;
    z-index: 1
}

.rls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1
}

.rl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    color: rgba(255, 255, 255, .95);
    font-size: 13.5px;
    font-weight: 500;
    transition: all .25s
}

.rl:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .35);
    transform: translateX(4px);
    color: #fff
}

.rl svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold2);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform .2s
}

.rl:hover svg {
    transform: translateY(2px)
}

/* ═══ VENUE ═══ */
.vs {
    background: linear-gradient(150deg, #f0eee8, #f8eaea 50%, #ede8f5);
    position: relative;
    overflow: hidden
}

.vg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 52px;
    align-items: center
}

.viw {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
    transition: transform .4s var(--ease2)
}

.viw:hover {
    transform: translateY(-6px)
}

.vii {
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, var(--navy2), #1a4060);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden
}

.vii img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsh {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .06), transparent);
    animation: shi 3s ease-in-out infinite
}

@keyframes shi {

    0%,
    100% {
        transform: translateX(-100%)
    }

    50% {
        transform: translateX(100%)
    }
}

.vbd {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 3
}

.vb {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2)
}

.vb.rd {
    background: rgba(227, 1, 23, .3);
    color: #ffaaaa
}

.vb.gd {
    background: rgba(201, 146, 10, .3);
    color: var(--gold3)
}

.vn {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.15
}

.va {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px
}

.vfs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.vf {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: transform .3s, box-shadow .3s
}

.vf:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08)
}

.vfi {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.vfi svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round
}

.vf p {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px
}

.vf span {
    font-size: 12px;
    color: #4a5568
}

/* ═══ GALLERY ═══ */
.gs {
    background: var(--white)
}

.gg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px
}

.gi {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.gi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease)
}

.gph {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--navy2), #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center
}

.gph svg {
    width: 40px;
    height: 40px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: .8
}

.gov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 24, 41, .85));
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 20px
}

.gov p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(8px);
    transition: transform .4s var(--ease)
}

.gi:hover img {
    transform: scale(1.07)
}

.gi:hover .gov {
    opacity: 1
}

.gi:hover .gov p {
    transform: translateY(0)
}

.gi::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color .3s
}

.gi:hover::after {
    border-color: rgba(227, 1, 23, .35)
}

/* ═══ CONTACT SECTION — Full redesign ═══ */
.cs {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    padding: 0;
}

/* Top accent bar */
.cs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold2), var(--violet2), var(--brand));
    background-size: 300%;
    animation: shimmer 4s linear infinite;
    z-index: 2;
}

.cs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

/* Left panel */
.cs-left {
    padding: 80px 60px;
    background: linear-gradient(145deg, var(--brand-dk) 0%, var(--brand) 50%, #c40030 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
}

.cs-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .12);
    pointer-events: none;
}

/* ECG line decoration on left panel */
.cs-ecg {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    opacity: .15;
}

.cs-eyecatch {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cs-heart {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: heartbeat 1.4s ease-in-out infinite;
}

.cs-heart svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

.cs-eyecatch-text {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600
}

.cst {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.css {
    font-size: 16px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    max-width: 400px;
    font-weight: 400;
}

.cs-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.csb {
    background: #fff;
    color: var(--brand);
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .3s var(--ease2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.csb:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .3);
    color: var(--brand-dk)
}

.csb svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: transform .2s
}

.csb:hover svg {
    transform: translateX(3px)
}

.csb2 {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, .3);
    transition: all .3s;
}

.csb2:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px)
}

/* Right panel — contact cards */
.cs-right {
    padding: 60px 56px;
    background: var(--navy2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.cs-right-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-right-title::before {
    content: '';
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand), var(--gold2));
    flex-shrink: 0;
}

.cs-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    margin-bottom: 14px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.cs-card:last-child {
    margin-bottom: 0
}

.cs-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--cl, var(--brand));
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform .3s var(--ease);
}

.cs-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    transform: translateX(4px)
}

.cs-card:hover::before {
    transform: scaleY(1)
}

.cs-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease2);
}

.cs-card:hover .cs-icon {
    transform: scale(1.1) rotate(-5deg)
}

.cs-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round
}

.cs-card-body {}

.cs-card-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px
}

.cs-card-value {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    line-height: 1.5
}

.cs-card-value a {
    color: #fff;
    transition: color .2s
}

.cs-card-value a:hover {
    color: var(--brand-lt)
}

.cs-phone-sep {
    color: rgba(255, 255, 255, .45);
    margin: 0 .4em;
    font-weight: 400;
    font-size: .9em
}

.contact-form-modern {
    background: #fff;
    border: 1px solid rgba(15, 30, 48, .1);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 14px 36px rgba(15, 30, 48, .08)
}

.cf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 12px
}

.cf-full {
    margin-bottom: 14px
}

.cf-field label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    letter-spacing: .06em;
    text-transform: uppercase
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    border: 1px solid rgba(15, 30, 48, .16);
    border-radius: 10px;
    padding: 12px 13px;
    font: inherit;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: border-color .2s, box-shadow .2s
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: 0;
    border-color: rgba(227, 1, 23, .45);
    box-shadow: 0 0 0 3px rgba(227, 1, 23, .12)
}

.cf-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.cf-btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--violet2));
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 12px 26px rgba(227, 1, 23, .25)
}

.cf-btn:hover {
    transform: translateY(-2px)
}

.cf-btn:disabled {
    opacity: .7;
    cursor: not-allowed
}

.cf-status {
    margin: 0;
    font-size: 13px;
    color: #475569
}

.cf-status.ok {
    color: #166534
}

.cf-status.err {
    color: #b91c1c
}

.cf-hp {
    position: absolute;
    left: -99999px;
    opacity: 0
}

/* ═══ FOOTER ═══ */
footer {
    position: relative;
    z-index: 5;
    background: var(--navy);
    color: rgba(255, 255, 255, .82)
}

.fi {
    padding: 70px 5% 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px
}

.fbl {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.fbl .fdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--violet2))
}

.fb p {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 280px;
    color: rgba(255, 255, 255, .82)
}

.fci {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    margin-bottom: 12px;
    align-items: flex-start;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85)
}

.fci svg {
    width: 15px;
    height: 15px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
    margin-top: 2px
}

.fci a {
    color: rgba(255, 255, 255, .85);
    transition: color .2s
}

.fci a:hover {
    color: var(--brand-lt)
}

.fc h4 {
    font-size: 12px;
    color: #fff;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.fc ul {
    list-style: none
}

.fc ul li {
    margin-bottom: 10px
}

.fc ul li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .8);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px
}

.fc ul li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    opacity: .7;
    transition: opacity .2s
}

.fc ul li a:hover {
    color: #fff;
    padding-left: 4px
}

.fc ul li a:hover::before {
    opacity: 1
}

.fbt {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75)
}

.fbt a {
    color: var(--brand-lt)
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: .7;
    filter: brightness(0) invert(1);
    transition: opacity .2s
}

.footer-logo:hover {
    opacity: 1
}

/* ═══ BACK TO TOP ═══ */
#btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: all .35s var(--ease2);
    box-shadow: 0 6px 24px rgba(227, 1, 23, .4)
}

#btt.sh {
    opacity: 1;
    transform: translateY(0)
}

#btt:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(227, 1, 23, .5)
}

#btt svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round
}

/* ═══ MOBILE NAV ═══ */
#mn {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease)
}

#mn.open {
    opacity: 1;
    visibility: visible
}

#mn a {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: rgba(255, 255, 255, .75);
    padding: 12px 32px;
    transition: color .2s
}

#mn a:hover {
    color: var(--brand-lt)
}

.mc {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer
}

.mc svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px) {
    nav {
        --nav-h: 76px;
        --brand-logo-h: 50px;
        --brand-theme-h: 52px;
        --brand-theme-max-w: 200px
    }

    .brand {
        max-width: min(48%, 400px)
    }

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

    .fi {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

}

@media(max-width:900px) {

    .abg,
    .rgg,
    .vg {
        grid-template-columns: 1fr
    }

    .cg {
        grid-template-columns: 1fr 1fr
    }

    .cg-inv {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
        height: auto
    }

    .cg-inv .ciw {
        min-height: 100px
    }

    .cg-inv .cm h3 {
        font-size: 14px
    }

    .cg-inv .cm p {
        font-size: 11px
    }

    .abt {
        height: auto
    }

    .hc {
        grid-template-columns: 1fr
    }

    .hr {
        display: none
    }

    .hero-monument,
    .hmon-nav {
        display: none
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(115deg,
                rgba(7, 24, 41, .85) 0%,
                rgba(7, 24, 41, .7) 100%)
    }

    .sld::before {
        background: linear-gradient(115deg,
                rgba(7, 24, 41, .88) 0%,
                rgba(7, 24, 41, .65) 100%)
    }

    .hst {
        justify-content: flex-start
    }

    .cs-inner {
        grid-template-columns: 1fr
    }

    .cs-left {
        padding: 60px 5%
    }

    .cs-right {
        padding: 48px 5%
    }
}

@media(max-width:768px) {
    nav {
        --nav-h: 72px;
        --brand-logo-h: 44px;
        --brand-theme-h: 46px;
        --brand-theme-max-w: min(180px, 42vw)
    }

    .topbar {
        display: none
    }

    .nw {
        padding: 0 4%
    }

    .brand {
        max-width: calc(100% - 52px);
        gap: 10px
    }

    .nl {
        display: none
    }

    .hbg {
        display: flex
    }

    .sec {
        padding: 64px 5%
    }

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

    .cg {
        grid-template-columns: 1fr 1fr
    }

    .cdu {
        gap: 4px
    }

    .cdbox {
        font-size: 26px;
        padding: 8px 10px;
        min-width: 52px
    }
}

@media(max-width:480px) {
    nav {
        --nav-h: 64px;
        --brand-logo-h: 38px;
        --brand-theme-h: 40px;
        --brand-theme-max-w: min(140px, 48vw)
    }

    .brand {
        gap: 8px
    }

    .gg {
        grid-template-columns: 1fr
    }

    .cg {
        grid-template-columns: 1fr
    }

    .cg-inv {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .vfs {
        grid-template-columns: 1fr
    }

    .cs-left {
        padding: 48px 6%
    }

    .cs-right {
        padding: 40px 6%
    }

    .cf-grid {
        grid-template-columns: 1fr
    }
}

/* ═══ Page banner + breadcrumb (committee pages) ═══ */
.page-committee,
.page-inner {
    padding-top: 0
}

.page-banner {
    position: relative;
    z-index: 2;
    margin: 0 -5% 40px;
    padding: 28px 5% 36px;
    background:
        linear-gradient(135deg, rgba(227, 1, 23, .08) 0%, rgba(7, 24, 41, .04) 45%, rgba(124, 58, 237, .06) 100%),
        linear-gradient(180deg, #f8f5f0 0%, #fff 100%);
    border-bottom: 1px solid rgba(15, 30, 48, .08);
    overflow: hidden
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 1, 23, .12) 0%, transparent 70%);
    pointer-events: none
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--gold2), var(--violet2));
    opacity: .85
}

.pgcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    width: fit-content;
    /* shrinks wrapper to text width */
}

.pgcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    list-style: none;
    margin: 0;
    padding: 3px 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
    border-radius: 25px;

}

.pgcrumb a {
    color: var(--brand-dk);
    transition: color .2s;
}

.pgcrumb a:hover {
    color: var(--brand);
}

.pgcrumb [aria-current="page"] {
    color: var(--navy);
    font-weight: 700;
}

.pgcrumb-sep {
    color: rgba(15, 30, 48, .25);
    user-select: none;
}

.page-banner-body {
    position: relative;
    z-index: 1;
    max-width: 720px
}

.page-banner-body .stit {
    margin-bottom: 12px
}

.page-banner-body .sdesc {
    margin-bottom: 0
}

/* Committee & faculty member tables (data from legacy site) */
.page-table-block {
    position: relative;
    z-index: 2;
    margin-top: 0
}

.page-committee .page-table-block,
.page-inner .page-table-block {
    margin-top: 8px
}

.page-inner.faculty-table-sec .page-table-block:first-of-type {
    margin-top: 8px
}

/* Tables always visible (avoid hidden by scroll-reveal on long pages) */
.page-table-block--visible,
.page-inner .page-table-block {
    opacity: 1;
    transform: none;
    visibility: visible
}

.faculty-table-sec.page-inner {
    overflow: visible
}

.faculty-table-sec .page-table-block {
    margin-bottom: 40px
}

.faculty-table-sec .page-table-block:last-child {
    margin-bottom: 0
}

.data-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(15, 30, 48, .08);
    box-shadow: 0 12px 40px rgba(15, 30, 48, .06);
    background: #fff
}

.data-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.data-table thead th {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--navy);
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid rgba(227, 1, 23, .15);
    white-space: nowrap
}

.data-table tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(15, 30, 48, .06);
    vertical-align: top;
    color: #334155
}

.data-table tbody tr:nth-child(even) td {
    background: rgba(248, 250, 252, .65)
}

.data-table tbody tr:hover td {
    background: rgba(227, 1, 23, .04)
}

.data-table tbody td p {
    margin: 0;
    font-size: inherit
}

.faculty-table-sec .data-table {
    font-size: 13px
}

.faculty-table-note {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 14px;
    max-width: 720px
}

.page-tbd-wrap {
    border: none;
    background:
        linear-gradient(135deg, rgba(227, 1, 23, .04) 0%, rgba(255, 255, 255, 1) 38%, rgba(124, 58, 237, .04) 100%);
    min-height: 320px
}

.page-tbd-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px 52px;
    max-width: 640px;
    margin: 0 auto
}

.page-tbd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 1, 23, .12), rgba(124, 58, 237, .1));
    color: var(--brand);
    box-shadow: 0 10px 28px rgba(227, 1, 23, .12)
}

.page-tbd-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.page-tbd-panel .stag {
    margin-bottom: 10px
}

.page-tbd-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 4px
}

.page-tbd-panel .dl {
    margin: 16px auto 24px
}

.page-tbd-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 520px
}

.page-tbd-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 420px;
    display: grid;
    gap: 10px
}

.page-tbd-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(15, 30, 48, .08);
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 4px 16px rgba(15, 30, 48, .04)
}

.page-tbd-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-align: left
}

.page-tbd-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(227, 1, 23, .08);
    border: 1px solid rgba(227, 1, 23, .16);
    padding: 5px 10px;
    border-radius: 999px
}

@media (max-width: 640px) {
    .page-tbd-panel {
        padding: 36px 20px 40px
    }

    .page-tbd-list li {
        padding: 12px 14px
    }
}

/* ═══ Dr. Rakesh Yadav — signature hover (site-wide) ═══ */
.profile-rakesh-name {
    display: inline-block;
    transition: transform .35s var(--ease2), color .35s, text-shadow .35s
}

.cc.profile-rakesh,
.cg-inv .cc.profile-rakesh {
    position: relative;
    z-index: 0;
    transition: transform .45s var(--ease2), box-shadow .45s
}

.cc.profile-rakesh::before,
.cs-card.profile-rakesh::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand), var(--gold2), var(--violet2), var(--brand));
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity .45s;
    animation: rakesh-border-idle 6s ease infinite;
    pointer-events: none
}

@keyframes rakesh-border-idle {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.cc.profile-rakesh:hover::before,
.cs-card.profile-rakesh:hover::before {
    opacity: 1
}

.cc.profile-rakesh:hover,
.cg-inv .cc.profile-rakesh:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 48px rgba(227, 1, 23, .28), 0 0 24px rgba(245, 195, 48, .15)
}

.cs-card.profile-rakesh {
    position: relative;
    z-index: 0;
    transition: transform .45s var(--ease2), box-shadow .45s
}

.cs-card.profile-rakesh:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(227, 1, 23, .22), 0 0 20px rgba(245, 195, 48, .12)
}

.cc.profile-rakesh .ciw {
    position: relative;
    overflow: hidden
}

.cc.profile-rakesh .ciw::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, .4) 50%,
            transparent 65%);
    transform: translateX(-120%);
    transition: transform .7s var(--ease);
    pointer-events: none;
    z-index: 2
}

.cc.profile-rakesh:hover .ciw::after {
    transform: translateX(120%)
}

.cc.profile-rakesh .ciw img {
    transition: transform .5s var(--ease2), filter .5s
}

.cc.profile-rakesh:hover .ciw img {
    transform: scale(1.07);
    filter: brightness(1.1) saturate(1.12) drop-shadow(0 4px 12px rgba(227, 1, 23, .25))
}

.cc.profile-rakesh:hover .profile-rakesh-name,
.cs-card.profile-rakesh:hover .profile-rakesh-name {
    background: linear-gradient(90deg, var(--brand), var(--gold2), var(--brand));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.04);
    animation: rakesh-text-shine 2s linear infinite
}

@keyframes rakesh-text-shine {
    to {
        background-position: 200% center
    }
}

.cc.profile-rakesh .cm p {
    transition: color .3s, letter-spacing .3s
}

.cc.profile-rakesh:hover .cm p {
    color: var(--brand-dk);
    letter-spacing: .06em
}

.data-table tbody tr.profile-rakesh td {
    transition: background .35s, color .35s, box-shadow .35s
}

.data-table tbody tr.profile-rakesh:hover td {
    background: linear-gradient(90deg, rgba(227, 1, 23, .1) 0%, rgba(245, 195, 48, .08) 50%, rgba(227, 1, 23, .06) 100%);
    box-shadow: inset 3px 0 0 var(--brand)
}

.data-table tbody tr.profile-rakesh:hover .profile-rakesh-name {
    color: var(--brand-dk);
    font-weight: 700;
    transform: scale(1.03);
    text-shadow: 0 0 20px rgba(227, 1, 23, .2)
}

.data-table tbody tr.profile-rakesh:hover td p {
    color: var(--brand-dk)
}

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

    .cc.profile-rakesh::before,
    .cs-card.profile-rakesh::before {
        animation: none
    }

    .cc.profile-rakesh:hover .profile-rakesh-name,
    .cs-card.profile-rakesh:hover .profile-rakesh-name {
        animation: none
    }
}