/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A1F44;
  --navy-2: #0d2a5c;
  --blue: #2563EB;
  --blue-light: #60a5fa;
  --gold: #F5B301;
  --red: #DC2626;
  --bg: #ffffff;
  --muted: #64748b;
  --line: rgba(10,31,68,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Background Orbs ---------- */
.bg-orbs {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 60%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: float 18s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: #93c5fd; top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: #fde68a; bottom: -80px; left: -80px; animation-delay: -6s; }
.orb-3 { width: 350px; height: 350px; background: #c7d2fe; top: 40%; left: 50%; animation-delay: -12s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.05); }
  66%     { transform: translate(-30px,40px) scale(0.95); }
}

/* ---------- Real Logo Image ---------- */
.brand-logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo-img:hover {
  transform: scale(1.03);
}

/* Footer logo — because footer has dark background, 
   your logo is already designed on dark, so it fits perfectly */
.footer-logo-img {
  height: 52px;
}

/* If your logo image has a dark/transparent background 
   but sits on the light navbar, add subtle contrast */
.nav .brand-logo-img {
  filter: none; /* logo already has good contrast */
}

/* Scale down on smaller screens */
@media (max-width: 640px) {
  .brand-logo-img { height: 38px; }
  .footer-logo-img { height: 44px; }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s ease; padding: 16px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px; }
.brand-text small { font-size: 10px; letter-spacing: 0.15em; color: var(--muted); }

.nav-links { 
  display: flex; 
  align-items: center; /* <--- THIS CENTERS EVERYTHING VERTICALLY */
  gap: 32px; 
}

.nav-links a { 
  color: var(--navy); 
  text-decoration: none; 
  font-size: 14px; 
  font-weight: 500; 
  opacity: 0.8; 
  transition: opacity 0.2s; 
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover { 
  opacity: 1; 
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 15px; transition: all 0.25s ease;
  border: none; cursor: pointer;
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(37,99,235,0.4); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid rgba(10,31,68,0.2); }
.btn-ghost:hover { background: var(--navy); color: white; }

/* ---------- HERO — NEW LAYOUT ---------- */
.hero {
  padding: 130px 0 70px;
  position: relative;
}

/* Centered badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(10,31,68,0.05); border: 1px solid var(--line);
  font-size: 12px; font-weight: 500;
  margin-bottom: 40px;
}
/* Center the badge */
.hero .container { display: flex; flex-direction: column; align-items: center; }
/* But container children after badge use normal width again */
.hero > .container > .countdown { margin-top: 50px; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(245,179,1,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,179,1,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(245,179,1,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,179,1,0); }
}

/* Row: Left text + Right robot on SAME line */
.hero-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 68vh;
}

.hero-left { /* Left side: title + subtitle + buttons */ }
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-align: left;
  margin-bottom: 20px;
}
.accent {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.year { color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 28px;
  text-align: left;
  line-height: 1.7;
}
.hero-sub strong { color: var(--navy); font-weight: 600; }

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: flex-start;
}

/* Robot image on right */
.hero-right img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(10,31,68,0.25));
  animation: heroFloat 5s ease-in-out infinite;
  border-radius: 20px;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.hero-glow {
  position: absolute;
  width: 80%; height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.08); }
}

/* Full-width countdown below */
.countdown {
  width: 100%;
  margin-top: 55px;
  padding: 32px 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px -20px rgba(10,31,68,0.15);
}
@media (min-width: 700px) {
  .countdown { max-width: 780px; margin-left: auto; margin-right: auto; } /* Centered but not full bleed */
}

.cd-label {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px; font-weight: 600;
  text-align: center;
}
.cd-grid { 
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  justify-content: center; 
}
.cd-cell {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white; border-radius: 14px;
  padding: 18px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; overflow: hidden;
}
.cd-cell::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.cd-cell span {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.cd-cell small {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 500;
}
.cd-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin-top: 18px; font-size: 13px; color: var(--muted);
}
.cd-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cd-meta svg { width: 14px; height: 14px; color: var(--blue); }

