@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kanit:400,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #060327;
  --secondary-color: #FF0082;
  --third-color: #0800E3;
  --blue-color: #20a4fc;
  --gold-color: #FFBC01;
  --white-color: #ffffff;
  --card-color: #0A0640;
  --card-dark: #060327;
  --raleway-font: 'Raleway', sans-serif;
  --kanit-font: 'Kanit', sans-serif;
  --global-width: 87vw;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

h4, h3, h2, h1, .wcj-why-head {
  font-family: var(--kanit-font);
}

.blue{
  color: var(--blue-color) !important;
}

.magenta{
  color: var(--secondary-color) !important;
}

/* ===== Header & Navigation ===== */
header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--global-width);
  max-width: var(--global-width);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1vw;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  border: 1.7px solid rgba(255, 255, 255, 0.19);
  box-shadow: 0 6px 18px 0 rgba(7, 8, 35, 0.14);
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: var(--white-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
}

.nav-links li a:hover {
  color: var(--secondary-color);
  transform: scale(1.08);
}

.btn-free-trial {
  background: linear-gradient(90deg, var(--secondary-color), var(--third-color));
  color: var(--white-color);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.btn-free-trial:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 6, 139, 0.4);
}

/* ===== Hero Section ===== */
.event-info {
  margin-bottom: 25px;
  background: rgba(34,34,34,0.35);
  display: inline-block;
  padding: 12px 20px !important;
  border-radius: 24px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.event-info img {
  width:18px; height:18px; vertical-align:middle; margin-right:8px;
  margin-bottom: 4px;
}
.hero h1 .blue { color: var(--blue-color); font-weight: 800; }
.hero h1 .white { color: var(--white-color); font-weight: 800; }
.hero h1 .magenta { color: var(--secondary-color); font-weight: 800; }
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; font-family: var(--kanit-font); }
.hero {
  color: var(--white-color);
  text-align: center;
  padding: 150px 6.5% 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-color); /* Fallback */
  justify-content: center;
}

/* Parallax background image */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/header-bg.png') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* Fixed gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* Content above everything */
.hero > * {
  position: relative;
  z-index: 3;
}

/* Disable parallax on mobile */
@media (max-width: 768px) {
  .hero::before {
    background-attachment: scroll;
  }
}

.hero-content {
  width: 90vw;       
  max-width: 1120px; 
  margin: 0 auto;   
  position: relative;
  z-index: 3;
  padding-left: 24px;
  padding-right: 24px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero .tagline {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-host-box {
  border: 1.5px solid var(--white-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white-color);
  margin: 34px auto 25px auto;
  max-width: 470px;
  box-sizing: border-box;
  gap: 18px;
}
.host-separator {
  font-size:1.6em; font-weight:400;
}
.hero-challenge-text {
  font-size: 1.2rem;
  margin: 12px auto 30px auto;
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.highlight-blue { color: var(--blue-color); }
.highlight-pink { color: var(--secondary-color); }

.hero-buttons {
  display: flex;
  gap: 35px;
  justify-content: center;
  margin-top: 14px;
}

.btn-arrow {
  margin-left: 10px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.btn-filled:hover .btn-arrow,
.btn-outline-border:hover .btn-arrow,
.sponsor-interest-btn:hover .btn-arrow,
.venue-btn:hover .btn-arrow,
.race-card-btn:hover .btn-arrow,
.btn-outline:hover .btn-arrow {
  transform: translateX(7px) scale(1.07);
}

.btn-outline-border{
  border: 1px solid var(--white-color);
  padding: 12px 40px;
  border-radius: 5px;
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  transition: transform 0.2s;
  transition: all 0.3s ease;
}

.btn-outline-border:hover{
  background: #f6068b24;
  box-shadow: 0 4px 24px #f6068b44;
  border-color: #F6068B;
}

.btn-outline {
  border: 2px solid transparent;
  background: linear-gradient(var(--primary-color), var(--primary-color)) padding-box,
              linear-gradient(90deg, var(--secondary-color), var(--third-color)) border-box;
  padding: 12px 40px;
  border-radius: 5px;
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  color: var(--white-color);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 6, 139, 0.4);
}

.btn-filled {
  background: linear-gradient(90deg, var(--secondary-color), var(--third-color));
  color: var(--white-color);
  padding: 12px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  display: inline-block;
}

@media (max-width: 767px) {
  .navbar {
    top: 15px;
  }
}

.background-orb {
  position: absolute;
  left: -140px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #0800E3, #F6068B 100%, transparent 100%);
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ===== Event Countdown ===== */
.event-countdown-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 80px auto 0 auto;
  border-radius: 20px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.event-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  padding: 0 100px;
  margin-top: 38px;
  margin-bottom: 70px;
}

.event-tag {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 8px;
}

.tag-dot {
  height: 10px;
  width: 10px;
  background: #F6068B;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 12px 0 #F6068B, 0 0 22px 5px #F6068B77;
}

.event-countdown-bg {
  position: relative;
  border-radius: 20px;
  min-height: 600px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.24);
}

.event-countdown-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/bg-sports.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25; /* 25% opacity of image only */
  z-index: 1;
}

.event-countdown-bg > * {
  position: relative;
  z-index: 2;
}

.event-countdown-heading {
  color: #fff;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: 1.6px;
  margin-top: 40px;
  margin-bottom: 42px;
}

.countdown-timer-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 0; /* No margin below, labels right below */
}

.timer-box-gradient {
  background: linear-gradient(to bottom, #F6068B 13%, #273cf7 87%);
  border-radius: 10px;
  padding: 3.5px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 34px 5px #f6068b30;
}

.timer-box {
  background: #1B103F;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer-value {
  font-size: 3.7rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.12;
}

.timer-label-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  margin-top: 7px;
  margin-bottom: 28px;
}

.timer-label {
  width: 150px;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  font-family: 'Kanit', Arial, sans-serif;
  letter-spacing: 1px;
}

.event-date-info {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  opacity: 0.94;
  margin-bottom: 30px;
  letter-spacing: .3px;
}

.countdown-btn-wrap {
  display: flex;
  justify-content: center;
}

.countdown-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 15px 36px;
  background: transparent;
  transition: background 0.23s, border-color 0.23s, box-shadow 0.23s;
  box-shadow: 0 2px 16px 0 #273cf744;
  text-decoration: none;
}

.countdown-cta-btn .btn-arrow {
  margin-left: 13px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px #273cf7bb);
  transition: transform 0.18s;
}
.countdown-cta-btn:hover .btn-arrow {
  transform: translateX(7px) scale(1.07);
}

.countdown-cta-btn:hover {
  background: #f6068b24;
  box-shadow: 0 4px 24px #f6068b44;
  border-color: #F6068B;
}

@media (max-width: 950px) {
  .event-countdown-section,
  .event-countdown-bg {
    width: var(--global-width);
    max-width: var(--global-width);
    border-radius: 12px;
    min-height: 330px;
    padding: 0;
  }
  .event-tag-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 0 18px 0;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .event-tag {
    font-size: 1rem;
    justify-content: start;
  }
  .event-countdown-heading { font-size: 1.4rem; margin-top: 16px; margin-bottom: 20px; }
  .countdown-timer-row, .timer-label-row { gap: 2vw; }
  .timer-box-gradient { width: 62px; height: 62px; }
  .timer-label { width: 62px; height: 30px; }
  .timer-value { font-size: 1.1rem; }
  .timer-label { font-size: 0.6rem; }
  .event-date-info { font-size: 0.7rem; }
  .countdown-cta-btn { font-size: 0.92rem; padding: 9px 13px; }
}

/* ===== About Section ===== */
.about-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding-top: 65px;
  padding-bottom: 34px;
  position: relative;
}

