:root {
    /* --navy: #0A1628; */
    --navy: #001c54;
    --navy-mid: #102040;
    --royal: #1A3A6B;
    --gold: #E8B84B;
    --gold-light: #E8B84B;
    --gold-pale: #FBF3E0;
    --sky: #2D7DD2;
    --sky-light: #EBF4FF;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --text-dark: #1A1A2E;
    --text-mid: #3D4A5C;
    --text-light: #6C7A8D;
    --border: #DDE4EE;
    --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 6px 30px rgba(10, 22, 40, 0.14);
    --shadow-lg: 0 12px 60px rgba(10, 22, 40, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px
}

/* ══════════════════ NAVBAR ══════════════════ */
#mainNav {
    background: #001c54;
    transition: all .4s ease;
    padding: 10px 0;
    z-index: 1000;
}

#mainNav.scrolled {
    background: var(--navy) !important;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    font-weight: 800;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.brand-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .5px
}

.brand-sub {
    font-size: .65rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: .3px
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-weight: 500;
    font-size: .82rem;
    padding: 8px 14px !important;
    letter-spacing: .3px;
    transition: color .2s;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-light) !important
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--gold-light) !important
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 6px 10px
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

/* MOBILE OFFCANVAS DRAWER */
.offcanvas {
    background: var(--navy);
    width: 300px !important;
}

.offcanvas-header {
    background: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.offcanvas-title {
    color: var(--white);
    font-weight: 700
}

.btn-close-white {
    filter: invert(1)
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-size: .9rem;
    font-weight: 500;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas .nav-link:hover {
    background: rgba(200, 151, 42, .1);
    color: var(--gold-light) !important;
}

.offcanvas .nav-link i {
    width: 18px;
    color: var(--gold)
}

/* ══════════════════ HERO ══════════════════ */
#hero {
    min-height: 80vh;
    background: url('../images/banner.jpeg') center/cover no-repeat;
    /* background: linear-gradient(135deg, rgba(10, 22, 40, .96) 0%, rgba(26, 58, 107, .9) 60%, rgba(45, 125, 210, .85) 100%),
        url('../images/banner.jpeg') center/cover no-repeat; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200, 151, 42, .12) 0%, transparent 60%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 151, 42, .15);
    border: 1px solid rgba(200, 151, 42, .4);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.hero-title .accent {
    color: var(--gold-light)
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.hero-venue {
    font-size: .9rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: .9rem;
    letter-spacing: .3px;
    border: none;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 151, 42, .4);
    color: var(--navy)
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: .9rem;
    letter-spacing: .3px;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
    transform: translateY(-2px)
}

/* COUNTDOWN */
.countdown-wrap {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: inline-block;
}

.countdown-label {
    font-size: .7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.countdown-boxes {
    display: flex;
    gap: 16px
}

.countdown-box {
    text-align: center;
    min-width: 72px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 14px 8px;
}

.countdown-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
}

.countdown-unit {
    font-size: .62rem;
    text-transform: uppercase;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ══════════════════ STATS BAR ══════════════════ */
.stats-bar {
    background: var(--navy);
    padding: 32px 0;
    border-bottom: 3px solid var(--gold);
}

.stat-item {
    text-align: center
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .15);
    align-self: stretch;
    margin: 0 8px;
}

/* ══════════════════ SECTIONS COMMON ══════════════════ */
.section-pad {
    padding: 90px 0
}

.section-pad-sm {
    padding: 60px 0
}

.section-label {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .gold {
    color: var(--gold)
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 640px;
}

.divider-gold {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    /* margin: 15px 0 25px; */
    margin: auto;
}

/* ══════════════════ ABOUT ══════════════════ */
#about {
    background: var(--white)
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px
}

.about-img-badge {
    /* position: absolute; */
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

.about-img-badge .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1
}

.about-img-badge .txt {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .7)
}

.about-accent-box {
    background: var(--sky-light);
    border-left: 4px solid var(--sky);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin: 24px 0;
}

.accred-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px
}

.accred-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-mid);
}

.accred-chip i {
    color: var(--gold);
    font-size: .8rem
}

/* ══════════════════ TABS ══════════════════ */
#about-tabs {
    background: var(--off-white)
}

.custom-tabs .nav-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-mid);
    padding: 12px 24px;
    border-radius: 50px !important;
    border: 1px solid #001c54;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: all .25s;
}

.custom-tabs .nav-link.active {
    background: var(--navy) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

.custom-tabs .nav-link:hover:not(.active) {
    background: var(--border);
    color: var(--navy)
}

.tab-content-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

/* ══════════════════ TRACKS (ACCORDION) ══════════════════ */
#tracks {
    background: var(--white)
}

