:root {
  /* Premium Modern Palette */
  --primary-blue: #0A3568;       /* Richer, vibrant Navy Blue */
  --primary-blue-dark: #051C3A;  /* Deep Midnight Blue for contrast */
  --accent-orange: #FF6600;      /* Electric Accent Orange */
  --bg-main: #FCFDFF;            /* Cool tint off-white for main bg */
  --bg-surface: #F1F5F9;         /* Premium slate surface color */
  --border-color: #E2E8F0;       /* Crisp border */
  --text-main: #0F172A;          /* Deep rich slate text */
  --text-muted: #64748B;         /* Modern secondary slate */
  
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 75px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; position: relative; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-blue-dark); }

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  line-height: 1.7;
}

::selection { background: var(--primary-blue); color: #fff; }

a { color: var(--primary-blue); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-orange); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading); 
  font-weight: 600; 
  color: var(--primary-blue-dark);
  line-height: 1.3;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.max-w { max-width: 800px; margin-left: auto; margin-right: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

/* Global Ambient Effects (Cleaned out noise/fog, kept clean space) */
.global-ambient-bg { display: none; }

/* Audio Toggle */
.audio-toggle {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  background: var(--primary-blue-dark); color: #fff;
  width: 50px; height: 50px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.audio-toggle:hover { 
  background: var(--accent-orange);
  transform: translateY(-2px); 
}
.audio-toggle svg { width: 22px; height: 22px; }

/* Pre-Loader Sequence */
#pre-loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--bg-main); z-index: 20000;
  display: flex; align-items: center; justify-content: center;
}
.loader-center-content { text-align: center; width: 100%; max-width: 600px; display: flex; flex-direction: column; align-items: center; }
.loader-title { font-size: 2.5rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--primary-blue-dark); font-weight: 700; }
.loader-subtitle { font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.5rem; }
.hack-loader-container { width: 100%; max-width: 350px; height: 4px; background: var(--border-color); border-radius: 2px; position: relative; overflow: hidden; margin: 0 auto; }
.hack-loader-bar { width: 0%; height: 100%; background: var(--accent-orange); position: absolute; left: 0; top: 0; }
.hack-loader-head { display: none; }
.loader-percentage { font-size: 0.85rem; color: var(--text-muted); text-align: right; width: 100%; max-width: 350px; margin-top: 0.6rem; font-weight: 600; }

/* Navigation Bar */
.sticky-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(160%); border-bottom: 1px solid rgba(255,255,255,0.4);
  z-index: 1000; display: flex; align-items: center; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-blue); letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 0.5rem; align-items: center; }
.nav-links a { 
  font-family: var(--font-heading); font-size: 0.90rem; font-weight: 600; 
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-main); 
  position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  padding: 8px 14px; border-radius: 30px; 
}
.nav-links a:hover { 
  color: var(--primary-blue); 
  background: rgba(0, 51, 102, 0.05); 
  text-decoration: none; 
}
.nav-links a::after { 
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scale(0); 
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent-orange); 
  opacity: 0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: 0 0 8px var(--accent-orange);
}
.nav-links a:hover::after { opacity: 1; transform: translateX(-50%) scale(1); }

.nav-cta { 
  color: #fff !important; background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)); 
  padding: 10px 24px; border-radius: 30px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; 
  white-space: nowrap; box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2); 
  border: 1px solid rgba(255,255,255,0.1); margin-left: 10px;
}
.nav-cta:hover { 
  background: linear-gradient(135deg, var(--accent-orange), #ff6d00) !important; 
  color: #fff !important; transform: translateY(-3px) scale(1.05); 
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4); 
}
.nav-cta::after, .nav-cta:hover::after { display: none !important; }

/* Dropdown Menu */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-content {
  visibility: hidden; position: absolute; top: 100%; left: 0;
  background-color: rgba(255, 255, 255, 0.85); min-width: 180px;
  backdrop-filter: blur(15px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); z-index: 1001;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(10px); opacity: 0; transition: all 0.3s ease; pointer-events: none;
}
.nav-dropdown-content a {
  color: var(--text-main); padding: 12px 20px;
  text-decoration: none; display: block;
  font-size: 0.9rem; text-transform: none; font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}