.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 44px;
  flex-wrap: wrap;
}
.about-left {
  flex: 1;
  min-width: 250px;
  max-width: 70%;
}
.about-right {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo {
  width: 290px;
  max-width: 92vw;
  height: auto;
  filter: drop-shadow(0 5px 20px #F6068B33);
}

.about-main-heading {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  margin-left: 5px;
}
.about-event-heading {
  font-size: 3.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: 2px;
}
.about-event-heading .blue { color: var(--blue-color); font-weight: 800; }
.about-event-heading .white { color: var(--white-color); font-weight: 800; }
.about-event-heading .magenta { color: var(--secondary-color); font-weight: 800;}

.about-desc {
  font-size: 1.06rem;
  color: #eee;
  font-weight: 500;
  max-width: 98%;
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 1.7;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.feature-box {
  background: rgba(0,0,0,0.12);
  border: 1px solid #fff;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  padding: 3px 3px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
}
.feature-box img {
  width: 100%;
  min-height: 135px;
  max-height: 135px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  margin-bottom: 18px;
  background: #1B103F;
}
.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
  margin-top: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 25px;
}
.feature-desc {
  font-size: 1rem;
  color: #cfd3ed;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0 15px;
}

@media (max-width: 1050px) {
  .about-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .about-row { gap: 22px; }
  .about-left, .about-right { min-width: 0; }
  .about-logo { width: 190px; }
}

@media (max-width: 700px) {
  .about-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  .about-logo {
    width: 120px;
    margin-top: 12px;
  }
  .about-footer {
    text-align: center;
  }
  .about-event-heading,
  .about-main-heading,
  .about-desc { margin-left: 0; margin-right: 0; justify-content: center;}
  .about-left,
  .about-right { max-width: 98vw; width: 100%; }
  .about-right { max-height: 150px;}
  .about-section { padding-top: 28px; }
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .feature-box img {
    min-height: 120px; max-height: 120px;
  }
}

/* ===== Race Categories section ===== */
.race-categories-section {
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  padding: 50px 0 40px 0;
  position: relative;
  background: transparent;
}
.race-categories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/race-cat-bg.png'); /* <--- Your file name */
  background-position: center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
  top: 50px;
}
.race-categories-heading {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: 1px;
  z-index: 1;
}
.race-categories-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: center;
  z-index: 1;
}
.race-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid #fff;
  border-radius: 4px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  padding: 38px 24px 28px 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 28px 0 rgba(30,30,70,0.13);
  position: relative;
}
.race-card-title {
  display: inline-flex;         /* Make row layout */
  align-items: center;          /* Vertically center icon and text */
  justify-content: center;      /* Center them horizontally */
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: 0.6px;
  gap: 12px;                    /* Spacing between icon & text */
}

.race-card-icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 4px;            /* Optional extra, gap preferred */
}

.race-card-age {
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 26px;
  color: #edecec;
}
.race-card-btn {
  border: 1px solid #fff;
  background: rgba(255,255,255,0.11);
  border-radius: 8px;
  font-size: 1.1rem;
  color: #fff;
  padding: 13px 26px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  margin-top: 14px;
  cursor: pointer;
  width: 90%;
}
.race-card-btn:hover {
  background: #20a4fc25;
  border-color: #20a4fc;
  color: #fff;
}

@media (max-width: 900px) {
  .race-categories-section { width: 99vw; max-width: 99vw; padding: 50px 0 25px 0; }
  .race-categories-grid { gap: 18px; }
  .race-card { min-width: 160px; max-width: 99vw; padding: 24px 8px; }
  .race-categories-heading { font-size: 1.55rem; margin-bottom: 28px;}
}

@media (max-width: 600px) {
  .race-categories-grid { flex-direction: column; gap: 10px;}.race-categories-grid {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
  .race-card {
    width: var(--global-width) !important;   /* Card width fills most mobile viewport */
    max-width: var(--global-width) !important;
    min-width: unset;
    margin: 0 auto;
    border-radius: 6px;
    padding: 26px 10px 24px 10px;
  }
}

/* ===== Key Benefits section ===== */
.sponsors-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 70px 0 50px 0;
  position: relative;
  background: transparent;
}
.sponsors-heading {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.15;
}
.sponsors-heading .blue { color: var(--blue-color); }
.sponsors-heading .magenta { color: var(--secondary-color); }

.sponsors-desc {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 48px;
  font-weight: 500;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  justify-content: center;
}

.sponsor-card {
  background: rgba(30,20,70, 0.82);
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 28px 0 #f6068b22;
  text-align: center;
  padding: 36px 12px 24px 12px;
  color: #fff;
  position: relative;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sponsor-icon {
  background: linear-gradient(135deg, var(--secondary-color) 40%, var(--blue-color) 100%);
  border-radius: 50%;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 1px 16px #f6068b33;
}
.sponsor-icon img {
  filter: drop-shadow(0 0 6px #1db4fc88);
}

.sponsor-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: .5px;
  color: #fff;
}

@media (max-width: 950px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .sponsor-card { min-width: 110px; padding: 26px 4px 18px 4px;}
  .sponsors-heading { font-size: 1.55rem; }
  .sponsors-desc { font-size: 1.01rem; margin-bottom: 28px;}
}

@media (max-width: 600px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px;}
  .sponsor-card { width: 42vw; min-width: unset; }
}

/* ===== Sponsor Interest section ===== */
.sponsor-interest-section {
  width: 87vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 0;
  position: relative;
  background: transparent;
}
.sponsor-interest-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  flex-wrap: wrap;
}
.sponsor-interest-left {
  flex: 1 1 350px;
  min-width: 210px;
  max-width: 630px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sponsor-interest-heading {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: 1px;
  line-height: 1.13;
}
.sponsor-interest-heading .blue { color: #1db4fc; font-weight: 900; font-size: 2.7rem; }
.sponsor-interest-heading .magenta { color: #F6068B; font-weight: 900; font-size: 2.7rem; }
.sponsor-interest-desc {
  color: #fff;
  font-size: 1.0rem;
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.48;
}
.sponsor-interest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  color: #fff;
  font-size: 1.11rem;
  font-weight: 600;
  padding: 16px 30px;
  transition: background .2s, border-color .2s;
  box-shadow: 0 2px 10px #20a4fc33;
  text-decoration: none;
  margin-top: 12px;
  width: 50%;
}
.sponsor-interest-btn .btn-arrow { margin-left: 13px; font-size: 1.25em; }
.sponsor-interest-btn:hover {
  background: #f6068b18;
  border-color: #20a4fc;
  color: #fff;
}
.sponsor-interest-right {
  flex: 0 0 390px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 200px;
}
.sponsor-interest-image {
  max-width: 370px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 14px #1db4fc22);
  user-select: none;
}

@media (max-width: 1024px) {
  .sponsor-interest-row { gap: 18px; }
  .sponsor-interest-image { max-width: 210px; }
  .sponsor-interest-heading { font-size: 1.17rem; }
  .sponsor-interest-btn { font-size: 0.98rem; padding: 10px 16px;}
}

@media (max-width: 700px) {
  .sponsor-interest-section{
    padding: 10px 0 0;
  }
  .sponsor-interest-row {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .sponsor-interest-left, .sponsor-interest-right {
    width: 100%;
    max-width: 99vw;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .sponsor-interest-right {
    width: 70%;
    max-height: 100px;
  }
  .sponsor-interest-image {
    max-width: 160px;
    margin-top: 18px;
  }
  .sponsor-interest-btn {
    margin-top: 16px;
    padding: 11px 8px;
    font-size: 1rem;
    width: 70%;
  }
  .sponsor-interest-heading {
    font-size: 1.05rem;
  }
}

/* ===== Venue section ===== */
.venue-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}
.venue-heading {
  text-align: center;
  color: #fff;
  font-size: 2.22rem;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: 1px;
}
.venue-heading .magenta { color: var(--secondary-color); }
.venue-heading .blue { color: var(--blue-color); }

.venue-image-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 36px auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px #f6068b29;
  background: #18143e;
}
.venue-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  min-height: 220px;
  max-height: 350px;
}
.venue-image-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  padding-bottom: 22px;
  background: linear-gradient(0deg, rgba(18,18,37,0.52) 65%, transparent 100%);
  color: #fff;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 600;
  z-index: 2;
}
.venue-image-text {
  margin-top: 16px;
  font-size: 1.08rem;
  font-weight: 700;
}
.venue-image-line {
  width: 85%;
  margin: 14px auto 0 auto;
  border: none;
  border-top: 1.2px solid #fff;
  opacity: 0.44;
}

