*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1a2e; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Navbar ── */
.navbar {
  background: #ffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 0.5px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { font-family: 'Poppins', sans-serif; font-size: clamp(16px, 5vw, 22px); font-weight: 800; line-height: 1; }
.logo .digi { color: #FC4242; }
.logo .fest { color: #1a1a2e; }
.logo .num { font-size: 9px; color: #FC4242; font-weight: 900; margin-left: 1px;  }
.navbar-right { display: flex; gap: 12px; align-items: center; }
.btn-register-nav {
  background: #FC4242; color: #fff;
  font-size: clamp(10px, 2.5vw, 13px); font-weight: 700;
  padding: 8px 16px; border-radius: 22px; border: none;
  font-family: 'Poppins', sans-serif;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: all 0.3s; }

/* Nav Drawer */
.nav-drawer { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid #eee; }
.nav-drawer.open { display: flex; }
.nav-drawer a { padding: 13px 22px; font-size: 14px; font-weight: 500; color: #333; border-bottom: 0.5px solid #f5f5f5; }
.nav-drawer a:hover { background: #fff5f2; color: #ff4f1f; }

/* ── Hero ── */
.hero {
  /* background: linear-gradient(90deg, #FC4242 0%, #ED7037 100%); */
  background-color: #FC4242;
  padding: clamp(24px, 5vw, 56px) clamp(0px, 0vw, 60px) 0;
  position: relative;
  min-height: clamp(220px, 30vh, 500px);
  height: auto;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 8vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  margin-left: 25px;
  max-width: 69%;       /* Prevents them from exceeding the parent's width */
}
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(12px, 3.5vw, 17px);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  margin-left: 25px;
  max-width: 69%; 

}
.hero-text {
  margin-top: 12px;
  margin-left: 7px;
}
/* ── Speaker ── */
.speaker {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: clamp(150px, 32vw, 280px);
  margin: 0;
  z-index: 1;
}
.speaker img {
  width: 100%;
  height: auto;
  display: block;
  position: static;
}

/* ── Ticker ── */
.ticker-wrap {
  background: #f5c518;
  padding: 0px 0;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  margin-top: -10px;
  position: relative;
  z-index: 10;
  margin-bottom: 0px;
  width: 100%;
  height: 22px;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 40s linear infinite;
  font-size: 12px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.4px;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Waves ── */
.waves-container {
  overflow: visible;
  position: relative;
  line-height: 0;
  padding: 0;
  margin: -3px;
  margin-top:13px;
  margin-bottom: -47px;
  width: 100%;
  z-index: 9;
}
.wave-svg { display: block; width: 100%; margin: 0; padding: 0; }
.waves-container svg {
  width: 100.7%;
  height: 65px;
}


/* ── About Section ── */
.section {
  padding: clamp(24px, 5vw, 56px) clamp(16px, 5vw, 80px);
  background: #fff;
  display: block;
  position: relative;
  margin: 40px auto;
}
.section-label {
  color: #FC4242;
  font-size: clamp(10px, 2.5vw, 12px);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section p {
  font-size: clamp(12px, 3vw, 14px);
  color: #666;
  line-height: 1.75;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-row {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: #FC4242; color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 3vw, 13px);
  font-weight: 700;
  padding: 10px 18px; border-radius: 24px; border: none;
}
.btn-outline {
  background: transparent; color: #FC4242;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 3vw, 13px);
  font-weight: 700;
  padding: 10px 18px; border-radius: 24px; border: 2px solid #FC4242;
}
.pill-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pill { background: #fff5f2; color: #FC4242; font-size: 11px; font-weight: 600; padding: 5px 13px; border-radius: 20px; border: 1px solid #ffcab8; }

/* ── Features strip ── */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: clamp(10px, 2.8vw, 13px);
  color: #666;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 360px) {
  .features span:nth-child(even) { display: none; }
}

/* ── Know More content ── */
.know-more-content {
  display: none;
  margin-bottom: 10px;
}
.know-more-content.open {
  display: block;
}

/* ── Decorative Icons ── */
.icons-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  /* overflow: hidden; */
}
.icon-crown {
  position: absolute;
  top: 20px; left: 38px;
  opacity: 1.85;
  transform: rotate(-15deg);
}

.icon-star {
  position: absolute;
  top: 60px; right: 0px;
  opacity: 1.8;
  transform: rotate(0deg);
}
.icon-flower {
  position: absolute;
  bottom: 132px; left: 0px;
  opacity: 1.75;
}
.icon-lightning {
  position: absolute;
  top: 75%; right: 10px;
  transform: translateY(-50%) rotate(5deg);
  opacity: 1.7;
}
.icon-diamond {
  position: absolute;
  bottom: -140px; right: 50px;
  opacity: 1.8;
  overflow: visible;
  transform: rotate(-24deg);
  
}
.dot {
  position: absolute;
  bottom: -27px; left: 25%;
  transform: rotate(-40deg);
  opacity: 1.6;
}
.icon {
  position: absolute;
  top: -17px; left: 60%;
  transform: translate(-50%, -30%) rotate(-10deg);
  opacity: 1.5;
}

@media (max-width: 400px) {
  .icon-crown svg     { width: 46px; height: 26px; }
  .icon-star svg      { width: 30px; height: 20px; }
  .icon-flower svg    { width: 32px; height: 95px; }
  .icon-lightning svg { width: 38px; height: 42px; }
  .icon-diamond svg   { width: 44px; height: 50px; }
}

/* ── Stats ── */
.stats-strip {
  background: #1a1a2e;
  padding: clamp(16px, 4vw, 28px) clamp(12px, 4vw, 60px);
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-num { font-family: 'Poppins', sans-serif; font-size: clamp(20px, 6vw, 28px); font-weight: 800; color: #f5c518; line-height: 1; }
.stat-label { font-size: clamp(9px, 2.5vw, 11px); color: #aaa; margin-top: 5px; font-weight: 500; }

/* ── Form ── */
.form-section {
  padding: clamp(20px, 5vw, 48px) clamp(14px, 5vw, 80px);
  background: #fafafa;
  border-top: 0.5px solid #eee;
  border-bottom: 0.5px solid #eee;
  height: 525px;
  margin-bottom: -50px;
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 800; color: #FC4242;
  text-align: center; margin-bottom: 20px; letter-spacing: 1.5px;
}
.form-card {
  background: #fff; border-radius: 20px;
  border: 1px solid #FC4242;
  padding: clamp(16px, 4vw, 28px) clamp(14px, 4vw, 24px);
  max-width: 520px;
  margin: 0 auto;
}
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: #555; margin-bottom: 6px; letter-spacing: 0.5px; }
.form-group label span { color: #FC4242; }
.form-group input {
  width: 100%; padding: 12px 14px;
  border-radius: 11px; border: 1px solid #e5e5e5;
  font-size: clamp(13px, 3.5vw, 15px); color: #333; background: #fafafa;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s;
}
.form-group input:focus { border-color: #FC4242; background: #fff; }
.form-group input::placeholder { color: #bbb; }

.form-group select {
  width: 100%; padding: 12px 14px;
  border-radius: 11px; border: 1px solid #e5e5e5;
  font-size: clamp(13px, 3.5vw, 15px); color: #bbb; background: #fafafa;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s;
  height: 45px;
}
.form-group select:focus { border-color: #FC4242; background: #fff; }
.form-group select.has-value { color: #333; }

.phone-input-wrap { position: relative; }
.phone-flag { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 16px; pointer-events: none; }
.phone-input-wrap input { padding-left: 36px; }
.submit-btn {
  width: 100%; background: #FC4242; color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 4vw, 16px);
  font-weight: 700;
  padding: clamp(12px, 3vw, 15px); border-radius: 13px; border: none; margin-top: 6px;
  letter-spacing: 0.5px; transition: background 0.2s, transform 0.1s;
}
.submit-btn:hover { background: #FC4242; }
.submit-btn:active { transform: scale(0.98); }

/* ── WhatsApp FAB ── */
.fab-row { display: flex; justify-content: flex-end; padding: 0 20px; margin-top: -15px; margin-bottom: 5px; position: relative; z-index: 10; }
.whatsapp-fab {
  background: #25d366; color: #fff;
  width: clamp(44px, 12vw, 54px);
  height: clamp(44px, 12vw, 54px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: clamp(22px, 6vw, 28px);
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  border: none; transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ── Footer ── */
.footer {
  background: #1a1a2e;
  padding: clamp(20px, 5vw, 40px) clamp(16px, 5vw, 60px) 22px;
  color: #fff;
}
.main_logo { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.footer-logo { font-family: 'Poppins', sans-serif; font-size: clamp(16px, 5vw, 22px); font-weight: 800; }
.footer-logo .digi { color: #FC4242; }
.footer-logo .num2 {color: #FC4242; font-size: 8px;}
/* .footer-logo sub { font-size: 10px; color: #aaa; font-weight: 400; } */
.fl_logo img { width: clamp(60px, 15vw, 100px); height: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 4vw, 28px);
  margin-bottom: 20px;
}

.footer-col h4 { font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.8px; margin-bottom: 10px; text-transform: uppercase; }
.footer-col a { display: block; font-size: clamp(11px, 3vw, 13px); color: #9a9a9a; margin-bottom: 12px; }
.footer-col a:hover { color: #FC4242; }
.footer-contact { font-size: clamp(11px, 3vw, 13px); color: #9a9a9a; line-height: 1.9; }
.footer-contact a { display: block; font-size: clamp(11px, 3vw, 13px); color: #9a9a9a; margin-bottom: 4px; }
.footer-contact a:hover { color: #FC4242; }
.footer-social { display: flex; gap: 3px; margin-bottom: 0px; }
.footer-social a {
  width: clamp(30px, 8vw, 38px);
  height: clamp(30px, 8vw, 38px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: clamp(14px, 4vw, 18px);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #FC4242; color: #FC4242; }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  font-size: clamp(9px, 2.5vw, 11px);
  color: #555; text-align: center; line-height: 1.8;
}
.footer-bottom a { color: #777; }
.footer-bottom a:hover { color: #FC4242; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a1a2e; color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 12px 24px; border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  z-index: 9999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════
   TABLET (600px – 1023px)
════════════════════════════ */
@media (min-width: 600px) {
  .hero { padding: 40px 1px 0; }
  .speaker { width: clamp(160px, 38vw, 360px); }
  .section { padding: 40px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .icon-crown { top: 16px; left: 20px; }
  .icon-star  { top: 20px; right: 20px; }
  .waves-container svg {
    height: 120px;
    width: 99.3%;
  }
}

/* ════════════════════════════
   DESKTOP (1024px+)
════════════════════════════ */
@media (min-width: 1024px) {
  .navbar { padding: 14px 48px; }
.logo .digi { font-size: 32px;}
.logo .fest {font-size: 32px; }
.logo .num {font-size: 12px;}
  .hero { padding: 60px 0px 0; min-height: 480px; margin-top: -10px;}
  .hero h1 { left: 25.6%;font-size: 80px; margin-top: 50px;}
  .hero p { left: 25.6%;font-size: 30px;}

  .speaker { width: clamp(240px, 30vw, 340px);
  left: 4%;top: 110px; overflow: hidden;
 }
  .ticker-wrap { margin-top: 0px; margin-bottom: -50px;height: 30px;padding: 3px 0px;}
  .section { padding: 56px 80px; max-width: 860px; margin: 60px auto;}

  .footer { padding: 40px 80px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .form-section { padding: 48px 80px;

}

  
  .stats-strip { padding: 28px 80px; }

  .icon-crown    {         top: 57px;
        left: -14px; }
  .icon-star     { top: 18px;
        right: 0px;
        transform: rotate(-34deg); }
  .icon-flower   { bottom: 20px; left: -160px; }
  .icon-lightning {         right: 148px;
        transform: rotate(-17deg); }
  .icon-diamond  {         bottom: -200px;
        right: 189px; }
  .icon {
            top: 350px;
        left: 933px;
  }
  .waves-container svg {
    height: 160px;
    margin-top: 70px; 
    margin-bottom: -70px;
    width: 100.3%;
    margin-left: -1px;
  }
  .hero-text {
  margin-top: 22px;
  margin-left: 70px;
}
.footer-logo .num2 {color: #FC4242; font-size: 11px;}
.footer-logo {font-size: 32px;}
.form-section {height: 570px;margin-bottom: -60px;}
}
@media (min-width: 1024px) {
  .icon-crown svg     { width: 56px; height: 46px; }
  .icon-star svg      { width: 50px; height: 40px; }
  .icon-flower svg    { width: 52px; height: 95px; }
  .icon-lightning svg { width: 58px; height: 62px; }
  .icon-diamond svg   { width: 64px; height: 70px; }
  .icon svg {width: 70px; height: 60px;}
}
/* hidden on mobile by default */
.hero-desktop-img {
  display: none;
}

/* only show on desktop */
@media (min-width: 1024px) {
  .hero-desktop-img {
    display: block;
    position: absolute;
    right: 3%;   /* adjust position */
    bottom: 0;
    width: 330px;  /* adjust size */
    z-index: 2;
    top: 53px
  }

  .hero-desktop-img svg {
    width: 100%;
    height: auto;
  }
}
.logo-digi img {
  width: 150px;
  height: auto;
  margin-top: 10px;
}
@media (min-width: 1800px) {
  .navbar { 
    padding: 62px 86px; 
  }
  .logo .digi { 
    font-size: 78px; 
  }
  .logo .fest { 
    font-size: 78px; 
  }
  .logo .num { 
    font-size: 26px; 
  }
  .hero { 
    padding: 100px 0px 0; 
    min-height: 720px; 
    margin-top: -15px; 
    height: 70vh;
  }
  .hero h1 { 
    left: 25.6%; 
    font-size: 220px; 
    margin-top: 80px; 
  }
  .hero p { 
    left: 25.6%; 
    font-size: 94px; 
  }

  .speaker { 
    width: clamp(360px, 85vw, 1200px);
    left: 6%; 
    top: 190px; 
    overflow: hidden;
  }
  .ticker-wrap { 
    margin-top: 0px; 
    margin-bottom: -80px; 
    height: 176px; 
    padding: 14px 0px; 
  }
  .ticker-track {
  display: inline-block;
  animation: ticker-scroll 20s linear infinite;
  font-size: 40px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.4px;
}
  .section { 
    padding: 84px 120px; 
    max-width: 1440px; 
    margin: 90px auto; 
  }

  .footer { 
    padding: 60px 120px 42px; 
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 64px; 
  }

  .form-section { 
    padding: 72px 120px;
    height: 850px; 
    margin-bottom: -90px;
  }

  .stats-strip { 
    padding: 42px 120px; 
  }

  /* Absolute position icons shifted out further for wide screens */
  .icon-crown { 
    top: 85px;
    left: -24px; 
  }
  .icon-star { 
    top: 28px;
    right: 0px;
    transform: rotate(-34deg); 
  }
  .icon-flower { 
    bottom: 30px; 
    left: -240px; 
  }
  .icon-lightning { 
    right: 220px;
    transform: rotate(-17deg); 
  }
  .icon-diamond { 
    bottom: -300px;
    right: 280px; 
  }
  .icon {
    top: 520px;
    left: 1600px; /* Shifted right to fit 1800px width */
  }
  
  .waves-container {
    margin-top: 200px;
  }

  .waves-container svg {
    height: 570px;
    margin-top: 200px; 
    margin-bottom: -200px;
    width: 100.3%;
    margin-left: -12px;
  }
  .hero-text {
    margin-top: 34px;
    margin-left: 110px;
  }
  .footer-logo .num2 { 
    color: #FC4242; 
    font-size: 16px; 
  }
  .footer-logo { 
    font-size: 48px; 
  }

  /* Icon SVG Sizing */
  .icon-crown svg     { width: 84px; height: 69px; }
  .icon-star svg      { width: 75px; height: 60px; }
  .icon-flower svg    { width: 78px; height: 142px; }
  .icon-lightning svg { width: 87px; height: 93px; }
  .icon-diamond svg   { width: 96px; height: 105px; }
  .icon svg           { width: 105px; height: 90px; }

  /* Desktop Hero Image Sizing */
  .hero-desktop-img {
    display: block;
    position: absolute;
    right: 5%;   
    bottom: 0;
    width: 500px;  /* Increased size for big screens */
    z-index: 2;
    top: 80px;
  }
  .hero-desktop-img svg {
    width: 100%;
    height: auto;
  }
}