/* ==========================================================================
   TEERSD-IV 2026 — Theme Override
   Modern tech-conference visual system layered on top of the base template
   (main.css). Department of Chemical Engineering, Guru Ghasidas Vishwavidyalaya.
   ========================================================================== */

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

:root {
    --c-primary: #0e9f74;
    --c-primary-dark: #086b4d;
    --c-primary-light: #2fdba0;
    --c-accent: #ffb648;
    --c-accent-dark: #e8912a;
    --c-violet: #8b7cf6;
    --c-cyan: #33e4d0;
    --c-ink: #060d16;
    --c-ink-2: #0b1a26;
    --c-ink-3: #102436;
    --c-surface: #ffffff;
    --c-surface-alt: #f4f8f7;
    --c-surface-tint: #eaf7f1;
    --c-text: #16212b;
    --c-text-muted: #57646d;
    --c-border: #e3e9e6;
    --shadow-sm: 0 2px 10px rgba(6, 13, 22, 0.06);
    --shadow-md: 0 14px 34px rgba(6, 13, 22, 0.12);
    --shadow-lg: 0 30px 70px rgba(6, 13, 22, 0.22);
    --shadow-glow: 0 0 0 1px rgba(47, 219, 160, 0.25), 0 18px 40px rgba(14, 159, 116, 0.22);
    --radius: 16px;
    --radius-sm: 10px;
    --ease: cubic-bezier(.22, .8, .3, 1);
}

html, body { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--c-text);
    background: var(--c-surface);
}

/* Sticky footer: on short pages, without this the white <body> background
   shows below the footer whenever the viewport is taller than the content.
   Making body a column flex container and pushing .footer to the end keeps
   the footer anchored to the bottom of the viewport instead.
   Important: only `min-height` here, never a definite `height:100%` on body —
   a definite height on a flex container forces flex-shrink across all items,
   and .hero-area (which sets overflow:hidden) has its automatic min-height
   reset to 0 by the flexbox spec, so it would absorb almost all the shrinkage
   and collapse instead of showing its content. min-height alone only acts as
   a floor and never triggers shrinking. */
body { display: flex; flex-direction: column; min-height: 100vh; }
.footer { margin-top: auto; }

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title h2,
.hero-content h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

a { transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
::selection { background: var(--c-primary); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--c-surface-alt); }
::-webkit-scrollbar-thumb { background: var(--c-primary-light); border-radius: 10px; }