.track-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.track-accordion .accordion-button {
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
    background: var(--off-white);
    padding: 20px 24px;
    box-shadow: none !important;
}

.track-accordion .accordion-button:not(.collapsed) {
    background: var(--navy);
    color: var(--white);
}

.track-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(1)
}

.track-accordion .accordion-button .track-num {
    /* width: 34px; */
    height: 34px;
    padding: 10px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.track-accordion .accordion-button:not(.collapsed) .track-num {
    background: rgba(200, 151, 42, .3);
    color: var(--gold-light);
}

.track-accordion .accordion-body {
    padding: 24px
}

.track-accordion .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.track-accordion .accordion-body li {
    padding: 8px 0;
    font-size: .9rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px dashed var(--border);
}

.track-accordion .accordion-body li:last-child {
    border-bottom: none
}

.track-accordion .accordion-body li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: .85rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ══════════════════ DATES (CARDS) ══════════════════ */
#dates {
    background: var(--navy);
    position: relative;
    overflow: hidden
}

#dates::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 151, 42, .1), transparent 70%);
}

#dates .section-title {
    color: var(--white)
}

.date-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.date-card:hover {
    background: rgba(200, 151, 42, .12);
    border-color: rgba(200, 151, 42, .4);
    transform: translateY(-4px);
}

.date-card .icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy);
    margin: 0 auto 16px;
}

.date-card .date-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.date-card .date-lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ══════════════════ SPEAKERS ══════════════════ */
#speakers {
    background: var(--white)
}

.speaker-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s;
    border: 1px solid var(--border);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.speaker-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy-mid), var(--royal));
}

.speaker-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.speaker-card:hover .speaker-img-wrap img {
    transform: scale(1.05)
}

.speaker-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 22, 40, .8));
    padding: 16px;
}

.speaker-country {
    font-size: .7rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.speaker-body {
    padding: 22px
}

.speaker-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.speaker-role {
    font-size: .78rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5
}

.speaker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.speaker-tag {
    font-size: .65rem;
    font-weight: 600;
    background: var(--sky-light);
    color: var(--sky);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .2px;
}

/* ══════════════════ CAROUSEL / TESTIMONIALS ══════════════════ */
#highlights {
    background: var(--white)
}

.conf-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.conf-carousel .carousel-caption {
    background: linear-gradient(transparent, rgba(10, 22, 40, .8));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    padding: 28px;
}

.conf-carousel .carousel-control-prev,
.conf-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conf-carousel .carousel-control-prev {
    left: 16px
}

.conf-carousel .carousel-control-next {
    right: 16px
}

.conf-carousel .carousel-control-prev-icon,
.conf-carousel .carousel-control-next-icon {
    filter: invert(1);
    width: 16px;
    height: 16px;
}

.conf-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
}

.conf-carousel .carousel-indicators .active {
    background: var(--gold-light)
}

/* TESTIMONIALS */
.testimonial-carousel .testimonial-item {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    text-align: center;
}

.testimonial-carousel .quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: .6;
}

.testimonial-carousel .quote-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-carousel .reviewer-name {
    font-weight: 700;
    color: var(--navy);
    font-size: .95rem;
}

.testimonial-carousel .reviewer-role {
    font-size: .78rem;
    color: var(--text-light);
}

.testimonial-carousel .stars {
    color: var(--gold);
    font-size: .95rem;
    margin-bottom: 16px
}

.t-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 14px;
}

/* ══════════════════ COMMITTEES ══════════════════ */
#committees {
    background: var(--off-white)
}

.committee-table {
    width: 100%;
    border-collapse: collapse
}

.committee-table th {
    background: var(--navy);
    color: var(--gold-light);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 14px 18px;
    font-weight: 600;
}

.committee-table td {
    padding: 12px 18px;
    font-size: .85rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.committee-table tr:hover td {
    background: var(--sky-light)
}

.committee-table .name-col {
    font-weight: 600;
    color: var(--navy)
}

/* ══════════════════ REVIEWERS ══════════════════ */
#reviewers {
    background: var(--white)
}

.reviewer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px
}

.reviewer-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 16px 18px;
    border: 1px solid var(--border);
    transition: all .25s;
}

.reviewer-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale)
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--royal));
    color: var(--gold-light);
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--navy);
    font-size: .85rem;
    margin-bottom: 2px
}

.reviewer-inst {
    font-size: .72rem;
    color: var(--text-light);
    line-height: 1.4
}

.reviewer-country {
    font-size: .65rem;
    color: var(--sky);
    font-weight: 600;
    margin-top: 4px;
}

/* ══════════════════ SUBMISSION GUIDELINES ══════════════════ */
#submission {
    background: var(--navy);
    position: relative
}

#submission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(200, 151, 42, .05), transparent);
}

