:root {
    --navy: #0d6efd;
    --navy-dark: #ffffff;
    --navy-mid: #0d6efd;
    --navy-light: #0d6efd;
    --gold: #C8A44A;
    --gold-light: #E8C96E;
    --gold-pale: #ffffff;
    --white: #FFFFFF;
    --text: #000000;
    --muted: #5A6C80;
    --border: #ffffff;
    --surface: #ffffff;
    --shadow-sm: 0 2px 12px rgba(11, 29, 58, .08);
    --shadow-md: 0 6px 32px rgba(11, 29, 58, .13);
    --shadow-lg: 0 16px 56px rgba(11, 29, 58, .18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: #fff;
    scroll-behavior: smooth;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
}

.page.active {
    display: block;
    animation: pageIn .45s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── IEEE LOGO BAR ── */
.ieee-bar {
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(200, 164, 74, .25);
    padding: 10px 0;
}

.ieee-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.ieee-logo-item:last-child {
    border-right: none;
}

.ieee-bar img {
    /* filter: brightness(0) invert(1) !important; */
    opacity: .9;
}

/* ---HEADER */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* ── MAIN NAV ── */
.main-nav {
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(7, 19, 38, .4);
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--gold);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 0;
}

.nav-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity .2s;
}

.nav-brand:hover img {
    opacity: .82;
}

.nav-brand-globe {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle at 35% 38%, #4fc3f7, #0057A8, #002f6c);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.nav-brand-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .01em;
}

.nav-brand-text span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: .68rem;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 2px;
}

.navlink {
    color: rgba(255, 255, 255, .82) !important;
    font-size: .78rem;
    font-weight: 500;
    padding: 20px 10px !important;
    letter-spacing: .02em;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.navlink:hover,
.navlink.active {
    color: var(--gold-light) !important;
    border-bottom-color: var(--gold);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .3);
}

/* ── HERO ── */
.hero-carousel-wrap {
    position: relative;
}

.carousel-slide {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.carousel-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(7, 19, 38, .78) 0%,
            rgba(11, 29, 58, .68) 55%,
            rgba(7, 19, 38, .84) 100%);
}

.slide-1 .carousel-bg {
    background:
        linear-gradient(160deg, rgba(7, 19, 38, .82), rgba(22, 52, 96, .7)),
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(200, 164, 74, .03) 80px, rgba(200, 164, 74, .03) 81px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(200, 164, 74, .03) 80px, rgba(200, 164, 74, .03) 81px),
        linear-gradient(160deg, #071326 0%, #163460 40%, #0B1D3A 70%, #071326 100%);
}

.slide-2 .carousel-bg {
    background: linear-gradient(135deg, rgba(7, 19, 38, .82), rgba(30, 74, 140, .6)),
        linear-gradient(200deg, #071326 0%, #0d2852 50%, #071326 100%);
}

.slide-3 .carousel-bg {
    background: linear-gradient(135deg, rgba(7, 19, 38, .8), rgba(22, 52, 96, .65)),
        linear-gradient(170deg, #071326 0%, #163460 50%, #0B1D3A 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 48px 20px;
    /* max-width: 820px; */
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 74, .15);
    border: 1px solid rgba(200, 164, 74, .35);
    color: var(--gold-light);
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero-conf-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
    letter-spacing: -.01em;
}

.hero-theme {
    font-size: clamp(1.8rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, .78);
    margin-bottom: 36px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.organiser-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.org-chip {
    background: rgba(255, 255, 255, .96);
    border-radius: var(--radius);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.org-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.org-text {
    text-align: left;
}

.org-text strong {
    display: block;
    font-size: .82rem;
    color: var(--navy);
    font-weight: 700;
}

.org-text span {
    font-size: .7rem;
    color: var(--muted);
}

.sponsor-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.sponsor-label {
    color: rgba(255, 255, 255, .7);
    font-size: .83rem;
    font-weight: 500;
}

.sponsor-chip {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius);
    padding: 5px 14px;
    font-size: .74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.btn-cfp {
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 14px 40px;
    border-radius: 4px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(200, 164, 74, .35);
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.btn-cfp:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 164, 74, .45);
}

.ieee-conf-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    z-index: 6;
    text-align: center;
}

.ieee-conf-badge div:first-child {
    font-weight: 700;
    font-size: .55rem;
    color: var(--navy);
    letter-spacing: .5px;
}

.ieee-conf-badge .conf-no {
    font-size: .65rem;
    font-weight: 700;
    color: var(--navy);
}

/* Carousel controls */
.c-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(6px);
}