/* ---------- Scroll reveal (driven by assets/js/reveal.js) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Texture utilities ---------- */
.bg-dotgrid {
    background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
}
.bg-dotgrid-dark {
    background-image: radial-gradient(rgba(9,20,30,.08) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
}

/* ---------- Preloader ---------- */
.preloader { background-color: var(--c-ink); }
.preloader-inner .preloader-icon span { border-color: var(--c-accent) transparent; }

/* ---------- Top utility strip ---------- */
.teersd-topbar {
    background: var(--c-ink);
    color: #cfe7de;
    font-size: .85rem;
    padding: 7px 0;
    position: relative;
    z-index: 20;
}
.teersd-topbar .container {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px; max-width: 100%;
}
.teersd-topbar a { color: #e8f5ef; text-decoration: none; }
.teersd-topbar a:hover { color: var(--c-accent); }
.teersd-topbar .topbar-contacts { display: flex; gap: 12px 18px; flex-wrap: wrap; min-width: 0; }
.teersd-topbar .topbar-contacts span { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
@media (max-width: 575px) {
    .teersd-topbar { font-size: .76rem; }
    .teersd-topbar .container { justify-content: center; text-align: center; }
    .teersd-topbar .topbar-contacts { justify-content: center; width: 100%; }
}
.teersd-topbar .topbar-mode {
    background: linear-gradient(120deg, var(--c-accent), var(--c-accent-dark));
    color: var(--c-ink);
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .04em;
}

/* ---------- Header / Nav ---------- */
.header.navbar-area {
    background: rgba(6, 13, 22, 0.85) !important;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: var(--shadow-sm);
    position: sticky !important;
    top: 0;
    z-index: 1000;
}
.header .nav-inner { padding: 6px 0; }
/* Base template drew a decorative "notch" triangle above every nav link,
   positioned to stay off-canvas above the old absolute/overlay header.
   With a real topbar pushing the header down, that triangle now lands
   inside visible page area, so it's disabled here. */
.navbar-nav .nav-item a::before { display: none !important; }
.navbar-nav .nav-item a {
    padding: 22px 0 !important;
    position: relative;
}
.navbar-nav .nav-item a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 14px;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--c-primary-light), var(--c-cyan));
    transition: width .25s var(--ease);
    opacity: 1 !important;
    visibility: visible !important;
}
.navbar-nav .nav-item:hover > a::after,
.navbar-nav .nav-item > a.active::after { width: 100%; }
.header .navbar-brand { display: flex; align-items: center; gap: 10px; font-weight: 700 !important; letter-spacing: -0.01em; }
.header .navbar-brand .brand-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 11px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-cyan));
    color: #04140f;
    font-size: 1rem; font-weight: 800; flex: none;
    box-shadow: 0 6px 18px rgba(51, 228, 208, .35);
}
.header .navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.header .navbar-brand .brand-text small {
    font-size: .62rem; font-weight: 500; letter-spacing: .14em;
    color: #8fd9c7; text-transform: uppercase; font-family: 'Inter', sans-serif;
}
@media (max-width: 420px) {
    .header .navbar-brand .brand-text small { display: none; }
    .header .navbar-brand .brand-mark { width: 34px; height: 34px; font-size: .85rem; }
}
#nav.navbar-nav > li > a,
#nav.navbar-nav > li > a.dd-menu { font-weight: 600; font-size: .93rem; color: #eef4f1 !important; }
#nav.navbar-nav > li > a:hover { color: var(--c-cyan) !important; }
.sub-menu-bar .sub-menu {
    background: var(--c-surface) !important;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border-top: 2px solid var(--c-primary);
}
.sub-menu-bar .sub-menu .nav-item,
.sub-menu-bar .sub-menu li { margin-bottom: 0 !important; }
.sub-menu-bar .sub-menu .nav-item a,
.sub-menu-bar .sub-menu li a {
    color: var(--c-ink) !important; font-weight: 500;
    padding: 12px 18px !important; border-radius: 0 !important;
}
.sub-menu-bar .sub-menu .nav-item a::after { display: none; }
.sub-menu-bar .sub-menu .nav-item a:hover,
.sub-menu-bar .sub-menu li a:hover { background: var(--c-surface-tint) !important; color: var(--c-primary-dark) !important; }
@media (min-width: 992px) { .sub-menu-bar .sub-menu { min-width: 260px; } }

/* ---------- Announcement marquee ---------- */
.news-strip {
    background: var(--c-surface-tint) !important;
    color: var(--c-ink) !important;
    border-top: 1px solid var(--c-border);
    font-size: .95rem !important;
    padding: 6px 0;
}
.news-strip b { color: var(--c-primary-dark); }
.news-strip a { color: var(--c-accent-dark) !important; font-weight: 700; }

/* ---------- Hero: aurora mesh + drifting glow orbs ---------- */
/* main.css reserves 200px top / 240px bottom padding to let an absolutely
   positioned header float on top of the hero image. The header here is a
   normal sticky bar (see above), so that reserved space is cut down —
   the bottom is kept large enough for the countdown card's -115px overlap. */