.nav-dropdown-content a:last-child { border-bottom: none; }
.nav-dropdown-content a::after { display: none; }
.nav-dropdown-content a:hover { background-color: rgba(255, 255, 255, 0.6); color: var(--accent-orange); padding-left: 25px; }
.nav-dropdown:hover .nav-dropdown-content { visibility: visible; transform: translateY(0); opacity: 1; pointer-events: auto; }

.hamburger { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--primary-blue); transition: 0.3s; }
.hamburger span:nth-child(1) { top: 0; } .hamburger span:nth-child(2) { top: 9px; } .hamburger span:nth-child(3) { top: 18px; }

/* Primary Button Design */
.btn-primary {
  position: relative; display: inline-block; padding: 14px 36px; 
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #fff; font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  border: none; border-radius: 30px; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2); border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-orange), #ff6d00); color: #fff; text-decoration: none;
  transform: translateY(-4px) scale(1.03); box-shadow: 0 10px 25px rgba(230, 81, 0, 0.4);
}

/* Sections Styling */
section { padding: 90px 0; position: relative; z-index: 2; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--primary-blue-dark); margin-bottom: 0.75rem; font-weight: 700; }
.section-subtitle { font-size: 1.2rem; color: var(--text-muted); font-weight: 400; }
.st-title { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--primary-blue-dark); font-weight: 700; }

/* Hero Section */
.section-hero { 
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; 
  background: radial-gradient(circle at 10% 20%, rgba(10, 53, 104, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 102, 0, 0.06) 0%, transparent 40%),
              linear-gradient(135deg, var(--bg-main) 0%, #E2E8F0 100%);
  padding-top: var(--nav-height); 
}
.tagline { font-size: clamp(1.25rem, 2.5vw, 1.8rem); margin-top: 1rem; color: var(--accent-orange); font-weight: 600; }
.sub-line { font-size: 1.05rem; max-width: 750px; margin: 1.5rem auto; color: var(--text-muted); }
.dates-banner {
  display: inline-block; background: rgba(255, 255, 255, 0.85); padding: 10px 28px; font-weight: 600;
  backdrop-filter: blur(10px);
  font-size: 1.15rem; border-radius: 30px; margin-top: 1.5rem; color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(10, 53, 104, 0.1); border: 1px solid rgba(255,255,255,0.6);
}

/* Countdown Timer */
.countdown-container { margin: 2rem auto; max-width: 500px; text-align: center; }
.countdown-title { font-weight: 600; font-size: 1.1rem; color: var(--text-main); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.countdown-timer { display: flex; justify-content: center; gap: 1rem; }
.time-box { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.6); padding: 1rem; border-radius: 12px; min-width: 75px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(0,0,0,0.04); }
.time-box span { font-weight: 700; font-size: 2rem; color: var(--primary-blue); line-height: 1; text-shadow: 0 2px 4px rgba(10,53,104,0.1); }
.time-box small { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-top: 6px; letter-spacing: 0.5px; font-weight: 600; }

/* Corporate Cards */
.card, .about-block, .t-step, .pitch-format, .how-to-register-box, .inc-block, .student-list-item {
  background: var(--bg-surface); 
  border: 1px solid var(--border-color); 
  padding: 2.5rem; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}
.card:hover, .about-block:hover, .t-step:hover, .inc-block:hover, .student-list-item:hover {
  transform: translateY(-8px) scale(1.01); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: rgba(0, 51, 102, 0.15);
}

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; text-align: left; }
.highlight-quote { font-size: 1.2rem; font-weight: 500; font-style: italic; color: var(--primary-blue); border-left: 3px solid var(--accent-orange); padding-left: 1.2rem; margin-top: 0.5rem; margin-bottom: 1rem; }

/* ABESIT Stats Strip */
.stats-strip { 
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; 
  background: var(--bg-surface); 
  padding: 3rem 1rem; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); 
  border-radius: 8px; margin-top: 3rem;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 3rem; color: var(--primary-blue); font-weight: 700; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 5px; font-weight: 600; }