.venue-features-grid {
  display: flex;
  gap: 38px;
  justify-content: center;
  margin: 36px 0 0 0;
  flex-wrap: wrap;
}
.venue-feature-exact {
  background: linear-gradient(180deg,#F6068B 0%, #060327 100%);
  border-radius: 4px;
  min-width: 225px;
  max-width: 340px;
  width: 100%;
  padding: 32px 20px 24px 20px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 36px 0 #ec188c29;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: transform 0.16s, box-shadow 0.16s;
}

.venue-feature-exact:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 48px 0 #b8026e49;
}
.venue-feature-icon-bg {
  background: #FF0082;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
}

.venue-feature-icon-bg img {
  display: block;
  width: 38px;
  height: 38px;
  filter: brightness(200%);
}
.venue-feature-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.1px;
  margin-bottom: 13px;
  margin-top: 3px;
}

.venue-feature-desc {
  color: #f7eafd;
  font-size: 1.09rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.venue-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.venue-btn {
  border: 1px solid #fff;
  border-radius: 9px;
  font-size: 1.12rem;
  color: #fff;
  padding: 15px 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, border-color 0.22s;
  text-decoration: none;
  margin-top: 5px;
  cursor: pointer;
}
.venue-btn:hover {
  background: #337cf740;
  border-color: #1db4fc;
  color: #fff;
}
.btn-arrow { margin-left: 10px; font-size: 1.18em; }

@media (max-width: 950px) {
  .venue-section, .venue-heading {font-size: 1.25rem; }
  .venue-features-grid { flex-direction: column; align-items: center; gap: 18px; }
  .venue-feature-exact { min-width: unset; }
}

@media (max-width: 600px) {
  .venue-image-wrap, .venue-feature, .venue-section { width: 87vw; max-width: 87vw; }
  .venue-heading { font-size: 1.22rem; }
  .venue-image-text { font-size: 0.97rem; }
  .venue-btn { font-size: 0.98rem; padding: 12px 8px; }
  .venue-features-grid { gap: 12px; }
  .venue-feature-exact { padding: 18px 7px 15px 7px; }
  .venue-feature-title { font-size: 1.05rem; }
  .venue-feature-desc { font-size: 0.97rem; }
}

/* ===== Registration Section ===== */
.regfest-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 20px 0;
}
.regfest-title {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.regfest-title .blue { color: #23bbfc;}
.regfest-title .magenta { color: #F6068B;}
.regfest-title .white { color: #fff; }
.regfest-subtitle {
  color: #fff;
  font-size: 1.11rem;
  margin-bottom: 28px;
  font-weight: 600;
  opacity: .94;
}

.price-readonly {
  pointer-events: none;
  opacity: .92;
  background: #f5f7fb;
}

.price-locked .custom-select__option:not(.selected) {
  opacity: 0.62;
  pointer-events: none;
  cursor: not-allowed;
}

.field-error {
  border: 1.5px solid red !important;
}
.req-error-msg {
  color: red;
  font-size: 0.98em;
  font-weight: 500;
  margin-top: 5px;
  display: block;
  letter-spacing: .02em;
  text-align: start;
}

.req-star {
  color: #fff;
  transition: color 0.2s;
}
.req-star.req-error {
  color: red;
  font-weight: bold;
  letter-spacing: .06em;
}

/* term Checbox */
/* Hide native checkbox */
.regfest-row.regfest-checkbox input[type="checkbox"] {
  opacity: 0;
  width: 28px;
  height: 28px;
  margin-right: 0;
  position: absolute;
}

/* Custom checkbox container for alignment */
.fancy-chk-label {
  display: flex;
  align-items: center;
  font-size: 1.12em;
  color: #fff;
  cursor: pointer;
  position: relative;
  padding-left: 38px;
  min-height: 34px;
}

/* Custom box */
.fancy-chk-label::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  border-radius: 10px;
  border: 3px solid #fff;
  background: rgba(28,12,74,0.1);
  box-sizing: border-box;
  transition: border-color .18s, background .18s;
}

.regfest-row.regfest-checkbox input[type="checkbox"]:checked + .fancy-chk-label::before {
  background: #1d105e;
  border-color: #fff;
}

/* Custom checkmark */
.fancy-chk-label::after {
  content: '';
  position: absolute;
  left: 8px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 6px;
  background: transparent;
  transition: background .18s;
}

.regfest-row.regfest-checkbox input[type="checkbox"]:checked + .fancy-chk-label::after {
  background:
    url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='white' stroke-width='3' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l4 4.1L13 5'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

@media (max-width: 600px) {
  .fancy-chk-label { font-size:1em; }
  .fancy-chk-label::before { width:24px; height:24px; }
  .fancy-chk-label::after { left:6px; top:6px; }
}
/* END TERM Checkbox */

.no-border{
  border: none !important;
}
.f-medium{
  font-size: medium !important;
}

#qrCodeModal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #0006;
  z-index: 1010;
  display: none;
}
#qrCodeModal .modal-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.qr-popup-content {
  position: relative;
  margin: 5vh auto 0;
  background: #fff;
  max-width: 340px;
  width: 93vw;
  border-radius: 10px;
  padding: 18px 16px 14px 16px;
  box-shadow: 0 8px 32px #0004;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Enable scrolling inside content if long! */
  max-height: 90vh;
  overflow-y: auto;
}


#qrCodeModal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,14,90,0.64);
  z-index: 2011; display: none;
  /* for vertical scroll fix */
  overflow-y: auto;
}
#qrCodeModal .modal-overlay {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}

.qr-popup-content {
  position: relative;
  margin: 5vh auto 0;
  background: linear-gradient(135deg,#f3f5fd 90%,#f1eaff 100%);
  max-width: 355px; width:96vw;
  border-radius: 16px;
  padding: 32px 28px 22px 28px;
  box-shadow: 0 8px 32px #4523b666;
  z-index: 2050;
  display: flex; flex-direction:column; align-items: center;

  max-height: 90vh;
  overflow-y: auto;
}
.qr-modal-title {
  font-size: 1.28em;
  font-weight: bold;
  margin-bottom: 16px;
  color: #250d82;
  letter-spacing: .03em;
  display: flex; align-items: center;
  justify-content: center;
}
.qr-img-main {
  margin: 2px 0 18px 0;
  border-radius: 12px;
  border:1.5px solid #eaeaff;
  max-width:220px;
  box-shadow:0 2px 16px #a28cff33;
}
.qr-upload-row {
  margin: 12px 0 12px 0;
  text-align: center;
  width: 100%;
}
.qr-file-name {
  font-size: .96em;
  margin-left: 10px;
  color: #6242eb;
  font-weight: 500;
}
.qr-success-msg {
  display:none;
  color:#2db67e;
  margin:12px 0 0 0;
  text-align:center;
  font-weight:600;
  padding:11px 0;
  font-size:1em;
  letter-spacing:.025em;
}
#qrSubmitBtn {
  margin: 8px 0 3px 0;
  width: 90%;
  border-radius: 8px;
  background: linear-gradient(90deg,#3a28dd 70%,#f6068b 120%);
  color: #fff;
}
.qr-modal-close {
  position: absolute;
  right: 22px; top: 18px;
  font-size: 1.4em;
  background: #ece7fd;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  color: #22215b;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px #b6aade33;
  transition: background .2s;
}
.qr-modal-close:hover {
  background: #f6068b;
  color: #fff;
}

/*  */
#thankYouModal {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,14,90,0.68);
  z-index: 3000; display: none;
}

#thankYouModal .modal-overlay {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}
.thanks-popup-content {
  position: relative;
  margin: 12vh auto 0;
  background: linear-gradient(135deg,#fff7ff 80%,#eef7ff 100%);
  max-width: 340px; width:94vw;
  border-radius: 17px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 8px 40px #4523b688;
  z-index: 2050;
  text-align:center;
  display: flex; flex-direction:column; align-items: center;
  animation: popIn .16s;
}
@keyframes popIn { from{transform: scale(0.8);} to{transform: scale(1);} }
.thank-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #250d82;
  margin-top: 0.3em;
}
.thank-desc {
  font-size:1.04em;
  margin:16px 0 4px 0;
  color: #39314f;
  font-weight: 400;
  line-height:1.44;
}
.qr-modal-close#closeThankYouModal {
  right: 20px; top: 15px;
}
/*  */
#form-status-bar, #v_msg {
  display: none;
  margin-bottom: 18px;
  font-size: 1.14em;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 22px;
  box-shadow: 0 2px 12px #0002;
}
#form-status-bar.success, #v_msg.success {
  background: #d7ffe3;
  color: #006b15;
  border: 1.5px solid #57c372;
}
#form-status-bar.error, #v_msg.error {
  background: #ffe1e0;
  color: #a91422;
  border: 1.5px solid #e47476;
}