.hero-area {
    background: var(--c-ink) !important;
    overflow: hidden;
    padding: 76px 0 176px 0 !important;
    position: relative;
    isolation: isolate;
}
.hero-area::before {
    content: "";
    position: absolute; inset: -20%;
    background:
        radial-gradient(38% 45% at 14% 22%, rgba(47, 219, 160, .32), transparent 60%),
        radial-gradient(32% 40% at 88% 8%, rgba(255, 182, 72, .22), transparent 60%),
        radial-gradient(45% 55% at 78% 78%, rgba(139, 124, 246, .22), transparent 60%),
        radial-gradient(30% 35% at 6% 85%, rgba(51, 228, 208, .18), transparent 60%);
    animation: auroraDrift 18s ease-in-out infinite alternate;
    z-index: 0;
}
.hero-area::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1.4px, transparent 1.4px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 75%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 75%);
    z-index: 0;
}
@keyframes auroraDrift {
    0%   { transform: translate3d(0,0,0) scale(1); }
    50%  { transform: translate3d(-2%, 2%, 0) scale(1.05); }
    100% { transform: translate3d(2%, -1%, 0) scale(1.02); }
}
.hero-area .container { position: relative; z-index: 1; }
.hero-area .main__circle,
.hero-area .main__circle2,
.hero-area .main__circle3,
.hero-area .main__circle4 { display: none; }
@media (max-width: 991px) { .hero-area { padding: 54px 0 150px 0 !important; } }
@media (max-width: 767px) { .hero-area { padding: 40px 0 100px 0 !important; } }

.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 18px; }
.hero-badges img { background: #fff; border-radius: 10px; padding: 6px; box-shadow: var(--shadow-md); }
.hero-tagline {
    display: inline-block; color: #cfe7de; font-size: .92rem; letter-spacing: .03em;
    padding: 5px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
    background: rgba(255,255,255,.04);
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--c-cyan); font-weight: 700; font-size: 1rem !important;
    letter-spacing: .16em; text-transform: uppercase;
}
.hero-eyebrow::before {
    content: ""; width: 34px; height: 2px;
    background: linear-gradient(90deg, var(--c-cyan), transparent);
    display: inline-block;
}
.hero-content h2 {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.hero-content .hero-date-line { text-align: left !important; color: var(--c-accent) !important; font-weight: 700; }
.hero-content .hero-org-line { text-align: left !important; color: #cfe7de !important; }
.hero-content .hero-desc { text-align: left !important; color: #9fb3ac !important; max-width: 780px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-cta .btn {
    background: linear-gradient(120deg, var(--c-accent), var(--c-accent-dark));
    border-color: transparent;
    color: #1c1204;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(255, 182, 72, .3);
}
.hero-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255, 182, 72, .4); }
.hero-cta .btn-outline {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 700; display: inline-block;
}
.hero-cta .btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ---------- Stat strip ---------- */
.stat-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: -78px;
    overflow: hidden;
}
.stat-strip .stat-item {
    text-align: center;
    padding: 30px 14px;
    min-width: 0;
    border-right: 1px solid var(--c-border);
}
.stat-strip .stat-item:last-child { border-right: none; }
.stat-strip .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--c-primary-dark);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-strip .stat-label { color: var(--c-text-muted); font-size: .88rem; letter-spacing: .03em; }
@media (max-width: 991px) {
    .stat-strip .stat-number { font-size: 1.9rem; }
    .stat-strip .stat-item { padding: 24px 10px; }
}
@media (max-width: 767px) {
    .stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
    .stat-strip .stat-item { padding: 20px 10px; border-bottom: 1px solid var(--c-border); }
    .stat-strip .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .stat-strip .stat-number { font-size: 1.7rem; }
}