/* Apply Section */
.checklist-grid { display: grid; gap: 1rem; }
.check-card { background: #fff; border: 1px solid var(--border-color); padding: 1.25rem 1.75rem; font-size: 1.05rem; border-radius: 8px; border-left: 5px solid var(--primary-blue); box-shadow: 0 2px 8px rgba(0,0,0,0.02); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.check-card:hover { transform: translateX(8px) scale(1.02); border-left-color: var(--accent-orange); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.info-box { border: 1px solid var(--border-color); padding: 2rem; text-align: center; font-size: 1.1rem; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }

/* Overview & Steps */
.timeline-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }
.t-step { background: #fff; }
.t-number { font-family: var(--font-heading); font-size: 3rem; color: var(--border-color); font-weight: 700; margin-bottom: -0.5rem; }
.t-step h4 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--primary-blue-dark); }
.how-to-register-box { text-align: center; margin-top: 4rem; background: #fff; }

/* Schedule Timeline */
.st-timeline { position: relative; max-width: 700px; margin: 0 auto; padding: 2rem 0; text-align: left; }
.st-timeline-line { position: absolute; left: 20px; top: 0; width: 2px; height: 100%; background: var(--border-color); }
.st-timeline-trail { position: absolute; left: 20px; top: 0; width: 2px; height: 0%; background: var(--primary-blue); }
.timeline-shark { display: none; } /* Replaced animated shark with clean modern line progress */

.st-timeline-item { position: relative; padding-left: 60px; margin-bottom: 3rem; }
.st-date { font-family: var(--font-heading); font-size: 1.1rem; color: var(--accent-orange); font-weight: 600; letter-spacing: 0.5px; }
.st-dot { position: absolute; left: 13px; top: 6px; width: 16px; height: 16px; background: #fff; border: 3px solid var(--primary-blue); border-radius: 50%; transition: all 0.3s; z-index: 2; }
.st-content { font-size: 1.05rem; margin-top: 0.25srem; color: var(--text-main); font-weight: 500; }
.st-timeline-item.active .st-dot { background: var(--accent-orange); border-color: var(--accent-orange); box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.15); }

/* Criteria Progress Bars */
.bars-container { display: flex; flex-direction: column; gap: 1.25rem; max-width: 800px; margin: 0 auto; text-align: left; }
.bar-group { display: flex; align-items: center; gap: 1.5rem; background: #fff; padding: 1rem 1.5rem; border: 1px solid var(--border-color); border-radius: 6px; }
.bar-label { width: 320px; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-main); }
.bar-track { flex: 1; height: 6px; background: var(--border-color); overflow: hidden; border-radius: 3px; }
.bar-fill { width: 0; height: 100%; background: var(--primary-blue); border-radius: 3px; }
.bar-pct { width: 45px; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--primary-blue); text-align: right; }

.pitch-format { margin-top: 3rem; background: #fff; text-align: left; }
.format-flow { font-size: 0.95rem; color: var(--text-muted); margin-top: 1rem; background: var(--bg-surface); padding: 1rem; border-radius: 6px; border: 1px solid var(--border-color); line-height: 1.8; }

/* Categories Grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; text-align: center; }
.cat-item { 
  background: #fff; border: 1px solid var(--border-color); 
  padding: 1.5rem; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 12px; color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.cat-item:hover { 
  border-color: var(--primary-blue); color: var(--primary-blue); 
  transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 25px rgba(0, 51, 102, 0.1); 
}
.open-inv { border-style: dashed; }

/* Gallery Layout */
.auto-scroll-gallery {
  height: 550px; overflow: hidden; position: relative;
  background: var(--bg-surface); border: 1px solid var(--border-color);
  border-radius: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem;
}
.marquee-col { overflow: hidden; position: relative; height: 100%; display: flex; align-items: flex-start; }
.marquee-track { display: flex; flex-direction: column; gap: 1rem; width: 100%; animation: marqueeVertical 30s linear infinite; will-change: transform; transform: translateZ(0); backface-visibility: hidden; perspective: 1000px; }
.marquee-col.down .marquee-track { animation-direction: reverse; }
@keyframes marqueeVertical {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, calc(-50% - 0.5rem), 0); }
}
.gallery-img { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--border-color); width: 100%; transform: translateZ(0); }
.gallery-img img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); transform: translateZ(0); backface-visibility: hidden; }
.gallery-img:hover img { transform: scale(1.1) translateZ(0); }
.g-placeholder { width: 100%; height: 220px; background: #edf2f7; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); color: var(--text-muted); font-size: 1rem; }

/* Contact Us Tables */
.contact-table-wrapper {
  overflow-x: auto; border-radius: 8px; border: 1px solid var(--border-color);
  background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.02); text-align: left;
}
.contact-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 650px; }
.contact-table thead { background: var(--bg-surface); border-bottom: 2px solid var(--border-color); }
.contact-table th { font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--primary-blue-dark); padding: 16px 20px; }
.contact-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-color); color: var(--text-main); vertical-align: middle; }
.contact-table td strong { color: var(--primary-blue); }
.contact-table td[rowspan] { background: #fafbfc; border-right: 1px solid var(--border-color); font-weight: 600; color: var(--primary-blue-dark); }
.contact-info-strip { padding: 1rem; font-size: 1.05rem; color: var(--text-muted); }
.contact-phone { color: var(--primary-blue) !important; font-weight: 500; }

/* Incubation Grid */
.inc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
.inc-block h4 { color: var(--primary-blue); margin-bottom: 0.5rem; font-size: 1.2rem; }

/* Footer */
.section-footer { border-top: 1px solid var(--border-color); padding: 4rem 0 2rem; background: var(--bg-surface); }
.footer-info { color: var(--text-muted); font-size: 0.95rem; margin-top: 2rem; }
.socials a { margin: 0 10px; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-main); display: inline-block; }
.socials a:hover { color: var(--accent-orange); }