.regfest-centerblock {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.regfest-form {
  background: linear-gradient(0deg, var(--card-dark) 10%, #0800E3 110%);
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
  padding: 38px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 25px;
}
.regfest-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.regfest-form label {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 7px;
  line-height: 1.32;
  text-align: start;
}
.regfest-row input,
.regfest-row select {
  width: 100%;
  padding: 13px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1.08rem;
  color: #1a093f;
  margin-bottom: 2px;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow .13s;
}
.regfest-row input:focus,
.regfest-row select:focus {
  box-shadow: 0 0 0 2px #23bbfc44;
}
.regfest-row input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}
.regfest-row.regfest-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 7px;
  font-size: .96rem;
}
.regfest-checkbox label{
  font-size: 0.9rem;
}
.regfest-row.regfest-2col {
  flex-direction: row;
  gap: 18px;
}
.regfest-row.regfest-2col > div {
  flex: 1 1 1px;
  display: flex;
  flex-direction: column;
}

.custom-dropdown-row {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 20px;
}
.custom-select-wrap {
  width: 100%;
  position: relative;
  min-width: 180px;
  margin: 0;
}
.custom-select-wrap label {
  display: block;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 6px;
}
.custom-select {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 18px #8e8ee640;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: box-shadow .16s;
  margin-bottom: 0;
}
.custom-select:focus,
.custom-select.custom-select--open {
  box-shadow: 0 8px 24px #a35ff650, 0 1.5px 10px #3ea2f385;
  outline: none;
}
.custom-select__selected {
  padding: 13px 12px;
  font-size: 1.08rem;
  color: #43415a;
  position: relative;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.custom-select__selected.age:after {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  margin-left: 12px;
  background: url('/images/svg/dropdown-arrow.svg') no-repeat center/100% auto;
  transition: transform .18s;
  filter: grayscale(1) brightness(.5);
}
.custom-select.custom-select--open .custom-select__selected.age:after {
  transform: rotate(180deg);
}
.custom-select__dropdown {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 6px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px #b3a2fe57;
  z-index: 100;
  display: none;
  flex-direction: column;
  min-width: 130px;
  padding: 8px 0;
  animation: fadeIn .221s;
}
.custom-select.custom-select--open .custom-select__dropdown {
  display: flex;
}
.custom-select__option {
  padding: 15px 18px;
  color: #383470;
  font-size: 1.09rem;
  cursor: pointer;
  background: none;
  transition: background .13s, color .13s;
  border-radius: 7px;
  margin: 0 7px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.custom-select__option:last-child { margin-bottom: 0; }
.custom-select__option:hover,
.custom-select__option.active {
  background: linear-gradient(90deg, #F6068B 4%, #2327fb 100%);
  color: #fff !important;
}
.custom-select__option.selected {
  background: linear-gradient(90deg, #F6068B 4%, #2327fb 100%);
  color: #fff !important;
  font-weight: 700;
}
.custom-select-wrap .custom-select__selected.selected {
  color: #333;
  font-weight: bold;
  background: #f5f6fa;
}
.custom-select-wrap .custom-select__selected.has-value {
  font-weight: 400;
  color: #23214a;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px);}
  to   { opacity: 1; transform: translateY(0);}
}

@media (max-width:700px){
  .custom-dropdown-row{flex-direction:column;gap:14px;}
  .regfest-row.regfest-2col {
    flex-direction: column;
    gap: 10px;
  }
  .regfest-row.regfest-2col > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}


/* OUTSIDE border */
.regfest-process-box {
  background: linear-gradient(0deg, #F55905 5%, #FFA545 100%);
  border-radius: 8px;
  padding: 12px 20px 9px 20px;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 18px 0;
  box-shadow: 0 1px 9px #d091e725;
  width: 100%;
}
.regfest-process-title {
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.04rem;
}
.regfest-process-desc {
  font-size: .97rem;
  opacity: .91;
}
.regfest-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 3px 0;
  width: 100%;
}
.regfest-btn .btn-arrow { margin-left: 14px; font-size: 1.18em; }
.btn-filled:hover { filter: brightness(1.09);}
.regfest-razorpay-badge {
  background: #D9FFBC;
  color: #00881E;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 17px;
  margin-top: 4px;
  box-shadow: 0 1px 8px #3acd1222;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.regfest-support-row {
  margin-top: 16px;
  color: #ffb451;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: .95;
}
.regfest-support-dot {
  width: 8px;
  height: 8px;
  background: #f6068b;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 700px) {
  .regfest-section { padding: 20px 0 18px 0;}
  .regfest-title { font-size: 1.1rem;}
  .regfest-centerblock { max-width: 99vw;}
  .regfest-form { max-width: 98vw; padding: 13px 4vw;}
  .regfest-row.regfest-2col { flex-direction: column; gap: 8px;}
  .regfest-btn { font-size: .97rem; padding: 12px 0;}
  .regfest-razorpay-badge { font-size: .95rem; padding: 6px 5px;}
  .regfest-support-row { font-size: .7rem;}
}

/* ===== Expect Section ===== */
.expect-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 62px 0 36px 0;
  text-align: center;
  box-sizing: border-box;
}
.expect-title {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: 1.7px;
}
.expect-title .blue { color: #27bcfa;}
.expect-title .magenta {color:#F6068B;}
.expect-subtitle {
  color: #fff;
  font-size: 1.10rem;
  font-weight: 500;
  margin-bottom: 34px;
  opacity: 0.95;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.expect-feature-imggrid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.expect-feature-img {
  position: relative;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 320px;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  background: #10042a;
  box-shadow: 0 5px 28px #17135517;
  margin: 0 0 10px 0;
  display: flex;
}
.expect-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.expect-img-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  padding: 28px 13px 19px 13px;
  background: linear-gradient(0deg,rgba(16,7,44,0.98) 0%,rgba(16,7,44,0) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 8px #36126344;
}
.expect-img-title {
  font-size: 1.09rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.expect-img-desc {
  font-size: .97rem;
  font-weight: 500;
  opacity: .93;
}

.expect-row-features {
  width: 100%;
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: stretch;
  margin: 38px 0 26px 0;
  flex-wrap: wrap;
}
.expect-feature-card {
  flex: 1 1 160px;
  min-width: 127px;
  max-width: 190px;
  background: rgba(26,13,65,0.98);
  border-radius: 11px;
  border: 1.4px solid #45327c33;
  color: #fff;
  box-shadow: 0 5px 28px #1db4fc13;
  padding: 26px 0 14px 0;
  font-size: 1.12rem;
  font-weight: 700;
  display: flex;
  margin: 0 1px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
}
.expect-feature-card img {
  margin-bottom: 10px;
}
.expect-feature-main {
  line-height: 1.23;
  font-size: 1rem;
  font-weight: 600;
}

.expect-cta-row {
  margin: 29px 0 16px 0;
}
.expect-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  color: #fff;
  font-size: 1.11rem;
  font-weight: 600;
  padding: 16px 38px;
  box-shadow: 0 1px 9px #1db4fc19;
  text-decoration: none;
  margin-top: 6px;
  transition: background .18s, border-color .18s;
  cursor: pointer;
}
.expect-cta-btn .btn-arrow { margin-left: 14px; font-size: 1.18em; }
.expect-cta-btn:hover {
  background:#e112837e;
  border-color: #20a4fc;
  color: #fff;
}
.expect-smallnote {
  margin-top: 12px;
  color: #ffb451;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  opacity: .96;
}
.smallnote-dot {
  width: 8px;
  height: 8px;
  background: #ff4b99;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 950px) {
  .expect-section { width: var(--global-width); max-width: var(--global-width); padding: 22px 0;}
  .expect-title { font-size: 1.16rem;}
  .expect-feature-imggrid { gap: 16px; }
  .expect-feature-img { height: 157px; }
  .expect-row-features { gap: 11px;}
  .expect-feature-card { max-width: 99vw; padding: 11px 0 5px 0;}
}
@media (max-width: 700px) {
  .expect-feature-imggrid { flex-direction: column; gap: 12px;}
  .expect-feature-img { height: 132px;}
  .expect-row-features { gap: 5px; flex-direction: column;}
  .expect-feature-card { margin-bottom: 7px;}
  .expect-smallnote { font-size: 0.6rem;}
}

/* ===== Slider  Section ===== */
.event-memories-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 55px 0 12px 0;
  text-align: center;
  box-sizing: border-box;
}
.event-memories-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 1.4px;
}
.event-memories-title .blue { color: #1db4fc; }
.event-memories-title .magenta { color: #F6068B; }
.event-memories-subtitle {
  color: #fff;
  font-size: 1.11rem;
  margin-bottom: 24px;
  opacity: 0.91;
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.38;
}
.event-memories-carousel-full {
  width: 87vw;
  max-width: 87vw;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  z-index: 3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  border: 1px solid var(--white-color);
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px #1f038d33;
  cursor: pointer;
  transition: filter 0.17s, background 0.16s;
  outline: none;
  opacity: 0.97;
}
.carousel-arrow img { width: 22px; height: 22px; }
.carousel-arrow:hover { background: #1db4fc; }

.carousel-arrow.left  { left: 7.5% }
.carousel-arrow.right { right: 7.5% }
.carousel-arrow img {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 2px 4px #32237533);
}
.carousel-arrow:hover,
.carousel-arrow:focus {
  filter: brightness(1.13) blur(0.5px);
  background: rgba(255,255,255,0.8);
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 900px;
  min-width: 194px;
  max-width: 100vw;
  transition: width 0.20s;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.carousel-img {
  box-shadow: 0 1px 18px #0001;
  overflow: hidden;
  width: 156px;
  height: 180px;
  background: #151322;
  opacity: 0.75;
  transition: opacity .17s, box-shadow .2s, border .21s, width .16s, height .16s;
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.active-img {
  width: 228px;
  height: 240px;
  z-index: 2;
  opacity: 1;
  box-shadow: 0 7px 38px #19105e55;
}
.prev-img, .next-img, .second-prev-img, .second-next-img{
  opacity: 0.5;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 11px 0 18px 0;
}
.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.45;
  display: inline-block;
  transition: opacity .11s, background .11s;
}
.dot.active {
  background: #d001FF;
  opacity: 1;
}
.memories-caption {
  color: #fff;
  font-size: 1.13rem;
  margin-bottom: 38px;
}
.caption-title {
  font-weight: 700;
  letter-spacing: .25px;
}
.caption-desc {
  font-size: .98rem;
  opacity: .88;
  font-weight: 500;
  margin-top: 4px;
}
.event-memories-below {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  text-align: center;
}
.event-memories-stats {
  width: 100%;
  margin: 36px auto 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.stat-box {
  flex: 1 1 85px;
  background: linear-gradient(90deg, #F6068B 2%, #2229fb 100%);
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 4px 20px #19105e24;
  padding: 32px 0 14px 0;
  font-size: 1.33rem;
  min-width: 110px;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 1.7em;
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .carousel-track { width: 700px; }
  .active-img { width: 172px; height: 172px; }
  .carousel-img { width: 100px; height: 110px; }
}
@media (max-width: 900px){
  .event-memories-section,
  .event-memories-below { width: var(--global-width); max-width: var(--global-width);}
  .carousel-track { width: 340px; }
  .carousel-arrow { width: 36px; height: 36px;}
  .carousel-arrow img { width: 20px; height: 20px;}
  .carousel-img, .prev-img, .next-img, .active-img { height: 76px; width: 46px;}
  .active-img { width: 114px; height: 114px;}
  .event-memories-stats { gap: 12px;}
  .event-memories-title { font-size: 1.25rem;}
}
@media (max-width: 600px) {
  .event-memories-title, .event-memories-subtitle { font-size: 1rem;}
  .event-memories-section, .event-memories-below { padding: 10px 0 10px 0;}
  .carousel-img, .prev-img, .next-img, .active-img { height: 70px; width: 35px;}
  .active-img { width: 75px; height: 120px;}
  .event-memories-stats { flex-wrap: wrap; gap: 10px;}
  .stat-box { padding: 17px 0 9px 0; min-width: 90px;}

  .carousel-track { width: 124px; gap: 6px;}
  .carousel-arrow { width: 28px; height: 28px;}
  .carousel-arrow.left  { left: 2.5vw; }
  .carousel-arrow.right { right: 2.5vw; }
  .carousel-arrow img { width: 14px; height: 14px;}
  .dot{
    width: 7px;
    height: 7px;
  }
  .stat-num {
    font-size: 0.8rem;
  }
  .stat-num img {
    height: 12px !important; width: auto;
  }
  .stat-desc {
    font-size: 0.6rem;
  }
}

/* ===== Parents Heart Section ===== */
.parents-hearts-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 62px 0 46px 0;
  text-align: center;
  box-sizing: border-box;
}
.parents-hearts-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 1.4px;
}
.parents-hearts-title .blue { color: #1db4fc; }
.parents-hearts-title .magenta { color: #F6068B; }
.parents-hearts-subtitle {
  color: #fff;
  font-size: 1.11rem;
  font-weight: 500;
  margin-bottom: 38px;
  opacity: 0.91;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.46;
}
.parents-hearts-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
  margin-top: 4px;
}
.parent-testimonial-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 8px 32px #20155e36;
  max-width: 330px;
  width: 100%;
  min-height: 330px;
  min-width: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.testimonial-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg,#000000 0%,rgba(20,13,32,0.18) 100%);
  pointer-events: none;
}
.testimonial-content {
  position: relative;
  z-index: 2;
  padding: 32px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-stars {
  margin-bottom: 10px;
}
.testimonial-stars img {
  width: 15px;
  height: 15px;
  margin-right: 2px;
  display: inline-block;
  filter: drop-shadow(0 1px 3px #222c);
}
.testimonial-text {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.48;
  margin-bottom: 14px;
  min-height: 52px;
  text-shadow: 0 1px 8px #0b043d77;
}
.testimonial-author {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1px;
  text-shadow: 0 2px 8px #11082b66;
}
@media (max-width: 950px) {
  .parents-hearts-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .parent-testimonial-card { min-width: 150px; min-height: 330px; }
  .testimonial-content { padding: 25px 10px 14px 10px; }
  .parents-hearts-title { font-size: 1.38rem; }
}
@media (max-width: 650px) {
  .parents-hearts-grid { grid-template-columns: 1fr; gap: 10px; }
  .parents-hearts-section { padding: 20px 0 18px 0; }
  .parent-testimonial-card { min-width: unset; }
  .testimonial-content { padding: 12px 5vw 12px 5vw; }
  .parents-hearts-title, .parents-hearts-subtitle { font-size: 1rem;}
  .testimonial-text { font-size: .97rem;}
}


/* ===== FAQ Section - Match Navbar Width ===== */
.faq-section {
  padding: 60px 0;
  max-width: 87vw;
  margin: 0 auto;
  box-sizing: border-box;
}

.faq-outerbox {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--card-color) 0%, var(--card-dark) 100%);
  box-shadow: 0 10px 45px -8px #14124a32;
  padding: 40px 0;
}

.faq-title {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
  padding: 0 20px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin-bottom: 35px;
  opacity: 0.9;
  padding: 0 20px;
}

.faq-block {
  margin: 0 auto;
  padding: 0 30px;
}

/* FAQ Item */
.faq-item {
  border-radius: 15px;
  margin-bottom: 12px;
  background: rgba(23, 19, 57, 0.6);
  box-shadow: 0 2px 12px rgba(22, 12, 38, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  background: rgba(25, 18, 61, 0.8);
  box-shadow: 0 4px 20px rgba(160, 17, 122, 0.2);
}

/* Open State */
.faq-item-open {
  box-shadow: 0 6px 25px rgba(160, 17, 122, 0.3);
  background: rgba(25, 18, 61, 1);
  border-color: rgba(246, 6, 139, 0.2);
}

/* FAQ Row (Question) */
.faq-row {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 0;
  gap: 0;
  position: relative;
  cursor: pointer;
  min-height: 70px;
  background: none;
  border-radius: 15px;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Colored Bar */
.faq-bar {
  display: inline-block;
  width: 5px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--third-color) 100%);
  margin: 0 18px 0 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item-open .faq-bar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 100%);
  box-shadow: 0 0 12px rgba(255, 68, 247, 0.6);
  width: 6px;
}

/* Question Text */
.faq-q {
  color: #fff;
  font-weight: 600;
  font-size: 1.12rem;
  flex: 1;
  letter-spacing: 0.01em;
  text-align: left;
  line-height: 1.4;
}

/* Icons (Plus/Close) */
.faq-icon {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-plus{
  min-height: 22px;
  min-width: 22px;
  width: 22px;
  height: 22px;
}

.faq-icon img {
  width: 100%;
  height: 100%;
}

/* Icon States */
.faq-item:not(.faq-item-open) .faq-plus {
  display: flex;
}

.faq-item.faq-item-open .faq-close {
  display: flex;
}

.faq-item.faq-item-open .faq-plus {
  display: none;
}

.faq-item:not(.faq-item-open) .faq-close {
  display: none;
}

/* Answer Text */
.faq-a {
  padding: 0 20px 22px 55px;
  color: #eceaf7;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  background: none;
  opacity: 0.95;
}

/* Hide Answer When Closed */
.faq-item:not(.faq-item-open) .faq-a {
  display: none;
}

/* Spacing Between Items */
.faq-item + .faq-item {
  margin-top: 10px;
}

/* ===== Tablet (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .faq-section {
    max-width: 87vw;
    padding: 50px 3vw;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-block {
    padding: 0 25px;
  }

  .faq-q {
    font-size: 1.08rem;
  }

  .faq-a {
    font-size: 1rem;
  }
}

/* ===== Mobile (up to 767px) ===== */
@media (max-width: 767px) {
  .faq-section {
    max-width: 90vw;
    padding: 40px 4vw;
  }

  .faq-outerbox {
    border-radius: 16px;
    padding: 30px 0;
  }

  .faq-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding: 0 15px;
  }

  .faq-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
    padding: 0 15px;
  }

  .faq-block {
    padding: 0 18px;
  }

  .faq-item {
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .faq-row {
    padding: 16px 15px 16px 0;
    min-height: 60px;
  }

  .faq-bar {
    width: 4px;
    height: 45px;
    margin: 0 14px 0 14px;
  }

  .faq-item-open .faq-bar {
    width: 5px;
  }

  .faq-q {
    font-size: 1rem;
    line-height: 1.35;
  }

  .faq-icon {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    margin-left: 10px;
  }

  .faq-a {
    padding: 0 15px 18px 45px;
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* ===== Extra Small Mobile (up to 480px) ===== */
@media (max-width: 480px) {
  .faq-section {
    max-width: 92vw;
    padding: 35px 4vw;
  }

  .faq-outerbox {
    padding: 25px 0;
  }

  .faq-title {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-block {
    padding: 0 15px;
  }

  .faq-row {
    padding: 14px 12px 14px 0;
  }

  .faq-bar {
    width: 4px;
    height: 40px;
    margin: 0 12px 0 12px;
  }

  .faq-q {
    font-size: 0.95rem;
  }

  .faq-icon {
    min-width: 26px;
    min-height: 26px;
    width: 26px;
    height: 26px;
  }

  .faq-plus{
    min-height: 18px;
    min-width: 18px;
    width: 18px;
    height: 18px;
  }

  .faq-a {
    padding: 0 12px 16px 40px;
    font-size: 0.9rem;
  }
}

/* ===== Join Section - Match Navbar Width ===== */
.join-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 100%);
  border-radius: 18px;
  margin: 0 auto 60px;
  padding: 50px 40px;
  max-width: 87vw;
  padding-left: 3vw;
  padding-right: 3vw;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 10px 50px rgba(246, 6, 139, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: flex-start; /* Top align */
  gap: 8px;
}

.contact-item img {
  flex-shrink: 0;
  margin-top: 3px; /* Align with text baseline */
}

.contact-item span,
.contact-item a {
  flex: 1;
  line-height: 1.5;
  word-break: break-word;
}

/* Mobile */
@media (max-width: 767px) {
  .contact-info-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .contact-item {
    width: 100%;
  }
}


.contact-item a{
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
}

/* Optional: Add subtle pattern overlay */
.join-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.join-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white-color);
}

/* Sub Heading */
.join-content .sub-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Main Heading */
.join-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0 18px;
  color: var(--white-color);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Description */
.join-content .description {
  font-size: 1.08rem;
  color: var(--white-color);
  margin-bottom: 30px;
  line-height: 1.6;
  font-style: italic;
}

/* Contact Info Container */
.contact-info {
  border-top: 2px solid var(--white-color);
  padding-top: 25px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 400;
}

.contact-info div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-color);
  line-height: 1.5;
}

.contact-info i {
  color: var(--white-color);
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

/* ===== Tablet (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .join-section {
    max-width: 87vw;
    padding: 45px 3vw;
    margin: 0 auto 50px;
  }

  .join-content h2 {
    font-size: 1.8rem;
  }

  .join-content .sub-heading {
    font-size: 1.05rem;
  }

  .join-content .description {
    font-size: 1.02rem;
  }

  .contact-info {
    font-size: 0.98rem;
    gap: 12px;
  }
}

/* ===== Mobile (up to 767px) ===== */
@media (max-width: 767px) {
  .join-section {
    max-width: 87vw;
    padding: 40px 4vw;
    margin: 0 auto 40px;
    border-radius: 15px;
  }

  .join-content .sub-heading {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .join-content h2 {
    font-size: 1.6rem;
    margin: 10px 0 15px;
    line-height: 1.25;
  }

  .join-content .description {
    font-size: 0.98rem;
    margin-bottom: 25px;
    line-height: 1.55;
  }

  .contact-info {
    padding-top: 20px;
    gap: 12px;
    font-size: 0.95rem;
  }

  .contact-info div {
    flex-direction: row;
    text-align: center;
    gap: 10px;
  }

  .contact-info i {
    font-size: 1rem;
    min-width: 18px;
  }
}

/* ===== Extra Small Mobile (up to 480px) ===== */
@media (max-width: 480px) {
  .join-section {
    max-width: 87vw;
    padding: 35px 4vw;
    margin: 0 auto 35px;
  }

  .join-content .sub-heading {
    font-size: 0.95rem;
  }

  .join-content h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .join-content .description {
    font-size: 0.92rem;
  }

  .contact-info {
    font-size: 0.9rem;
    gap: 10px;
  }

  .contact-info div {
    flex-wrap: wrap;
  }
}

/* FAQ Section */
.faq-support-section {
  width: 100vw;
  min-height: 180px;
  position: relative;
  background: #120e29;
  overflow: hidden;
  margin-bottom: 5%;
}
.faq-support-bg {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  max-width: 18vw;
  pointer-events: none;
  z-index: 1;
  filter: blur(7px);
}
.faq-support-bg.left {
  left: 0;
  background: linear-gradient(90deg, var(--secondary-color) 29%, #060327 100%);
  opacity: 0.65;
}
.faq-support-bg.right {
  right: 0;
  background: linear-gradient(-90deg, var(--third-color) 29%, #060327 100%);
  opacity: 0.55;
}

.faq-support-container {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 25px 0 36px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.faq-support-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  margin-bottom: 15px;
}
.faq-support-desc {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 28px;
  font-weight: 500;
}
.faq-support-btns {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.faq-btn {
  padding: 16px 38px;
  border-radius: 8px;
  font-size: 1.16rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 4px 20px #20215d33;
  border: none;
  transition: background .18s, filter .18s;
  margin-top: 0;
}
.faq-btn.contact {
  background: linear-gradient(90deg, #f6068b 10%, #273cf7 94%);
}
.faq-btn.whatsapp {
  background: linear-gradient(90deg, #0ecb2b 10%, #23e147 94%);
}
.faq-btn:hover { filter: brightness(1.11);}
.faq-btn img { display: inline-block; width: 24px; height: 24px;}

@media (max-width: 950px) {
  .faq-support-section { min-height: 140px; }
  .faq-support-bg { width: 60px; }
  .faq-support-title { font-size: 1.2rem; }
  .faq-support-btns { gap: 15px; }
  .faq-btn { font-size: 0.97rem; padding: 12px 15px;}
}

@media (max-width: 600px) {
  .faq-support-section { min-height: 90px; }
  .faq-support-container { padding: 12px 0 18px 0;}
  .faq-support-btns { flex-direction: column; gap: 9px; align-items: center;}
  .faq-support-bg { width: 28px; }
  .faq-btn { font-size: 0.91rem;}
}

/* Section 1: Banner */
.volunteer-join-hero {
  position: relative;
  width: 100vw;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  box-sizing: border-box;
}
.volunteer-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  pointer-events: none;
}
.volunteer-hero-content {
  width: var(--global-width);
  max-width: var(--global-width);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 8px 0;
  text-align: center;
}
.volunteer-join-heading {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 1.7px;
}
.volunteer-join-heading .blue { color: #1db4fc; }
.volunteer-join-heading .magenta { color: #F6068B; }
.volunteer-join-desc {
  color: #fff;
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.44;
}
.volunteer-hero-hand {
  position: absolute;
  top: 9px;
  width: 220px;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.volunteer-hero-hand.left { left: 0; }
.volunteer-hero-hand.right { right: 0; }
@media (max-width: 950px) {
  .volunteer-join-heading { font-size: 1.2rem;}
  .volunteer-hero-hand { width: 100px; top: 4px;}
}
@media (max-width: 650px) {
  .volunteer-join-hero { min-height: 220px;}
  .volunteer-join-heading, .volunteer-join-desc { font-size: 1rem;}
  .volunteer-hero-content { padding: 21px 0 3px 0;}
}

/* Section 2: Form */
.volunteer-join-form-wrap {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 100px;
  padding: 0 0 48px 0;
}
.volunteer-join-form {
  margin: 0 auto;
  background: linear-gradient(180deg, #f6068b 4%, var(--card-dark) 100%);
  border-radius: 8px;
  max-width: 65%;
  width: 100%;
  box-sizing: border-box;
  padding: 38px 28px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-row label {
  color: #fff;
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1.07rem;
  background: rgba(255,255,255,0.93);
  color: #1a0d2e;
  margin-bottom: 2px;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow .13s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  box-shadow: 0 0 0 2px #1db4fc33;
}
.form-row textarea {
  min-height: 66px;
  resize: vertical;
}

.form-row-wrap {
  display: flex;
  gap: 14px;
}
.form-row-wrap .form-row { flex: 1 1 1px; margin-bottom: 0;}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.form-btn-submit {
  background: transparent;
  color: #fff;
  font-size: 1.12em;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 7px;
  padding: 14px 38px;
  cursor: pointer;
  transition: background .22s, color .18s, border .18s;
  letter-spacing: .4px;
  box-shadow: 0 1px 8px #19105e22;
  display: inline-flex; align-items: center;
}
.form-btn-submit:hover {
  color: #fff;
  border-color: var(--secondary-color);
}
.btn-arrow { margin-left: 13px; font-size: 1.1em;}

@media (max-width: 650px) {
  .volunteer-join-form { max-width: 99vw; padding: 17px 6vw;}
  .volunteer-join-form-wrap { padding: 0 0 28px 0; }
  .form-row-wrap { flex-direction: column; gap: 8px;}
}

/* ===== Volnteer Section ===== */
.volunteer-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
}
.volunteer-heading {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: .8px;
}
.volunteer-subheading {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 34px;
  letter-spacing: 2px;
}
.volunteer-subheading .blue { color: #20a4fc; }
.volunteer-subheading .magenta { color: #F6068B; }
.volunteer-reasongrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
  margin-bottom: 28px;
}
.volunteer-reason {
  text-align: center;
  padding: 0 12px;
}
.volunteer-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #321d75 10%, #0047ff 60%, #f6068b 130%);
  box-shadow: 0 2px 18px #1f53ff33, 0 1px 16px #f6068b46;
}
.volunteer-icon-circle img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.volunteer-reason-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 2px;
}
.volunteer-reason-desc {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.45;
}

.volunteer-roles-bar {
  margin: 36px auto 0 auto;
  max-width: 1100px;
  background: linear-gradient(90deg, #f6068b 4%, #2229fb 100%);
  color: #fff;
  font-size: 1.16rem;
  font-weight: 500;
  padding: 22px 18px 18px 18px;
  border-radius: 16px;
  text-align: center;
  letter-spacing: .2px;
}
.volunteer-roles-bar .roles-bold {
  font-weight: 800;
  font-size: 1.15em;
}
@media (max-width: 900px) {
  .volunteer-section { width: var(--global-width); max-width: var(--global-width); padding: 28px 0;}
  .volunteer-heading, .volunteer-subheading { font-size: 1.1rem; }
  .volunteer-reasongrid {
    grid-template-columns: 1fr 1fr;
    gap: 17px 12px;
  }
  .volunteer-roles-bar { font-size: 0.98rem; padding: 14px 7px;}
}
@media (max-width: 600px) {
  .volunteer-reasongrid {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }
  .volunteer-section { padding: 16px 0;}
  .volunteer-heading { font-size: 1rem; }
  .volunteer-subheading { font-size: 1.1rem;}
  .volunteer-roles-bar { font-size: .9rem; border-radius: 9px;}
}

/* ===== Contact Section ===== */
.contact-support-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 55px 0 35px 0;
  text-align: center;
  box-sizing: border-box;
}
.contact-support-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1.4px;
}
.contact-support-title .blue { color: #1db4fc; }
.contact-support-title .magenta { color: #F6068B; }
.contact-support-title .white { color: #fff; }
.contact-support-subtitle {
  color: #fff;
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 46px;
  line-height: 1.5;
}
.contact-support-cards {
  display: flex;
  gap: 46px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  flex-wrap: wrap;
}
.contact-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 38px #19105e19;
  padding: 36px 18px 35px 18px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 294px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 2px 14px #19105e22;
}
.icon-blue { background: linear-gradient(135deg, #1db4fc 30%, #2299f5 100%);}
.icon-green { background: linear-gradient(135deg, #06ca1f 40%, #14e80a 100%);}
.icon-pink { background: linear-gradient(135deg, #ff48af 30%, #f6068b 100%);}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #19162a;
  margin-bottom: 5px;
}
.contact-card-desc {
  font-size: 1.09rem;
  font-weight: 600;
  color: #19162a;
  margin-bottom: 6px;
}
.contact-card-note {
  color: #bcb9cb;
  font-size: 0.94rem;
  margin-bottom: 28px;
  font-weight: 500;
}
.contact-card-btn {
  width: 95%;
  max-width: 300px;
  border-radius: 9px;
  font-size: 1.12rem;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
  font-weight: 600;
  letter-spacing: .5px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 #1db4fc33;
  transition: box-shadow 0.21s, filter 0.21s;
}
.btn-blue { background: linear-gradient(90deg, #1db4fc 0%, #1174ce 100%);}
.btn-green { background: linear-gradient(90deg, #06ca1f 0%, #14e80a 100%);}
.btn-pink { background: linear-gradient(90deg, #ff48af 0%, #f6068b 100%);}
.contact-card-btn:hover { filter: brightness(1.13);}
@media (max-width: 950px) {
  .contact-support-section { width: var(--global-width); max-width: var(--global-width);}
  .contact-support-title { font-size: 1.5rem;}
  .contact-support-cards { gap: 16px;}
  .contact-card { min-width: 170px; max-width: 99vw; padding: 24px 10px;}
  .contact-support-subtitle { margin-bottom: 24px;}
}
@media (max-width: 700px) {
  .contact-support-cards { flex-direction: column; gap: 14px; align-items: center;}
  .contact-card { width: var(--global-width); min-width: unset; max-width: 99vw;}
  .contact-card-btn { font-size: 1rem; padding: 11px 0;}
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 440px;
  overflow: hidden;
  background: #18143e;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  background-image: url('/images/hero-footer-bg.png'); /* <-- SET YOUR IMAGE HERE! */
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 54px 0;
}

.hero-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  padding-right: 1vw;
}

.hero-meta-row {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.hero-title .blue { color: #23bbfc; }
.hero-title .white { color: #fff; }
.hero-title .magenta { color: #F6068B; }

.hero-subtitle {
  color: #fff;
  font-size: 1.33rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 11px;
}

.hero-desc {
  color: #fff;
  font-size: 1.03rem;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-btn-row {
  display: flex;
  gap: 38px;
  margin-top: 16px;
  align-items: center;
}

.hero-bg-runners {
  width: 380px;
  max-width: 45vw;
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 950px) {
  .hero-content-container {
    width: var(--global-width);
    max-width: var(--global-width);
    min-height: 340px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0;
  }
  .hero-content-box {
    max-width: 98vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 8px;
  }
  .hero-title { font-size: 1.7rem;}
  .hero-btn-row { gap: 18px;}
  .hero-bg-runners { width: 260px; max-width: 99vw; }
}

@media (max-width: 600px) {
  .hero-section { min-height: 330px; }
  .hero-content-container { min-height: 220px; padding: 10px 0;}
  .hero-content-box { padding-left: 2vw; padding-right: 2vw;}
  .hero-meta-row { font-size: 0.97rem;}
  .hero-title { font-size: 1.15rem; }
  .hero-subtitle { font-size: 0.97rem;}
  .hero-desc { font-size: 0.89rem; max-width: none;}
  .hero-btn-row { gap: 8px;}
  .hero-bg-runners { width: 100vw; max-width: 320px; margin-top: 18px;}
}

/* ===== Event schedule Section ===== */
.event-schedule-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  box-sizing: border-box;
}
.event-schedule-heading { color: #fff; font-size: 3rem; font-weight: 900; margin-bottom: 10px; letter-spacing: 2px;}
.event-schedule-heading .blue { color: var(--blue-color);}
.event-schedule-heading .magenta {color: var(--secondary-color);}
.event-schedule-subtitle { color: #fff;font-size: 1.15rem;margin-bottom: 46px;}
.schedule-cards-row { display: flex; gap: 42px; justify-content: center; align-items: flex-start; flex-wrap: wrap; margin-bottom: 26px;}
.schedule-card {
  background: #fff; border-radius: 14px; box-shadow: 0 8px 30px #11062229;
  padding: 46px 26px 32px 26px; width: 100%; max-width: 48%; min-width: 290px;
  display: flex; flex-direction: column; align-items: center;
}
.schedule-card-header {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 0;
}
.schedule-logo { width: 60px; height: auto;}
.schedule-day-title { font-size: 3rem; font-weight: 800; color: #19162a; margin-left: 12px; }
.schedule-date { color: #19162a; font-size: 1.13rem; font-weight: 700; margin: 8px 0 28px 0; }

.schedule-main-rows { width: 100%; }
.schedule-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
}
.schedule-main-row.center { justify-content: center;}
.schedule-main-col {
  flex: 1 1 50%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 120px;
  max-width: 210px;
}
.schedule-main-col.center { justify-content: center; text-align: center; flex-direction: column; align-items: center;}
.prize-pool{
  max-width: 300px;
  line-height: 1.8;
}
.prize-pool .schedule-event-title{
  font-size: 0.9rem;
}
.prize-pool .schedule-event-desc{
  font-size: 0.6rem;
}
.schedule-time {
  font-size: 1.09rem; font-weight: 800; color: #221e36; min-width: 63px;
}
.schedule-event-title { color: #221e36; font-size: 1.07rem; font-weight: 700;}
.schedule-event-desc { color: #797580; font-size: 0.95rem;}
@media (max-width: 950px) {
  .schedule-cards-row { gap: 14px;}
}
@media (max-width: 700px) {
  .schedule-cards-row { flex-direction: column; gap: 18px; align-items: center;}
  .schedule-card { padding: 20px 10px 21px 10px; min-width: 100%;}
  .schedule-main-row { flex-direction: column; gap: 2px; align-items: center;}
  .schedule-main-col { text-align: unset; gap: 6px;}
  .schedule-main-col.center { align-items: center;}
  .schedule-day-title { font-size: 1.6rem;}
  .schedule-main-row .schedule-main-col:first-child {
    margin-bottom: 13px;
  }
}


/* ===== Presented by Section ===== */
.presented-by-section {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 40px auto 0 auto;
  text-align: center;
  padding-bottom: 24px;
  box-sizing: border-box;
}

.presented-by-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.presented-by-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.presented-by-logo {
  width: 112px;
  max-width: 21vw;
  height: auto;
  filter: drop-shadow(0 4px 15px #f6068b33);
}

.presented-by-x {
  margin: 0 14px;
}

.presented-by-x img {
  width: 50px;
  height: auto;
}

.presented-by-partner {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  min-width: 270px;
  max-width: 420px;
  padding: 20px 24px 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}

.partner-role {
  font-size: 1.01rem;
  color: #e8eaf5;
  font-weight: 600;
}

@media (max-width: 700px) {
  .presented-by-row {
    flex-direction: column;
    gap: 20px;
    margin-top: 18px;
  }
  .presented-by-title {
    font-size: 1.19rem;
    margin-bottom: 12px;
  }
  .presented-by-logo {
    width: 66px; max-width: 50vw;
  }
  .presented-by-partner {
    font-size: 0.8rem;
    min-width: 50vw;
    padding: 12px 9px 12px 9px;
  }
  .partner-name { font-size: 1rem; letter-spacing: .5px;}
  .partner-role { font-size: 0.84rem;}
  .presented-by-x { font-size: 2.2rem;}
}

/* ===== Footer ===== */
.footer {
  background-color: var(--primary-color);
  padding: 20px 4vw 20px;
  color: var(--white-color);
}

.footer-top {
  text-align: center;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.footer-title span {
  color: var(--gold-color);
}

.footer-tagline {
  color: var(--white-color);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.social-label {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.17); /* transparent white box */
  border-radius: 10px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 14px #273cf750;
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff;
}

.social-icon:hover {
  background: #1db4fc;
  color: #fff;
  transform: translateY(-3px) scale(1.055);
  box-shadow: 0 6px 28px #273cf7aa;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(102%) contrast(110%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--white-color);
  font-weight: 800;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--white-color);
}

.footer-column ul li a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--gold-color);
}

.footer-column ul li i {
  margin-right: 8px;
  color: var(--secondary-color);
}

.footer-bottom {
  position: relative;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--white-color);
}

.footer-bottom::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--secondary-color), var(--third-color));
  opacity: 0.5;
}

.footer-bottom-inner {
  width: var(--global-width);
  max-width: var(--global-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 8px 0 8px;
}
.footer-copyright {
  color: #d7d5ef;
  font-size: 0.97rem;
  margin: 0;
  text-align: left;
}
.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.96rem;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.92;
  transition: opacity .13s;
}
.footer-links a:hover {
  opacity: 1;
}
@media (max-width: 700px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 3px;
    width: 99vw;
    max-width: 99vw;
    padding: 0 2vw;
  }
  .footer-links { margin-top: 1px; flex-wrap: wrap; }
}

.svg-link {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    justify-content: center;
}

.svg-icon {
    vertical-align: middle; /* Helps with inline alignment */
} 

/* ===== Tablet Responsive (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 50px;
  }

  .hero{
    padding: 160px 6.5% 80px;
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .btn-free-trial {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero .tagline {
    font-size: 1.3rem;
  }

  .hero .description {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ===== Mobile Responsive (max-width: 768px) ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 5vw;
  }

  .burger {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(6, 3, 39, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease;
    padding: 20px;
  }

  .nav-right.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .nav-links li a {
    font-size: 1.1rem;
  }

  .btn-free-trial {
    margin: 0;
  }

  .hero {
    padding: 120px 7% 60px;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  .hero .description {
    font-size: 0.95rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }

  .btn-outline,
  .btn-outline-border,
  .btn-filled {
    padding: 10px 24px;
    font-size: 0.7rem;
  }

  .footer {
    padding: 40px 5vw 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column ul {
    text-align: center;
  }
}

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
  .logo img {
    width: 60px;
    height: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .hero .description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-outline,
  .btn-outline-border,
  .btn-filled {
    width: 100%;
    text-align: center;
  }

  .hero-host-box, .countdown-cta-btn{
    font-size: 0.7rem;
  }

  .about-main-heading,
  .about-event-heading{
    font-size: 2.3rem;
  }

  .about-desc{
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .social-icons { gap: 18px; }
  .social-icon { width: 46px; height: 46px; border-radius: 8px; }
  .social-label { font-size: 1rem; }
}