@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Sen:wght@400..800&display=swap");
body {
  font-family: "Sen", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  max-width: 100vw;
}
.participants {
  background: linear-gradient(59.34deg, #ffffff 37.78%, #e0f0cc 84.46%);
}
.top-badge {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
h1,
h2 {
  font-family: "Play", sans-serif;
}
@media (max-width: 425px) {
  .heading-text {
    line-height: 2rem;
  }
}
@media (min-width: 425px) and (max-width: 485px) {
  .heading-text {
    line-height: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .heading-text {
    line-height: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .heading-text {
    line-height: 4.5rem !important;
  }
}

/* Navbar & Mobile Menu */
#mobile-menu {
  display: none;
  overflow-x: hidden;
}

#modalbg.flex {
  display: flex;
}
nav {
  position: fixed;
  max-width: 100vw !important;
  background-color: #20202033 !important; /* 20% black */
}
/* Hero Container */
.hero-container {
  height: 120vh;
  overflow: hidden;
}
/* ✅ Video Fill & Overlay Styling */
#background-video-desktop,
#background-video-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-container {
    height: 85vh;
  }
}
@media (max-width: 1025px) {
  .hero-container {
    height: 100vh;
  }
}
/* Custom breakpoint for 425px */
@media (max-width: 426px) {
  #background-video-desktop {
    display: none !important;
  }
  #background-video-mobile {
    display: block !important;
  }
}

@media (min-width: 426px) {
  #background-video-desktop {
    display: block !important;
  }
  #background-video-mobile {
    display: none !important;
  }
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* ✅ Keep banner video visible on all devices, reposition for mobile */

.div-1 {
  margin-top: 4rem !important;
}
/* Ensure hero text stays centered */
.hero-container .absolute {
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
/* Hero section alignment adjustments */
.hero-container .absolute {
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.hero-container h1 span {
  color: #f0f0f0;
}

.hero-container button {
  letter-spacing: 0.08em;
}

/* Metric boxes responsive spacing */
@media (max-width: 768px) {
  .hero-container .flex-wrap > div {
    min-width: 130px;
  }
}

/* Small screen text sizing adjustments */
@media (max-width: 425px) {
  /* Hero section */
  .hero-container h1 {
    font-size: 1.75rem !important;
    line-height: 2.5rem !important;
  }

  .hero-container .text-sm,
  .hero-container .text-base {
    font-size: 0.75rem !important;
  }

  .hero-container button {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
  }

  .eventStats h3 {
    font-size: 1.5rem !important;
  }
  .eventStats p {
    font-size: 0.75rem !important;
  }

  /* General headings */
  h2.text-3xl,
  h2 {
    font-size: 1.5rem !important;
  }

  h3.text-2xl,
  h3 {
    font-size: 1.25rem !important;
  }

  /* Paragraphs and body text */
  p {
    font-size: 0.875rem !important;
  }

  /* Buttons */
  button,
  .btn {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
  }
}

@media (max-width: 375px) {
  .hero-container h1 {
    font-size: 1.5rem !important;
    line-height: 2.25rem !important;
  }

  h2 {
    font-size: 1.375rem !important;
  }

  p {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 320px) {
  .hero-container h1 {
    font-size: 1.25rem !important;
    line-height: 2rem !important;
  }

  h2 {
    font-size: 1.25rem !important;
  }

  p {
    font-size: 0.75rem !important;
  }

  .eventStats h3 {
    font-size: 1.25rem !important;
  }

  .eventStats p {
    font-size: 0.7rem !important;
  }
}

.clr {
  color: #66b600 !important;
}
.gradient-divider {
  background: linear-gradient(to right, #4a4a4a, #f5f5f5, #4a4a4a);
}
.eventStats,
.gradient-text {
  background: linear-gradient(to right, #4a4a4a, #f5f5f5, #4a4a4a);
  -webkit-background-clip: text; /* Clips gradient to text shape */
  -webkit-text-fill-color: transparent; /* Makes actual text transparent */
  background-clip: text; /* For browsers supporting standard property */
  color: transparent; /* Fallback */
}
.eventStats {
  backdrop-filter: blur(5px);
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
}
.regBtn2:hover {
  border: 1px solid white !important;
}

.top-badge {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 375px) {
  .top-badge {
    display: flex !important;
    width: fit-content;
    justify-content: center !important;
  }
}
/* ✅ Properly responsive container – fixes x-axis overflow root cause */
.container {
  width: 90% !important;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
}

/* Below 375px – keep it fluid */
@media (min-width: 375px) {
  .container {
    width: 320px;
  }
}

@media (min-width: 425px) {
  .container {
    width: 375px;
  }
}

@media (min-width: 640px) {
  .container {
    width: 425px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 640px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1024px;
  }
}

@media (min-width: 1440px) {
  .container {
    width: 1200px;
  }
}

@media (min-width: 2560px) {
  .container {
    width: 1440px;
  }
} /* ---------- PAGE 1.5 : EVENT STATS SECTION (Bright Text Fix) ---------- */
#event-stats {
  background-color: #0f1011;
  color: #fff;
  text-align: center;
}

#event-stats .eventStats {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

#event-stats .eventStats:hover {
  background: rgba(102, 182, 0, 0.15);
  transform: translateY(-6px);
}

/* ✅ Text colors fixed */
#event-stats h3 {
  font-family: "Play", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #66b600; /* bright green accent */
  margin-bottom: 0.25rem;
}

#event-stats p {
  font-family: "Sen", sans-serif;
  font-size: 1rem;
  color: #ffffff; /* bright white text for visibility */
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  #event-stats .eventStats {
    padding: 1rem 1.25rem;
  }

  #event-stats h3 {
    font-size: 1.5rem;
  }

  #event-stats p {
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {
  #event-stats .eventStats {
    flex: 1 1 45%;
    margin-bottom: 1rem;
  }
}