/* Responsive */
@media (max-width: 900px) {
  .hero-row { 
    grid-template-columns: 1fr; 
    gap: 30px; 
    text-align: center;
  }
  .hero-left { order: 2; }
  .hero-right { order: 1; max-width: 340px; }
  .hero-title { text-align: center; font-size: 2.2rem; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-right img { max-width: 300px; }
}
@media (max-width: 500px) {
  .hero-title { font-size: 1.9rem; }
  .hero-right img { max-width: 250px; border-radius: 16px; }
  .countdown { padding: 20px; }
  .cd-grid { gap: 6px; }
  .cd-cell { padding: 14px 4px; border-radius: 10px; }
}

/* ---------- Countdown ---------- */
.countdown {
  margin: 0 0 32px;
  padding: 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 20px 60px -20px rgba(10,31,68,0.15);
}
.cd-label {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px; font-weight: 600;
}
.cd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cd-cell {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white; border-radius: 14px;
  padding: 18px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; overflow: hidden;
}
.cd-cell::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.cd-cell span {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.cd-cell small {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 500;
}
.cd-meta {
  display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 16px;
  margin-top: 18px; font-size: 13px; color: var(--muted);
}
.cd-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cd-meta svg { width: 14px; height: 14px; color: var(--blue); }

/* ---------- Unified Programme Section ---------- */
.programme-section {
  padding: 100px 0 90px;
  position: relative;
}

.day-tabs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 0 auto 60px;
  max-width: 1000px;
}

.day-tab {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.day-tab::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}
.day-tab:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), #f59e0b);
}
.day-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(10,31,68,0.2);
  border-color: rgba(37,99,235,0.2);
}

.day-tab-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(37,99,235,0.1);
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.day-tab-badge-alt {
  background: rgba(245,179,1,0.15);
  color: #b45309;
}

.day-tab-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.day-tab-info strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.day-tab-info span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.day-tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.day-tab-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.day-tab-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.day-tab:nth-child(3) .day-tab-list li::before {
  background: var(--gold);
}

.day-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 8px;
}
.day-divider span {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(10,31,68,0.15), transparent);
}
.day-divider-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -6px rgba(10,31,68,0.35);
  animation: pulse-arrow 2.5s ease-in-out infinite;
}
.day-divider-icon svg { width: 18px; height: 18px; }
@keyframes pulse-arrow {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(4px); }
}

.highlights-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--navy);
  margin: 0 auto 28px;
  max-width: 500px;
  justify-content: center;
}
.highlights-label .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,31,68,0.2), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 30px -12px rgba(10,31,68,0.08);
}
.highlight { text-align: left; }
.hl-icon {
  width: 44px; height: 44px;
  color: var(--blue);
  margin-bottom: 14px;
  padding: 10px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
}
.hl-icon svg { width: 100%; height: 100%; }
.highlight h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 8px;
}
.highlight p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 900px) {
  .day-tabs {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 16px;
  }
  .day-divider {
    flex-direction: row;
    height: 44px;
  }
  .day-divider span {
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10,31,68,0.15), transparent);
  }
  .day-divider-icon {
    transform: rotate(90deg);
    animation: pulse-arrow-vertical 2.5s ease-in-out infinite;
  }
  @keyframes pulse-arrow-vertical {
    0%,100% { transform: rotate(90deg) translateX(0); }
    50%     { transform: rotate(90deg) translateX(4px); }
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .programme-section { padding: 70px 0; }
}

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.section-head { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-desc { margin-top: 12px; color: var(--muted); font-size: 1rem; }

/* ---------- Speakers (3 per row, centered) ---------- */
.speakers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.speaker { text-align: center; transition: transform 0.35s ease; }
.speaker:hover { transform: translateY(-6px); }

.avatar {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 20px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -14px rgba(10,31,68,0.25);
}
.avatar img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; position: relative; z-index: 2;
}
.avatar img[src=""],
.avatar img.failed {
  display: none;
}
.avatar-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--navy);
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  z-index: 1;
}
.avatar-placeholder svg { width: 42%; height: 42%; opacity: 0.5; }
.avatar-placeholder small {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.speaker-name {
  margin-top: 14px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 15px;
}
.speaker-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.speaker-tag {
  display: inline-block; margin-top: 8px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.tag-prof { background: rgba(37,99,235,0.1); color: var(--blue); }
.tag-industry { background: rgba(245,179,1,0.15); color: #b45309; }

@media (max-width: 720px) {
  .speakers { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 420px) {
  .speakers { grid-template-columns: 1fr; max-width: 280px; }
}

/* ---------- Venue (designed card, no photo) ---------- */
.venue-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.venue-grid h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 700; line-height: 1.15; margin: 14px 0 18px;
}
.venue-desc { color: var(--muted); margin-bottom: 24px; }
.venue-facts { display: flex; flex-direction: column; gap: 10px; }
.venue-facts div {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: white;
  border: 1px solid var(--line); border-radius: 12px;
  font-size: 14px; font-weight: 500;
}
.venue-facts svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.venue-card {
  position: relative; aspect-ratio: 4/5;
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 60%, #2563EB 100%);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
  box-shadow: 0 20px 40px -20px rgba(10,31,68,0.4);
}
.venue-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 80%);
}
.venue-glow {
  position: absolute; top: -30%; right: -20%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,179,1,0.35), transparent 70%);
  filter: blur(10px);
  animation: float 12s ease-in-out infinite;
}