/* ---------- Breadcrumb / inner page header ---------- */
/* Same reasoning as .hero-area above: no more absolute header to clear. */
.breadcrumbs {
    background: var(--c-ink) !important;
    padding: 70px 0 56px !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.breadcrumbs::before {
    content: "";
    position: absolute; inset: -30%;
    background:
        radial-gradient(35% 60% at 18% 30%, rgba(47, 219, 160, .28), transparent 65%),
        radial-gradient(30% 50% at 85% 70%, rgba(139, 124, 246, .22), transparent 65%);
    z-index: 0;
}
.breadcrumbs::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 85%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 85%);
    z-index: 0;
}
.breadcrumbs .container { position: relative; z-index: 1; }
.breadcrumbs .page-title { color: #fff !important; font-weight: 700; letter-spacing: -0.01em; }
.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a { color: #a7c9bd !important; }
.breadcrumbs .breadcrumb-nav li:last-child { color: var(--c-accent) !important; }

/* ---------- Buttons ---------- */
.btn {
    background: var(--c-primary);
    border-color: var(--c-primary);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.btn:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-alt { background: var(--c-ink); border-color: var(--c-ink); }
.btn-alt:hover { background: #000; }

/* ---------- Section title ---------- */
.section-title h3 {
    color: var(--c-primary-dark) !important;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: .8rem !important;
}
.section-title h3::before, .section-title h3::after { display: none !important; }
.section-title h3 { display: inline-flex; align-items: center; gap: 10px; }
.section-title h2 { color: var(--c-ink) !important; font-weight: 700; letter-spacing: -0.02em; }
.section-title.white-title h3 { color: var(--c-cyan) !important; }
.section-title.white-title h2 { color: #fff !important; }

/* ---------- Countdown ---------- */
.count-down { background: var(--c-surface-alt) !important; padding: 40px 0; position: relative; z-index: 1; }
.count-down .box {
    background: var(--c-surface) !important;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease);
}
.count-down .box:hover { transform: translateY(-4px); }
.count-down .box h1 { color: var(--c-primary-dark) !important; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.count-down .box h2 { color: var(--c-text-muted) !important; }

/* ---------- Topic / feature cards ---------- */
.single-featuer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.single-featuer::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-cyan), var(--c-violet));
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease);
}
.single-featuer:hover::before { transform: scaleX(1); }
.single-featuer:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: transparent; }
.single-featuer .serial { color: var(--c-primary) !important; opacity: .16; }
.single-featuer h3 { color: var(--c-ink) !important; font-weight: 700; }

