/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: #05070f;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
}

/* SCROLL PROGRESS */
#scrollProgress {
  position: fixed;
  right: 8px;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #4cc9f0, #9bbcff);
  z-index: 4000;
  border-radius: 4px;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  padding-top: env(safe-area-inset-top);
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
}

/* MINIMAL MENU */
.nav-menu {
  display: flex;
  gap: 22px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.nav-menu a {
  color: #cfd6ff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
  position: relative;
}

/* subtle underline on hover */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4cc9f0;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}


/* HERO */
.hero {
  padding: 140px 20px 50px;
  background: radial-gradient(circle at top, #0b1220 0%, #05070f 65%);
}

.hero-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #4cc9f0;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-title span {
  color: #4cc9f0;
}

.hero-sub {
  margin-top: 18px;
  font-size: 16px;
  color: #b9c2ff;
}

.hero-divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #4cc9f0, transparent);
  margin: 36px auto;
}

.hero-desc {
  max-width: 620px;
  margin: auto;
  font-size: 15px;
  color: #d3d8ff;
  line-height: 1.7;
}

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 120px 18px 80px;
  }

  .hero-title {
    font-size: 3.6rem;
  }



/* ================================
   EVENT ROADMAP – PREMIUM STYLING
================================ */

.roadmap {
  padding: 140px 50px;
  background: linear-gradient(
    to bottom,
    #05070f 0%,
    #070b18 60%,
    #05070f 100%
  );
}

.roadmap-inner {
  max-width: 1000px;
  margin: auto;
}

/* TITLE */
.roadmap-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.roadmap-intro {
  text-align: center;
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 15px;
  color: #b9c2ff;
  line-height: 1.6;
}

/* STEP CONTAINER */
.roadmap-step {
  margin-top: 90px;
  padding-left: 30px;
  border-left: 2px solid rgba(76, 201, 240, 0.25);
  position: relative;
}

/* STEP DOT */
.roadmap-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 10px;
  width: 14px;
  height: 14px;
  background: #4cc9f0;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(76, 201, 240, 0.6);
}

/* HEADER */
.step-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-day {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4cc9f0;
}

.step-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.step-date {
  font-size: 13px;
  color: #9bbcff;
  margin-left: auto;
}

/* BODY */
.step-body p {
  font-size: 15px;
  color: #d3d8ff;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* IMPORTANT NOTE */
.important-note {
  background: rgba(76, 201, 240, 0.08);
  border-left: 3px solid #4cc9f0;
  padding: 12px 14px;
  font-size: 14px;
  color: #e4e9ff;
  margin: 18px 0;
}

/* HELPFUL BOX */
.help-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  margin: 22px 0;
}

.help-box h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #4cc9f0;
}

.help-box ul {
  padding-left: 18px;
}

.help-box li {
  font-size: 14px;
  color: #cfd6ff;
  margin-bottom: 8px;
}

/* TIMELINE POINTS */
.timeline-points {
  margin: 16px 0 20px;
  padding-left: 20px;
}

.timeline-points li {
  font-size: 14px;
  color: #cfd6ff;
  margin-bottom: 6px;
}

/* GLIMPSE SECTION */
.glimpse-box {
  margin-top: 30px;
}

.glimpse-box h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #9bbcff;
}

.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.glimpse-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* MAP */
.map-box {
  margin-top: 26px;
}

.map-box h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #9bbcff;
}