/* ---------- PAGE 2 STYLES ---------- */

/* Bullets (PNG cross-fade) */
.about-bullet .bolt-fill {
  transition: opacity 500ms ease;
}
.about-bullet.active .bolt-fill {
  opacity: 1;
}
.about-bullet .bullet-text {
  transition: color 300ms ease;
}
.about-bullet.active .bullet-text {
  color: #66b600;
}

/* Carousel dots */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #bdbdbd;
  border: none;
  outline: none;
  transition: all 200ms ease;
}
.carousel-dot.active {
  width: 22px;
  background: #66b600;
}

/* CII Cards (matches your Figma) */
.cii-card {
  background: #20202033; /* 20% black */
  box-shadow: 0px 16px 37.8px -22px #99999942;
  backdrop-filter: blur(6.1px);
  -webkit-backdrop-filter: blur(6.1px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cii-card-flex {
  display: flex;
  justify-content: space-between;
}

/* Prevent any sneaky overflow from page-2 */
.about-section img,
#aboutSlide {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.about-section .about-carousel img {
  height: 60vh;
}
.about-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.about-carousel {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.about-carousel img:first-child {
  opacity: 1;
}
/* ---------- PAGE 3 STYLES ---------- */
.highlight-card {
  background-size: cover;
  background-position: center;
  min-height: 380px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0) 10%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.card-content {
  z-index: 2;
  position: relative;
}
/* ===========================
   PAGE 4 – EXHIBITORS SECTION
   =========================== */
/* ---------- PAGE 4 FIX: EXHIBITORS SECTION ALIGNMENT ---------- */

/* Base Card */
.exhibitor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: transparent;
  transition: all 0.3s ease;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin: 0;
}

.exhibitor-card img {
  transform: rotate(-45deg);
  width: 60%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.exhibitor-card:hover {
  background: #ffffff;
  border-color: #66b600;
  box-shadow: 0 15px 30px rgba(102, 182, 0, 0.25);
  z-index: 2;
}

.exhibitor-card:hover img {
  filter: grayscale(0) brightness(1.1);
  transform: rotate(-45deg) scale(1.05);
}

/* Layout Wrapper */
.exhibitor-grid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

.exhibitor-row {
  display: grid;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* 🖥 Desktop (≥1024px) */
@media (min-width: 1024px) {
  .exhibitor-card {
    width: 140px;
    height: 140px;
  }

  .exhibitor-row:nth-child(1),
  .exhibitor-row:nth-child(3) {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
  }

  .exhibitor-row:nth-child(2),
  .exhibitor-row:nth-child(4) {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 40px;
  }
}

/* 💻 Tablet (768px – 1023px) */
@media (min-width: 767px) {
  .exhibitor-card {
    width: 120px;
    height: 120px;
  }

  .exhibitor-card img {
    width: 65%;
  }

  .exhibitor-row:nth-child(1),
  .exhibitor-row:nth-child(3) {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
  }

  .exhibitor-row:nth-child(2),
  .exhibitor-row:nth-child(4) {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
  }
}

/* 📱 Mobile (<768px) — unchanged */
@media (max-width: 767px) {
  .exhibitor-card {
    width: 100px;
    height: 100px;
  }

  .exhibitor-card img {
    width: 60%;
  }

  .exhibitor-row {
    display: grid;
    gap: 10px;
    margin-top: -20px;
    margin-bottom: -20px;
    transform: none !important;
  }

  .exhibitor-row:nth-child(1),
  .exhibitor-row:nth-child(3) {
    grid-template-columns: repeat(3, 1fr);
    width: 300px;
    margin: 0 auto;
  }

  .exhibitor-row:nth-child(2),
  .exhibitor-row:nth-child(4) {
    grid-template-columns: repeat(2, 1fr);
    width: 200px;
    margin: 0 auto;
  }

  .exhibitor-grid-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
/* 📱 Extra Small Mobile (≤375px) — Reduce element sizes further */
@media (max-width: 375px) {
  .exhibitor-card {
    width: 70px; /* smaller diamond size */
    height: 70px;
    border-radius: 12px;
  }

  .exhibitor-card img {
    width: 50%; /* image scales inside diamond */
  }

  /* 3-card rows */
  .exhibitor-row:nth-child(1),
  .exhibitor-row:nth-child(3) {
    grid-template-columns: repeat(3, 1fr);
    width: 200px; /* tighter width for 3 cards */
    gap: 8px;
  }

  /* 2-card rows */
  .exhibitor-row:nth-child(2),
  .exhibitor-row:nth-child(4) {
    grid-template-columns: repeat(2, 1fr);
    width: 140px; /* tighter width for 2 cards */
    gap: 8px;
  }

  .exhibitor-grid-wrapper {
    gap: 2rem; /* less vertical spacing */
  }
}
/* ✅ Exhibitor Grid: 5 Cards × 2 Rows for ≥768px */
@media (min-width: 926px) {
  .exhibitor-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 55px;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  .exhibitor-card {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
  }

  .exhibitor-card img {
    width: 65%;
  }

  /* Remove old row styling to prevent spacing conflicts */
  .exhibitor-row {
    display: contents;
  }
}

/* ================================
   SESSIONS SECTION – CLEAN VERSION
   ================================ */

#sessions {
  background: #111;
  color: #fff;
  padding: 6rem 1rem;
  position: relative;
}

/* ---- CARD LAYOUT ---- */
.session-card {
  display: flex;
  height: 380px;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 60px; /* extra space for swiper arrows */
  border-bottom: 1.5px solid #66b600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.session-image-container {
  width: 45%;
  overflow: hidden;
  order: 2; /* image on right */
}

.session-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.session-card:hover .session-img {
  transform: scale(1.05);
}

.session-content {
  width: 55%;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* ---- TITLE ---- */
.session-title {
  font-family: "Play";
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1rem;
}

/* ---- META ---- */
.session-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.session-location {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #66b600;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
}

.session-location i {
  color: #66b600;
}

/* ✅ smaller time text */
.session-time {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
}

/* ---- BULLET POINTS ---- */
.session-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.session-points li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #dcdcdc;
}

.session-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("./assets/img/bolt-fill.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-pagination-bullet {
  background-color: #fff !important;
}
/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .session-card {
    height: 380px;
  }
  .session-title {
    font-size: 32px;
  }
  .session-content {
    padding: 2rem 1rem;
  }
  .session-points li {
    font-size: 14px;
  }
  .session-time {
    font-size: 11px;
  }
}

/* ---- Tablet & Mobile Stack (≤767px) ---- */
@media (max-width: 767px) {
  .session-card {
    flex-direction: column;
    height: 560px;
    min-height: 560px;
  }

  .session-image-container {
    width: 100%;
    height: 34%;
    min-height: 180px;
    order: 1;
  }

  .session-content {
    width: 100%;
    height: 76%;
    padding: 1.75rem;
    order: 2;
  }

  .session-title {
    font-size: 26px;
  }

  .session-meta {
    gap: 0.75rem;
  }

  .session-location,
  .session-time {
    font-size: 10px;
  }

  .session-points li {
    font-size: 14px;
    padding-left: 26px;
  }

  .session-points li::before {
    width: 16px;
    height: 16px;
    top: 6px;
  }

  /* swiper buttons adjust */
  .swiper-button-prev {
    left: calc(50% - 55px) !important;
  }
  .swiper-button-next {
    right: calc(50% - 55px) !important;
  }
}

/* ---- Small Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .session-card {
    height: 520px;
  }
  .session-title {
    font-size: 24px;
  }
  .session-location,
  .session-time {
    font-size: 9px;
  }
  .session-points li {
    font-size: 15px;
    padding-left: 24px;
  }

  .swiper-button-prev {
    left: calc(50% - 50px) !important;
  }
  .swiper-button-next {
    right: calc(50% - 50px) !important;
  }
}

/* ---- Extra Small (≤375px) ---- */
@media (max-width: 375px) {
  .session-card {
    height: 600px;
  }
  .session-title {
    font-size: 22px;
  }
  .session-points li {
    font-size: 14px;
    padding-left: 22px;
  }
  .session-points li::before {
    width: 14px;
    height: 14px;
  }
}

/* ---- Ultra Small (≤320px) ---- */
@media (max-width: 320px) {
  .session-card {
    height: 500px;
  }
  .session-title {
    font-size: 20px;
  }
  .session-points li {
    font-size: 13px;
  }
  .session-time {
    font-size: 8px;
  }
}
/* ---------- PAGE 6 : BE A PART OF CHANGE ---------- */
/* ✅ PAGE 7 BACKGROUND SWITCH FOR RESPONSIVE VIEWPORTS */
/* =========================================
  PAGE 7 :  CHANGE SECTION (BACKGROUND APPLIED HERE)
/* DESKTOP + TABLET (≥768px) */
#change {
  height: 100vh;
  color: white;
  padding: 4rem 1rem 2rem;

  background: linear-gradient(
      180deg,
      rgba(16, 16, 16, 0.97) 22.32%,
      rgba(16, 16, 16, 0) 100%
    ),
    url("./assets/img/page-7-web.JPG");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-start;
}

/* MOBILE (<768px) */
@media (max-width: 768px) {
  #change {
    height: 160vh;
    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, 0.97) 22.32%,
        rgba(16, 16, 16, 0) 100%
      ),
      url("./assets/img/page-7-mobile.JPG");
    background-position-x: center;
    background-position-y: bottom;
    background-size: cover;
  }
} /* =========================================
   STAT CARDS (Responsive Scaling)
   ========================================= */