/* ---------- Pricing / fee cards ---------- */
.pricing-table.overlay { background: var(--c-ink-2) !important; position: relative; overflow: hidden; isolation: isolate; }
.pricing-table.overlay::before {
    content: "";
    position: absolute; inset: -20%;
    background:
        radial-gradient(35% 50% at 20% 20%, rgba(255, 182, 72, .18), transparent 65%),
        radial-gradient(35% 50% at 80% 80%, rgba(47, 219, 160, .22), transparent 65%);
    z-index: 0;
}
.pricing-table.overlay .container { position: relative; z-index: 1; }
.single-table {
    background: var(--c-surface) !important;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.single-table:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.single-table.middle { background: var(--c-ink) !important; }
.single-table.middle .title,
.single-table.middle .amount,
.single-table.middle p { color: #fff !important; }
.single-table .amount { color: var(--c-primary-dark); font-weight: 700; font-family: 'Space Grotesk', sans-serif; }

/* ---------- Sponsors ---------- */
.sponsors.section { background: var(--c-surface-alt); }
.single-sponsor {
    background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
    display: inline-flex; padding: 10px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.single-sponsor:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- Call to action ---------- */
.call-action.overlay {
    background: var(--c-ink) !important;
    position: relative; overflow: hidden; isolation: isolate;
}
.call-action.overlay::before {
    content: "";
    position: absolute; inset: -30%;
    background:
        radial-gradient(40% 60% at 25% 30%, rgba(14, 159, 116, .38), transparent 65%),
        radial-gradient(35% 55% at 80% 70%, rgba(139, 124, 246, .25), transparent 65%);
    z-index: 0;
}
.call-action.overlay .container { position: relative; z-index: 1; }
.call-action h5 { color: var(--c-cyan) !important; letter-spacing: .1em; text-transform: uppercase; font-size: .9rem !important; }
.call-action h2 { color: #fff !important; font-weight: 700; }

/* ---------- Journal / about strip on home ---------- */
.about-image img { filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); }

/* ---------- Story sections (narrative / "why attend") ---------- */
.story-section { padding: 100px 0; }
.story-section:nth-of-type(even) { background: var(--c-surface-alt); }
.story-row { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.story-row.reverse { flex-direction: row-reverse; }
.story-copy { flex: 1 1 420px; min-width: 280px; }
.story-media { flex: 1 1 420px; min-width: 280px; position: relative; }
.story-index {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem; font-weight: 700; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--c-primary-light);
    opacity: .5;
    margin-bottom: 10px;
}
.story-copy h3 { font-size: 2rem; color: var(--c-ink); font-weight: 700; margin-bottom: 18px; letter-spacing: -0.02em; }
.story-copy p { color: var(--c-text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 16px; }
.story-copy ul { list-style: none; margin: 20px 0 0; padding: 0; }
.story-copy ul li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
    color: var(--c-text); font-weight: 500;
}
.story-copy ul li i { color: var(--c-primary); font-size: 1.2rem; margin-top: 2px; }
.story-media .story-visual {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--c-ink), var(--c-ink-3));
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.story-media .story-visual::before {
    content: "";
    position: absolute; inset: -30%;
    background:
        radial-gradient(40% 55% at 25% 25%, rgba(47, 219, 160, .35), transparent 65%),
        radial-gradient(40% 55% at 80% 80%, rgba(139, 124, 246, .28), transparent 65%);
}
.story-media .story-visual i {
    position: relative; z-index: 1;
    font-size: 4.5rem; color: rgba(255,255,255,.85);
}
@media (max-width: 767px) {
    .story-section { padding: 60px 0; }
    .story-row, .story-row.reverse { flex-direction: column; gap: 34px; }
    .story-index { font-size: 3.4rem; }
}

/* ---------- Timeline (Important Dates preview) ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 6px; }
.timeline::before {
    content: "";
    position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px;
    background: linear-gradient(180deg, var(--c-primary), var(--c-cyan), var(--c-border));
}
.timeline-item {
    position: relative;
    padding: 0 0 34px 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .timeline-dot {
    position: absolute; left: 8px; top: 2px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--c-surface);
    border: 3px solid var(--c-primary);
    display: flex; align-items: center; justify-content: center;
}
.timeline-item .timeline-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary); }
.timeline-item.is-highlight .timeline-dot { border-color: var(--c-accent); }
.timeline-item.is-highlight .timeline-dot::after { background: var(--c-accent); }
.timeline-item .timeline-date {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--c-primary-dark); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; display: block;
}
.timeline-item.is-highlight .timeline-date { color: var(--c-accent-dark); }
.timeline-item .timeline-label { color: var(--c-text-muted); }

/* ---------- Footer ---------- */
.footer { position: relative; }
.footer::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-cyan), var(--c-violet), var(--c-accent));
}
.footer .footer-top { background: var(--c-ink-2) !important; padding: 70px 0 40px; }
.footer .single-footer h3 {
    color: #fff !important; font-size: .82rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: 22px; position: relative; padding-bottom: 12px;
    font-family: 'Inter', sans-serif;
}
.footer .single-footer h3::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px;
    background: linear-gradient(90deg, var(--c-primary-light), var(--c-cyan));
}
.footer .single-footer p,
.footer .single-footer li,
.footer .single-footer li a { color: #aebfb8 !important; }
.footer .single-footer.f-link li { margin-bottom: 10px; }
.footer .single-footer li a { position: relative; }
.footer .single-footer li a:hover { color: var(--c-cyan) !important; padding-left: 4px; }
.footer .single-footer.f-about .logo a { color: #fff !important; font-family: 'Space Grotesk', sans-serif; }
.footer .single-footer.f-about p { line-height: 1.7; margin-bottom: 18px; }
.footer .social-title { display: block; color: #7f948c; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.footer .social li a { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #fff; border-radius: 8px; }
.footer .social li a:hover { background: var(--c-primary); border-color: var(--c-primary); }

.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: #aebfb8; margin-bottom: 14px; line-height: 1.55; font-size: .95rem; }
.footer-contact-list li i { color: var(--c-primary-light); font-size: 1.05rem; margin-top: 3px; flex: none; }
.footer-contact-list li a { color: #d7e5df; }
.footer-contact-list li a:hover { color: var(--c-cyan); }

.footer .newsletter-form input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.footer .newsletter-form input::placeholder { color: #9fb0aa; }

.footer .copyright { background: var(--c-ink) !important; padding: 18px 0; }
.footer .copyright .inner-content { border-top: none !important; padding: 0 !important; }
.footer .copyright .inner-content .row { align-items: center; }
.footer .copyright-text, .footer .copyright-text a { color: #8fa39c !important; font-size: .87rem; }
.footer-bottom-flex { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-flex > * { min-width: 0; }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: #8fa39c; font-size: .87rem; }
.footer-bottom-links a:hover { color: var(--c-cyan); }

@media (max-width: 991px) { .footer .single-footer { margin-bottom: 34px; } }

/* ---------- Content tables (dates / fees / committees) ---------- */
.content-section { padding: 96px 0; }
.teersd-table-wrap { overflow-x: auto; box-shadow: var(--shadow-sm); border-radius: var(--radius); border: 1px solid var(--c-border); }
table.teersd-table { width: 100%; border-collapse: collapse; margin: 0; background: #fff; }
table.teersd-table th { background: var(--c-ink); color: #fff; font-weight: 700; text-align: left; padding: 16px 20px; font-family: 'Space Grotesk', sans-serif; }
table.teersd-table td { padding: 14px 20px; border-bottom: 1px solid var(--c-border); font-size: 1rem; }
table.teersd-table tr:last-child td { border-bottom: none; }
table.teersd-table tr:nth-of-type(even) td { background: var(--c-surface-alt); }
table.teersd-table td b { color: var(--c-primary-dark); }

.info-card {
    background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); padding: 28px; height: 100%;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: transparent; }
.info-card h4 { color: var(--c-ink); font-weight: 700; margin-bottom: 10px; }
.info-card .lni { color: var(--c-primary); font-size: 1.6rem; margin-bottom: 12px; display: inline-block; }

.person-card {
    background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); padding: 24px; text-align: center; height: 100%;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-card img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; margin: 0 auto 16px; box-shadow: var(--shadow-sm); border: 3px solid var(--c-surface-tint); }
.avatar-initials {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--c-primary), var(--c-cyan));
    color: #04140f; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.6rem;
    box-shadow: var(--shadow-sm); border: 3px solid var(--c-surface-tint);
}
.person-card h4 { color: var(--c-ink); font-weight: 700; margin-bottom: 4px; }
.person-card span { color: var(--c-primary-dark); font-weight: 600; font-size: .9rem; }
.person-card p { color: var(--c-text-muted); font-size: .9rem; margin-top: 8px; }

.committee-list { list-style: none; margin: 0; padding: 0; }
.committee-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 18px; border-bottom: 1px solid var(--c-border); }
.committee-list li:nth-of-type(odd) { background: var(--c-surface-alt); }
.committee-list li span.role { color: var(--c-text-muted); font-size: .88rem; white-space: nowrap; }

.tag-pill {
    display: inline-block; background: var(--c-surface-tint); color: var(--c-primary-dark);
    font-weight: 600; font-size: .8rem; padding: 4px 14px; border-radius: 999px; margin-bottom: 14px;
    letter-spacing: .02em;
}

.bank-card { background: var(--c-ink); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.bank-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
.bank-card dt { color: #9fd8c1; font-weight: 600; }
.bank-card dd { margin: 0; color: #fff; font-weight: 700; }

.step-card {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--c-surface); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
    margin-bottom: 18px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.step-card .step-num {
    flex: none; width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-cyan));
    color: #04140f; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.step-card h4 { color: var(--c-ink); font-weight: 700; margin-bottom: 6px; }
.step-card p { color: var(--c-text-muted); margin: 0; }

.scroll-top { background: var(--c-primary) !important; }
.scroll-top:hover { background: var(--c-primary-dark) !important; }

@media (max-width: 767px) {
    .content-section { padding: 60px 0; }
    .breadcrumbs { padding: 130px 0 40px !important; }
}