.guideline-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 24px;
    border-top: 3px solid var(--gold);
}

.guideline-card h6 {
    color: var(--gold-light);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 12px;
}

.guideline-card p {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════ CONTACT ══════════════════ */
#contact {
    background: var(--off-white)
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all .3s;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px)
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--royal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.contact-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 4px;

}

.contact-role {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .83rem;
    color: var(--text-mid);
    margin-bottom: 8px
}

.contact-detail i {
    color: var(--gold);
    width: 16px;
    flex-shrink: 0
}

.venue-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
}

.venue-card h5 {
    color: var(--gold-light);
    margin-bottom: 16px;
    font-weight: 700
}

.venue-card p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    font-size: .9rem
}

footer {
    background: var(--navy-mid);
    border-top: 3px solid var(--gold);
    padding: 20px;
}

footer .footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

footer .footer-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

footer .footer-link {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color .2s;
}

footer .footer-link:hover {
    color: var(--gold-light)
}

footer .footer-heading {
    color: var(--gold-light);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 16px;
}

footer .copyright {
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    text-decoration: none;
    transition: all .2s;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy)
}

/* ══════════════════ BACK TO TOP ══════════════════ */
#backTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(200, 151, 42, .4);
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s;
    z-index: 999;
}

#backTop.show {
    opacity: 1;
    transform: translateY(0)
}

#backTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(200, 151, 42, .5)
}

/* ══════════════════ UTILITIES ══════════════════ */
.gold-text {
    color: var(--gold)
}

.navy-bg {
    background: var(--navy)
}

.badge-track {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.img-placeholder-2 {

    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    justify-content: center;
    flex-direction: column;
    color: rgba(228 228 228 / 79%);

}


.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    background: linear-gradient(135deg, var(--navy-mid), var(--royal));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
}

.img-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    opacity: .5
}

@media(max-width:767px) {
    .section-pad {
        padding: 60px 0
    }

    .countdown-boxes {
        gap: 8px
    }

    .countdown-box {
        min-width: 58px;
        padding: 10px 4px
    }

    .countdown-num {
        font-size: 1.7rem
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start
    }

    .reviewer-grid {
        grid-template-columns: 1fr
    }
}


/* 11-04 */
.speaker-img-wrap img {
    width: 200px;
    border-radius: 50%;
    height: 200px;
    border: 2px solid #E8B84B;
}

/* 11-04 */



/* fee-details */
.premium-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.panel-head {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.panel-head h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}

.panel-head span {
    font-size: .78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Fee */
.fee-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fee-item {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--off-white);
}

.fee-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-size: .92rem;
}

.fee-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fee-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.fee-box small {
    display: block;
    font-size: .68rem;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.4;
    font-weight: 600;
}

.fee-box strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
}

/* Notes */
.info-box {
    background: var(--gold-pale);
    border-radius: var(--radius);
    padding: 18px;
    border-left: 4px solid var(--gold);
}

.info-box p {
    margin: 0 0 10px;
    font-size: .82rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Bank */
.bank-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-row {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--off-white);
}

.bank-row label {
    width: 38%;
    min-width: 160px;
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 600;
}

.bank-row strong {
    width: 62%;
    font-size: .84rem;
    color: var(--navy);
    text-align: left;
    line-height: 1.6;
}

/* Mobile */
@media(max-width:768px) {

    .premium-panel {
        padding: 22px;
    }

    .fee-values {
        grid-template-columns: 1fr;
    }

    .bank-row {
        flex-direction: column;
        gap: 6px;
    }

    .bank-row label,
    .bank-row strong {
        width: 100%;
    }
}

/* fee-details */
/* committeeimg */
.committeeimg {
    border-radius: 20px;
    background: red;
    padding: 5px;
    border: 10px solid #E8B84B;
}



/* Premium Compact Card */
.leader-card {
    padding: 24px 20px;
    min-height: 320px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--gold);
    border-radius: 0 0 10px 10px;
}

/* Image Wrap */
.leader-img-wrap {
    margin-bottom: 16px;
    margin-top: 8px;
}

/* Unique Rounded Image */
.leader-img {
    width: 185px;
    height: 205px;
    object-fit: cover;
    border-radius: 28px;
    border: 2px solid var(--gold);
    
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Name */
.leader-card .contact-name {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Role */
.leader-card .contact-role {
    font-size: .76rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Institution */
.leader-card .reviewer-inst {
    font-size: .78rem;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 280px;
    margin: auto;
}

/* Mobile */
@media(max-width:576px) {

    .leader-card {
        min-height: auto;
        padding: 22px 16px;
    }

    .leader-img {
        width: 110px;
        height: 110px;
    }

}

/* committeeimg */