.stats-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  flex-wrap: nowrap;
}

.stat-card {
  background: rgba(30, 30, 30, 0.85);
  padding: clamp(0.6rem, 1.5vw, 1rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: 1rem;

  /* Responsive width: shrinks on smaller screens */
  width: clamp(120px, 22vw, 220px);

  text-align: center;
  transition: 0.25s ease;
}

.stat-card h3 {
  /* Title scales responsively */
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: bold;
}

.stat-card p {
  /* Description text scales smoothly */
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  color: #dcdcdc;
  line-height: 1.4;
}
.change-section h3 {
  background: linear-gradient(to right, #4a4a4a, #f5f5f5, #4a4a4a);
  -webkit-background-clip: text; /* Clips gradient to text shape */
  -webkit-text-fill-color: transparent; /* Makes actual text transparent */
  background-clip: text; /* For browsers supporting standard property */
  color: transparent; /* Fallback */
}
/* Hover Glow Effect (unchanged) */
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 10px rgba(102, 182, 0, 0.4),
    1.5px 1.5px 8px rgba(102, 182, 0, 0.25),
    -1.5px 1.5px 8px rgba(102, 182, 0, 0.25),
    0 -0.5px 6px rgba(102, 182, 0, 0.15);
}

/* =========================================
   MOBILE (<768px)
   ========================================= */
@media (max-width: 768px) {
  .change-section {
    height: 160vh;
    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, 0.97) 22.32%,
        rgba(16, 16, 16, 0) 100%
      ),
      url("./assets/img/page-7-mobile.JPG");
    background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    padding: 3rem 1rem;
  }
  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .stat-card {
    width: 100%;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .stat-card h3 {
    font-size: 1.6rem;
  }

  .stat-card p {
    font-size: 0.9rem;
  }
}