.venue-illustration {
  position: relative; z-index: 1;
  width: 100%; max-width: 340px;
  margin: 20px auto 0;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}

.venue-inner { position: relative; z-index: 1; }
.venue-tag {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.venue-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); line-height: 1;
  letter-spacing: -0.02em;
}
.venue-sub { margin-top: 10px; opacity: 0.85; font-size: 14px; }
.venue-lines { display: flex; gap: 8px; margin-top: 22px; }
.venue-lines span { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.4); }
.venue-lines span:nth-child(1) { width: 40px; background: var(--gold); }
.venue-lines span:nth-child(2) { width: 24px; }
.venue-lines span:nth-child(3) { width: 12px; }

@media (max-width: 820px) {
  .venue-grid { grid-template-columns: 1fr; gap: 32px; }
  .venue-card { aspect-ratio: auto; min-height: 480px; }
}

/* ---------- Contacts ---------- */
.contacts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: white; border: 1px solid var(--line);
  border-radius: 16px; text-decoration: none; color: var(--navy);
  transition: all 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px -12px rgba(37,99,235,0.25);
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: white;
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card small { display: block; font-size: 11px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
.contact-card strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 17px; margin-top: 2px; }

/* ---------- Invited Schools ---------- */
.schools-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.school {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.school::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.school:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 12px 24px -14px rgba(10,31,68,0.15);
}
.school:hover::before { transform: scaleY(1); }

.school-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.school strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.school small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

@media (max-width: 1000px) {
  .schools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .schools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .schools-grid { grid-template-columns: 1fr; }
  .school { padding: 16px; }
}

/* ---------- BIG APPROVAL SECTION (before footer) ---------- */
.approval-big {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.approval-big::before,
.approval-big::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.approval-big::before {
  background: rgba(22,163,74,0.15);
  top: -100px; left: -100px;
}
.approval-big::after {
  background: rgba(245,179,1,0.15);
  bottom: -100px; right: -100px;
}
.approval-big-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.approval-big-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  border: 2px solid #16a34a;
  color: #16a34a;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px -8px rgba(22,163,74,0.25);
}
.approval-big-badge svg { width: 18px; height: 18px; }

.approval-big-logo {
  width: 180px; height: 180px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  border: 4px solid white;
  box-shadow: 0 20px 50px -15px rgba(10,31,68,0.25);
  display: grid;
  place-items: center;
  padding: 12px;
  position: relative;
}
.approval-big-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
}
.approval-big-logo img[src=""],
.approval-big-logo img.failed { display: none; }
.approval-big-logo-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #14532d, #16a34a);
  color: white;
  z-index: 1;
  border-radius: 50%;
}
.approval-big-logo-fallback svg {
  width: 45%; height: 45%;
  opacity: 0.9;
}