.c-ctrl:hover {
    background: rgba(200, 164, 74, .3);
    border-color: var(--gold);
}

.c-ctrl.prev {
    left: 18px;
}

.c-ctrl.next {
    right: 18px;
}

.c-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.c-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: all .25s;
}

.c-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

/* ── QUICK INFO BAR ── */
.quick-bar {
    background: var(--navy-dark);
    color: #000000;
    padding: 12px 0;
    border-top: 1px solid rgba(200, 164, 74, .2);
}

.quick-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    padding: 4px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    font-family: 'Outfit', sans-serif;
}

.quick-bar-item:last-child {
    border-right: none;
}

.quick-bar-item i {
    color: var(--gold);
    font-size: .85rem;
}

/* ── SECTION ── */
.section-pad {
    padding: 80px 0;
}

.sec-head {
    text-align: center;
    margin-bottom: 52px;
}

.sec-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
}

.sec-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 18px;
}

.sec-desc {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: .95rem;
}

.bg-blue-pale {
    background: var(--surface);
}

.bg-blue {
    background: var(--navy);
}

/* ── CARDS ── */
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 164, 74, .3);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card .card-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: .64rem;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.info-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: .97rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-card p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* ── TIMELINE ── */
.tl-wrap {
    position: relative;
    padding: 10px 0 0;
}

.tl-bar {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
    z-index: 0;
}

.tl-item {
    position: relative;
    text-align: center;
    flex: 1;
}

.tl-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--navy);
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.tl-item.passed .tl-dot {
    background: var(--gold);
    box-shadow: 0 0 0 2px var(--gold);
}

.tl-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 600;
    color: var(--navy);
}

.tl-label {
    font-size: .74rem;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.35;
}

/* ── SPEAKER ── */
.speaker-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.spk-avatar {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #fff;
    position: relative;
}

.spk-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, .25), transparent);
}

.spk-body {
    padding: 20px 18px;
}

.spk-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 700;
}

.spk-inst {
    font-size: .75rem;
    color: var(--muted);
}

.spk-topic {
    font-size: .75rem;
    color: var(--navy-light);
    font-weight: 600;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    line-height: 1.45;
}

/* ── TABLE ── */
.sched-table th {
    background: var(--navy);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 16px;
}

.sched-table td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: .85rem;
}

.sched-table tbody tr:nth-child(even) {
    background: var(--surface);
}

.sched-table tbody tr:hover {
    background: #EBF1FB;
}

.badge-kn {
    background: #dbeafe;
    color: #1e3a8a;
    font-size: .66rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.badge-tc {
    background: #dcfce7;
    color: #14532d;
    font-size: .66rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.badge-br {
    background: #fef9c3;
    color: #713f12;
    font-size: .66rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.badge-sp {
    background: #f3e8ff;
    color: #581c87;
    font-size: .66rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* ── FEE ── */
.fee-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fee-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 74, .12);
}

.fee-head {
    padding: 24px 16px;
    background: var(--navy);
}

.fee-card.featured .fee-head {
    background: var(--navy-dark);
}

.fee-head .fee-cat {
    font-size: .67rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.fee-head .fee-amt {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: #fff;
    margin: 8px 0 3px;
}

.fee-card.featured .fee-head .fee-amt {
    color: var(--gold-light);
}

.fee-head .fee-note {
    font-size: .74rem;
    color: rgba(255, 255, 255, .55);
}

.fee-body {
    padding: 22px 18px;
}

.fee-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .84rem;
    margin-bottom: 11px;
}

.fee-feat i {
    color: var(--navy-light);
    width: 16px;
}

/* ── COMMITTEE ── */
.cmte-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    transition: box-shadow .2s, border-color .2s;
}

.cmte-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(200, 164, 74, .3);
}