/* ✅ Responsive Participants Section */
.participants-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  text-align: center;
}

/* Each participant item */
.participants-grid > div {
  flex: 1 1 20%;
  text-align: center;
}

/* When screen width ≤768px → 2 rows × 2 columns */
@media (max-width: 768px) {
  .participants-grid {
    justify-content: center;
    gap: 1.5rem 2rem;
  }

  .participants-grid > div {
    flex: 1 1 40%; /* Two per row */
    max-width: 45%;
  }

  .participants img {
    height: 65px !important;
    width: auto !important;
  }
}

/* When screen width ≤425px → adjust spacing and image sizes */
@media (max-width: 425px) {
  .participants-grid {
    gap: 1rem 1.5rem;
  }

  .participants-grid > div {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .participants-grid img {
    height: 55px !important;
    width: auto !important;
  }

  .participants-grid p {
    font-size: 0.85rem;
  }
}
.participants-grid div {
  text-align: -webkit-center;
}
/* ========== PAGE 8 : FOOTER SECTION ========== */
footer {
  height: auto;
  background-color: #0e0e0e;
  text-align: center;
  color: white;
}

footer .container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

footer form input,
footer form button {
  height: 40px; /* ✅ Requested fixed height */
  border: none;
}

footer form input:focus {
  outline: none;
}

footer ul li a {
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #66b600;
}

footer i {
  transition: color 0.3s ease;
}
/* ---------- EVENT ROAD MAP SECTION ---------- */
#event-roadmap {
  background: #fff;
  padding: 6rem 1rem;
  text-align: center;
}

#event-roadmap h2 {
  font-family: "Play", sans-serif;
  font-weight: 700;
  color: #111;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

#event-roadmap span {
  color: #66b600;
}

.map-container iframe,
.map-image-container img {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  width: 100%;
}

@media (max-width: 768px) {
  #event-roadmap h2 {
    font-size: 1.6rem;
  }

  .map-container iframe,
  .map-image-container img {
    border-radius: 12px;
  }
}