.approval-big-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.approval-big-title span {
  color: #16a34a;
  display: block;
  margin-top: 4px;
}
.approval-big-note {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .approval-big { padding: 70px 0; }
  .approval-big-logo { width: 140px; height: 140px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: white; padding: 40px 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px;
}
.footer .brand-text span { color: white; }
.footer .brand-text small { color: rgba(255,255,255,0.6); }
.copyright { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .cd-cell { padding: 16px 4px; }
  .section { padding: 60px 0; }
  .hero { padding: 120px 0 60px; }
  .countdown { padding: 24px 16px; }
}
@media (max-width: 420px) {
  .cd-grid { gap: 8px; }
  .cd-cell { border-radius: 12px; padding: 14px 2px; }
  .brand-text { display: none; }
}






/* ============================================ */
/* SPONSORS & PARTNERS                          */
/* ============================================ */
.sponsors-section {
  padding: 6rem 0;
}

.sponsor-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

/* Individual Logo Card */
.sponsor-logo-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.8rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.sponsor-logo-card:hover {
  border-color: rgba(245, 179, 1, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.sponsor-logo-card img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.sponsor-logo-card:hover img {
  transform: scale(1.05);
}

/* Fallback */
.sponsor-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sponsor-fallback svg {
  width: 32px;
  height: 32px;
  stroke: #0a1a3f;
  opacity: 0.5;
}

.sponsor-fallback span {
  font-size: 0.72rem;
  color: #0a1a3f;
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 130px;
  line-height: 1.4;
}

.zolakaz-brand{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #f59e0b, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zolakaz-brand:hover{
  scale: 1.05;
  transition: all 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
  .sponsor-logos-grid {
    gap: 1rem;
  }

  .sponsor-logo-card {
    min-width: 140px;
    min-height: 100px;
    padding: 1.4rem 1.6rem;
  }

  .sponsor-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sponsor-logos-grid {
    flex-direction: column;
    align-items: center;
  }

  .sponsor-logo-card {
    width: 100%;
    max-width: 260px;
    min-width: unset;
  }
}






/* ============================================ */
/* ABOUT US SECTION                             */
/* ============================================ */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px -15px rgba(10, 31, 68, 0.06);
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.about-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-icon-gold {
  background: rgba(245, 179, 1, 0.15);
  color: #b45309;
}

.about-icon svg {
  width: 22px;
  height: 22px;
}

.about-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.about-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Programmes card takes full row */
.about-programmes-card {
  grid-column: 1 / -1;
}

.about-programmes-card .programmes-intro {
  margin-bottom: 20px;
}

.about-programmes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-programmes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(10, 31, 68, 0.02);
  border: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.about-programmes-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.about-programmes-list li:nth-child(even)::before {
  background: var(--gold);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-programmes-list {
    grid-template-columns: 1fr;
  }
}














/* ============================================ */
/* REGISTRATION PAGE STYLES                     */
/* ============================================ */
.register-body {
  background: #fafbff;
  min-height: 100vh;
}

.register-main {
  padding: 120px 0 80px;
}

.register-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.register-header {
  text-align: center;
  margin-bottom: 36px;
}

.register-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 12px;
}

.register-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

.register-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px -20px rgba(10, 31, 68, 0.12);
}

.form-section {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-section-title h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.form-group label .req {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(10, 31, 68, 0.15);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  color: var(--navy);
  background: white;
  transition: all 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.student-card {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}

.student-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.student-card-header strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  font-size: 15px;
}

.badge-primary {
  padding: 3px 10px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-remove-stu {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
}

.student-actions {
  margin-top: 12px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-submit-area {
  margin-top: 30px;
  text-align: center;
}

.submit-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* Success Card */
.success-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(10, 31, 68, 0.12);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.success-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-msg {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 15px;
}

.success-details {
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 20px;
  max-width: 480px;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .register-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
}







/* Fix Navbar Button Text Visibility */
.nav-links a.btn,
.nav-inner a.btn-primary {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1; /* Keeps button height balanced */
}

.nav-links a.btn:hover {
  background: var(--blue);
  color: #ffffff !important;
}





/* ============================================ */
/* MOBILE HAMBURGER MENU                        */
/* ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X when open */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 24px;
  box-shadow: 0 20px 40px -10px rgba(10,31,68,0.12);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 14px 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a.btn {
  margin-top: 12px;
  text-align: center;
  color: #fff !important;
  border-bottom: none;
  padding: 14px 28px;
}

/* Show hamburger + hide desktop nav on mobile */
@media (max-width: 820px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
}