/* Core Committee Section */
.committee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.committee-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  width: calc(33.333% - 1rem);
  min-width: 250px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.committee-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 51, 102, 0.1);
  border-color: var(--primary-blue);
}

.c-icon {
  width: 180px;
  height: 180px;
  background-color: var(--primary-blue-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.5rem;
  margin: 0 auto 1rem auto;
}

.c-name {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.c-role {
  font-size: 0.95rem;
  color: var(--accent-orange);
  font-weight: 500;
}


/* Responsive Adjustments */
@media(max-width: 768px) {
  .nav-links { 
    display: none; position: absolute; top: var(--nav-height); left: 0; width: 100%; 
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); flex-direction: column; padding: 1.5rem; 
    border-bottom: 1px solid var(--border-color); z-index: 1000; align-items: stretch;
  }
  .nav-links.active { display: flex; }
  
  .nav-dropdown { width: 100%; }
  .nav-dropdown-content { 
    position: static; visibility: visible; opacity: 1; transform: none; 
    box-shadow: none; border: none; background: transparent; 
    padding-left: 1rem; padding-right: 0; display: none; pointer-events: auto; margin-top: 0.5rem;
  }
  .nav-dropdown:hover .nav-dropdown-content, .nav-dropdown:active .nav-dropdown-content, .nav-dropdown.mobile-open .nav-dropdown-content { display: flex; flex-direction: column; }
  .nav-dropdown-content a { padding: 8px 15px; border-bottom: none; }
  
  .nav-cta { margin-left: 0; margin-top: 15px; text-align: center; }
  
  .hamburger { display: block; flex-shrink: 0; margin-left: 10px; }
  
  /* Shrink logos on mobile so hamburger is visible */
  .nav-logo { gap: 6px !important; margin-left: -5px !important; }
  .nav-logo > img { height: 28px !important; }
  .nav-logo > div { gap: 6px !important; transform: translateY(-2px) !important; }
  .nav-logo > div > img { height: 18px !important; }
  .nav-content { padding: 0 1rem; }
  
  /* Ensure sections are not covered by sticky nav */
  section { scroll-margin-top: var(--nav-height); }
  
  .about-grid, .timeline-steps { grid-template-columns: 1fr; }
  .bar-group { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .bar-label { width: 100%; }
  .stats-strip { flex-direction: column; gap: 2rem; }
  
  .committee-card { width: 100%; }
  
  .section-hero { padding-top: calc(var(--nav-height) + 2rem); }

  /* Hero Mobile Fixes */
  .hero-content {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 2rem !important;
  }
  .hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-text-col p.sub-line {
    text-align: center !important;
  }
  .hero-text-col .countdown-container {
    text-align: center !important;
    margin: 0 auto !important;
  }
  .hero-text-col .countdown-timer {
    justify-content: center !important;
  }
  .hero-text-col .mt-3 {
    justify-content: center !important;
  }
  .hero-graphic-col {
    margin-top: 2rem !important;
  }
}