.map-placeholder {
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(76, 201, 240, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #e6ebff;
  border: 1px dashed rgba(255,255,255,0.2);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .roadmap {
    padding: 100px 40px;
  }

  .roadmap-step {
    padding-left: 20px;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-date {
    margin-left: 0;
  }

  .glimpse-grid {
    grid-template-columns: 1fr;
  }

  .glimpse-grid img {
    height: 200px;
  }
}

/* ================================
   CONTACT & SUPPORT – STYLING
================================ */

.support {
  padding: 140px 20px;
  background: linear-gradient(
    to bottom,
    #05070f 0%,
    #070b18 60%,
    #05070f 100%
  );
}

.support-inner {
  max-width: 1100px;
  margin: auto;
}

.support-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.support-intro {
  text-align: center;
  max-width: 720px;
  margin: 14px auto 70px;
  font-size: 15px;
  color: #b9c2ff;
  line-height: 1.6;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */
.support-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 22px 30px;
  text-align: center;
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.support-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.support-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(76, 201, 240, 0.6);
  margin-bottom: 14px;
}

.support-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.support-card .role {
  font-size: 13px;
  color: #9bbcff;
  margin-bottom: 14px;
}

.contact-link {
  display: inline-block;
  font-size: 14px;
  color: #4cc9f0;
  text-decoration: none;
  border: 1px solid rgba(76, 201, 240, 0.4);
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(76, 201, 240, 0.15);
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .support {
    padding: 100px 40px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .support-card {
    padding: 24px 20px 28px;
  }

  .support-card img {
    width: 88px;
    height: 88px;
  }

  .contact-link {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: #05070f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  height: 46px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #b9c2ff;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links h4,
.footer-info h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #9bbcff;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #4cc9f0;
}

.footer-info p {
  font-size: 14px;
  color: #9bbcff;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: #9bbcff;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 16px;
    padding: 6px 14px;
  }

  .nav-menu a {
    font-size: 12px;
  }
}

/* ================================
   HERO ENHANCEMENT (CTA + MOTION)
================================ */

.hero {
  position: relative;
  overflow: hidden;
}

/* soft animated glow */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(76,201,240,0.18),
    transparent 60%
  );
  animation: heroGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* CTA buttons */
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* primary */
.hero-btn.primary {
  background: #4cc9f0;
  color: #05070f;
  font-weight: 600;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76,201,240,0.35);
}

/* ghost */
.hero-btn.ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
}

.hero-btn.ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* mobile polish */
@media (max-width: 768px) {
  .hero-actions {
    margin-top: 28px;
  }

  .hero-btn {
    font-size: 13px;
    padding: 11px 22px;
  }
}

/* ================================
   SOCIAL MEDIA SIDEBAR (GOOGLE ICONS)
================================ */

.social-sidebar {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.social-sidebar a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6ff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-sidebar a i {
  font-size: 18px;
}


.social-sidebar a:hover {
  background: rgba(76,201,240,0.25);
  color: #4cc9f0;
  transform: translateX(4px);
}

/* hide on very small screens */
@media (max-width: 520px) {
  .social-sidebar {
    display: none;
  }
}

/* ================================
   HERO ENHANCEMENT
================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(76,201,240,0.18),
    transparent 60%
  );
  animation: heroGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Scroll hint */
.hero::after {
  content: "Scroll ↓";
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  color: #9bbcff;
  opacity: 0.7;
}

/* ================================
   FOOTER SOCIAL ICONS
================================ */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
margin-bottom: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a i {
  font-size: 16px;
}

.footer-social a:hover {
  background: rgba(76,201,240,0.25);
  color: #4cc9f0;
  transform: translateY(-2px);
}

/* CENTER ON MOBILE */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

/* ================================
   NEWS & GLIMPSES PAGE
================================ */

.news-header {
  padding: 140px 20px 70px;
  text-align: center;
}

.news-header-inner {
  max-width: 820px;
  margin: auto;
}

.news-header h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.news-header p {
  color: #b9c2ff;
  font-size: 15px;
}

/* FILTERS */
.news-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 30px 20px 50px;
}

.filter-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.filter-btn.active {
  background: #4cc9f0;
  color: #05070f;
}

/* FEED */
.news-feed {
  max-width: 900px;
  margin: auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.news-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-badge {
  font-size: 11px;
  color: #4cc9f0;
  font-weight: 600;
}

.news-date {
  display: block;
  font-size: 12px;
  color: #9bbcff;
  margin: 6px 0 12px;
}

.news-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:10px;
}

.news-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* BACK BUTTON */
.back-to-event {
  text-align: center;
  margin-bottom: 80px;
}

.back-to-event a {
  color: #4cc9f0;
  text-decoration: none;
  font-size: 14px;
}
/* WHATSAPP MEDIA SUBMIT BOX */

.media-submit{
    padding:70px 20px;
    background:#0f172a;
    text-align:center;
    margin-bottom:60px; /* Added space below the box before footer */
}

.media-submit-inner{
    max-width:750px;
    margin:auto;
}

.media-submit h2{
    color:#ffffff;
    font-size:30px;
    margin-bottom:15px;
}

.media-text{
    color:#cbd5e1;
    font-size:17px;
    margin-bottom:30px;
    line-height:1.6;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:20px 40px; /* Increased padding for a bigger button */
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    font-size:17px;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}