.cmte-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cmte-name {
    font-weight: 600;
    color: var(--navy);
    font-size: .87rem;
}

.cmte-role {
    font-size: .73rem;
    color: var(--muted);
    margin-top: 1px;
}

.cmte-inst {
    font-size: .72rem;
    color: var(--navy-light);
    font-weight: 600;
    margin-top: 1px;
}

/* ── TRACK ── */
.track-card {
    border-left: 3px solid var(--navy);
    background: #fff;
    padding: 18px 22px;
    border-radius: 0 var(--radius) var(--radius) 0;
    border: 1px solid var(--border);
    border-left-width: 3px;
    margin-bottom: 12px;
    transition: box-shadow .2s, border-color .2s;
}

.track-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(200, 164, 74, .35);
}

.track-no {
    font-family: 'JetBrains Mono', monospace;
    font-size: .63rem;
    color: var(--gold);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.track-name {
    font-weight: 700;
    color: var(--navy);
    margin: 4px 0 6px;
    font-size: .9rem;
    font-family: 'Playfair Display', serif;
}

.track-desc {
    font-size: .81rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── VENUE ── */
.venue-feat {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.venue-icon {
    width: 46px;
    height: 46px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── SPECIAL SESSION ── */
.ss-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 24px;
    margin-bottom: 0;
    transition: transform .25s, box-shadow .25s;
}

.ss-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ss-id {
    background: var(--navy);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: .63rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: .06em;
}

/* ── PAGE HEADER ── */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    padding: 64px 0 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent, transparent 40px,
            rgba(200, 164, 74, .03) 40px, rgba(200, 164, 74, .03) 41px);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.page-header .ph-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: .63rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 900;
    position: relative;
}

/* ── FOOTER ── */
footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.68);
    padding: 60px 0 0;
    border-top: 3px solid var(--gold);
}

footer h6 {
    color: var(--gold-light);
    font-family: 'JetBrains Mono', monospace;
    font-size: .63rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: .84rem;
    display: block;
    margin-bottom: 8px;
    transition: color .2s;
}

footer a:hover {
    color: var(--gold-light);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 10px;
}

.f-badge {
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: .08em;
}

.footer-bottom {
    margin-top: 48px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .76rem;
    color: rgba(255, 255, 255, .32);
}

/* ── STAT BOX ── */
.stat-box {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid rgba(200, 164, 74, .2);
    border-radius: var(--radius);
    transition: background .2s, transform .2s;
}

.stat-box:hover {
    background: rgba(200, 164, 74, .06);
    transform: translateY(-3px);
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-lbl {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px;
    font-family: 'JetBrains Mono', monospace;
}

/* ── UTIL ── */
.btn-blue {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .84rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.btn-blue:hover {
    background: var(--navy-light);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .84rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.btn-outline-blue:hover {
    background: var(--navy);
    color: #fff;
}

.divider-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

/* ───────────── COLLEGE CARD ───────────── */

.college-card {
    background: #ffffff;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.08);
    transition: all 0.35s ease;
}

.college-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.12) !important;
}

.college-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(13, 110, 253, 0.06),
            transparent 30%);
    pointer-events: none;
}

.college-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 110, 253, 0.08);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.college-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 10px;
}

.title-line {
    width: 80px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--navy), #4da3ff);
}

.college-text {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--muted);
    text-align: justify;
    margin-bottom: 18px;
}

.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: #f8fbff;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    background: #eef5ff;
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), #4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.feature-box h6 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.feature-box p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Right Side */

.college-image-wrap {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

.college-logo-box {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
}

.college-image-box {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.college-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.college-image:hover {
    transform: scale(1.06);
}


@media(max-width:768px) {
    .quick-bar-item {
        border-right: none;
        padding: 4px 10px;
    }

    .carousel-slide {
        height: auto;
        min-height: auto;
        padding: 60px 0 80px;
    }

    .ieee-conf-badge {
        display: none;
    }

    .tl-bar {
        display: none;
    }

    .page-header h1 {
        font-size: 1.65rem;
    }

    .college-image-wrap {
        padding: 25px;
    }

    .college-title {
        font-size: 2rem;
    }

    .college-text {
        font-size: 0.95rem;
    }
}