/* 
  ============================================================
  BookYourMaid - Premium Independence Day Theme 🇮🇳
  Hero Section CSS
  ============================================================
  Colors: Saffron (#FF9933), White (#FFFFFF), Green (#138808), Navy Blue (#000080)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --saffron: #FF9933;
  --saffron-dark: #E6851F;
  --white: #FFFFFF;
  --green: #138808;
  --green-dark: #0F6B06;
  --navy: #000080;
  --navy-light: #1a1aaa;
  --saffron-glow: rgba(255, 153, 51, 0.25);
  --green-glow: rgba(19, 136, 8, 0.25);
  --navy-glow: rgba(0, 0, 128, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-bg-dark: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
}

/* ── Typography ── */
.independence-theme h1,
.independence-theme h2,
.independence-theme h3,
.independence-theme h4,
.independence-theme h5,
.independence-theme h6 {
  font-family: 'Poppins', sans-serif;
}

.independence-theme p,
.independence-theme span,
.independence-theme label,
.independence-theme input,
.independence-theme select,
.independence-theme textarea,
.independence-theme button {
  font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════════
   HERO CONTAINER - Animated Tricolor Background
   ══════════════════════════════════════════════ */
.banner-img-bg.independence-theme {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Animated tricolor gradient background */
  background: 
    linear-gradient(135deg, 
      rgba(255, 153, 51, 0.12) 0%, 
      rgba(255, 255, 255, 0.95) 25%, 
      rgba(255, 255, 255, 1) 50%, 
      rgba(255, 255, 255, 0.95) 75%, 
      rgba(19, 136, 8, 0.12) 100%
    );
  background-size: 400% 400%;
  animation: heroGradientShift 12s ease infinite;
  padding: 1rem 0 1.2rem;
  z-index: 1;
}

/* Subtle diagonal stripe overlay */
.banner-img-bg.independence-theme::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 153, 51, 0.03) 40px,
    rgba(255, 153, 51, 0.03) 42px,
    transparent 42px,
    transparent 82px,
    rgba(19, 136, 8, 0.03) 82px,
    rgba(19, 136, 8, 0.03) 84px
  );
  z-index: 0;
  pointer-events: none;
}

/* Top tricolor bar */
.banner-img-bg.independence-theme::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron) 33.33%, var(--white) 33.33% 66.66%, var(--green) 66.66%);
  z-index: 100;
}

@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════
   ASHOKA CHAKRA - Background Spinner
   ══════════════════════════════════ */
.ashoka-chakra-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  animation: chakraSpin 60s linear infinite;
}

@keyframes chakraSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* CSS-only Ashoka Chakra */
.chakra-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border: 8px solid var(--navy);
  border-radius: 50%;
}

.chakra-wheel::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
}

.chakra-wheel::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--navy) 0deg 2.5deg,
      transparent 2.5deg 15deg
    );
  border-radius: 50%;
}

/* ══════════════════════════════════════════
   CONFETTI - Falling Tricolor Particles
   ══════════════════════════════════════════ */
.confetti-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 16px;
  top: -20px;
  opacity: 0.7;
  border-radius: 2px;
  animation: confettiFall linear infinite;
}

/* Tricolor confetti */
.confetti-piece:nth-child(3n+1) { background: var(--saffron); }
.confetti-piece:nth-child(3n+2) { background: var(--white); border: 1px solid #ddd; }
.confetti-piece:nth-child(3n)   { background: var(--green); }

/* Varied positions, speeds, and delays */
.confetti-piece:nth-child(1)  { left: 5%;  animation-duration: 7s;  animation-delay: 0s;   transform: rotate(15deg); }
.confetti-piece:nth-child(2)  { left: 12%; animation-duration: 9s;  animation-delay: 1.5s; transform: rotate(-20deg); }
.confetti-piece:nth-child(3)  { left: 20%; animation-duration: 6s;  animation-delay: 3s;   transform: rotate(45deg); }
.confetti-piece:nth-child(4)  { left: 28%; animation-duration: 11s; animation-delay: 0.5s; transform: rotate(-10deg); }
.confetti-piece:nth-child(5)  { left: 35%; animation-duration: 8s;  animation-delay: 2s;   transform: rotate(30deg); }
.confetti-piece:nth-child(6)  { left: 42%; animation-duration: 10s; animation-delay: 4s;   transform: rotate(-35deg); }
.confetti-piece:nth-child(7)  { left: 50%; animation-duration: 7.5s; animation-delay: 1s;  transform: rotate(60deg); }
.confetti-piece:nth-child(8)  { left: 58%; animation-duration: 9.5s; animation-delay: 3.5s; transform: rotate(-45deg); }
.confetti-piece:nth-child(9)  { left: 65%; animation-duration: 6.5s; animation-delay: 0.8s; transform: rotate(25deg); }
.confetti-piece:nth-child(10) { left: 72%; animation-duration: 8.5s; animation-delay: 2.5s; transform: rotate(-55deg); }
.confetti-piece:nth-child(11) { left: 80%; animation-duration: 7s;  animation-delay: 1.8s; transform: rotate(40deg); }
.confetti-piece:nth-child(12) { left: 88%; animation-duration: 10s; animation-delay: 0.3s; transform: rotate(-15deg); }
.confetti-piece:nth-child(13) { left: 95%; animation-duration: 8s;  animation-delay: 4.5s; transform: rotate(50deg); }
.confetti-piece:nth-child(14) { left: 8%;  animation-duration: 12s; animation-delay: 2.2s; transform: rotate(-30deg); }
.confetti-piece:nth-child(15) { left: 48%; animation-duration: 7.8s; animation-delay: 3.8s; transform: rotate(10deg); }

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotateZ(0deg);
    opacity: 0.8;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(110vh) rotateZ(720deg);
    opacity: 0;
  }
}

/* ══════════════════════════════════
   FIREWORK BURSTS - Corner Decor
   ══════════════════════════════════ */
.firework-burst {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.firework-burst::before,
.firework-burst::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.firework-burst.burst-1 {
  top: 8%; left: 5%;
  background: var(--saffron);
  box-shadow: 
    15px -15px 0 var(--saffron),
    -15px -15px 0 var(--green),
    15px 15px 0 var(--green),
    -15px 15px 0 var(--saffron),
    0 -22px 0 var(--white),
    0 22px 0 var(--white),
    22px 0 0 var(--saffron),
    -22px 0 0 var(--green);
  animation: burstPulse 3s ease-in-out infinite;
}

.firework-burst.burst-2 {
  top: 12%; right: 8%;
  background: var(--green);
  box-shadow: 
    12px -12px 0 var(--green),
    -12px -12px 0 var(--saffron),
    12px 12px 0 var(--saffron),
    -12px 12px 0 var(--green),
    0 -18px 0 var(--navy),
    0 18px 0 var(--navy),
    18px 0 0 var(--green),
    -18px 0 0 var(--saffron);
  animation: burstPulse 3s ease-in-out 1.5s infinite;
}

.firework-burst.burst-3 {
  bottom: 15%; left: 8%;
  background: var(--navy);
  box-shadow: 
    10px -10px 0 var(--saffron),
    -10px -10px 0 var(--green),
    10px 10px 0 var(--green),
    -10px 10px 0 var(--saffron);
  animation: burstPulse 4s ease-in-out 0.8s infinite;
}

@keyframes burstPulse {
  0%, 100% { transform: scale(0.6); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* ══════════════════════════════════════
   INDEPENDENCE DAY GREETING BADGE
   ══════════════════════════════════════ */
.independence-greeting {
  text-align: center;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 10;
}

.independence-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.15), 
    rgba(255, 255, 255, 0.9), 
    rgba(19, 136, 8, 0.15)
  );
  padding: 6px 28px;
  border-radius: 60px;
  border: 2px solid rgba(0, 0, 128, 0.15);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(255, 153, 51, 0.1),
    0 0 30px rgba(19, 136, 8, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.independence-badge .badge-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.independence-badge .badge-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: #555;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sparkle sweep animation */
.independence-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: badgeSparkle 3s ease-in-out infinite;
}

@keyframes badgeSparkle {
  0% { left: -60%; }
  100% { left: 160%; }
}

/* Sparkle dots */
.sparkle-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sparkleTwinkle 1.5s ease-in-out infinite;
}

.sparkle-dot:nth-child(1) { top: -8px; left: 20%; background: var(--saffron); animation-delay: 0s; }
.sparkle-dot:nth-child(2) { top: -5px; right: 15%; background: var(--green); animation-delay: 0.5s; }
.sparkle-dot:nth-child(3) { bottom: -8px; left: 40%; background: var(--navy); animation-delay: 1s; }
.sparkle-dot:nth-child(4) { bottom: -5px; right: 30%; background: var(--saffron); animation-delay: 0.3s; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ══════════════════════════════════════════
   DESKTOP JOB BUTTON - Tricolor Banner
   ══════════════════════════════════════════ */
.independence-theme .desktop-menu-job .btn-primary,
.independence-theme .mobile-menu-job .btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
  border-radius: 50px;
  padding: 10px 32px;
  box-shadow: 
    0 6px 20px rgba(0, 0, 128, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/*.independence-theme .desktop-menu-job .btn-primary::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: 0; left: 0; right: 0;*/
/*  height: 2px;*/
/*  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));*/
/*}*/

.independence-theme .desktop-menu-job .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 128, 0.4),
    0 0 20px var(--saffron-glow),
    0 0 20px var(--green-glow);
}

.independence-theme .desktop-menu-job .btn-primary a {
  color: white !important;
  text-decoration: none !important;
}

.independence-theme .desktop-menu-job .carousel-caption h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US CAROUSEL - Tricolor Frame
   ══════════════════════════════════════════════ */
.independence-theme .col-lg-6.col-md-5 {
  position: relative;
  z-index: 5;
}

.independence-theme .col-lg-6.col-md-5 > .carousel {
  background: var(--glass-bg);
  border-radius: 14px;
  padding: 0.8rem;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.06),
    0 0 0 2px var(--saffron),
    0 0 0 4px var(--white),
    0 0 0 6px var(--green);
  position: relative;
  overflow: hidden;
}

.independence-theme .col-lg-6.col-md-5 h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 6px;
}

/*.independence-theme .col-lg-6.col-md-5 h4::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: 0; left: 0;*/
/*  width: 80px;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, var(--saffron), var(--green));*/
/*  border-radius: 2px;*/
/*}*/

.independence-theme .carousel-item-img img {
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.independence-theme .carousel-item:hover .carousel-item-img img {
  transform: scale(1.03);
}

.independence-theme .carousel-captions h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-top: 0.8rem;
}

/* ══════════════════════════════════════════════
   SLIDER FORM - Glassmorphism + Tricolor Border
   ══════════════════════════════════════════════ */
.independence-theme .slider-form {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 
    0 10px 35px rgba(0, 0, 0, 0.08),
    0 0 20px var(--saffron-glow),
    0 0 20px var(--green-glow);
  overflow: hidden;
  z-index: 10;
  transition: all 0.4s ease;
}

.independence-theme .slider-form:hover {
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.12),
    0 0 40px var(--saffron-glow),
    0 0 40px var(--green-glow);
}

/* Animated tricolor gradient top border */
.independence-theme .slider-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, 
    var(--saffron), var(--saffron), 
    var(--white), var(--white), 
    var(--green), var(--green),
    var(--saffron)
  );
  background-size: 300% 100%;
  animation: tricolorBorderSlide 4s linear infinite;
}

/* Bottom glow line */
/*.independence-theme .slider-form::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: 0; left: 10%; right: 10%;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, transparent, var(--navy-glow), transparent);*/
/*  border-radius: 50%;*/
/*}*/

@keyframes tricolorBorderSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

/* Step Indicator */
.step-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0.8rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.4s ease;
  position: relative;
}

.step-dot.active-saffron {
  background: var(--saffron);
  box-shadow: 0 0 10px var(--saffron-glow);
}

.step-dot.active-white {
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 0 0 10px var(--navy-glow);
}

.step-dot.active-green {
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
}

.step-dot.active-navy {
  background: var(--navy);
  box-shadow: 0 0 10px var(--navy-glow);
}

.step-connector {
  width: 30px;
  height: 2px;
  background: #e0e0e0;
  align-self: center;
  transition: background 0.4s ease;
}

.step-connector.completed {
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

/* Form headings */
.independence-theme .slider-form h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Step transitions */
.independence-theme .step {
  display: none;
  animation: stepFadeIn 0.4s ease-out;
}

.independence-theme .step.active,
.independence-theme .step-1 {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form controls */
.independence-theme .slider-form .f-control,
.independence-theme .slider-form .form-control,
.independence-theme .slider-form .f-dropdown {
  /*border: 2px solid #eee;*/
  /*border-radius: 8px;*/
  /*padding: 6px 12px;*/
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.independence-theme .slider-form .form-control:focus,
.independence-theme .slider-form .f-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-glow);
  outline: none;
}

/* Radio Plan Cards */
.independence-theme .plans {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.independence-theme .plan {
  display: block;
  width: 100%;
  /*border: 2px solid #eee;*/
  /*border-radius: 10px;*/
  /*padding: 6px 12px;*/
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
}

.independence-theme .plan .plan-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.independence-theme .plan .plan-content-img {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.independence-theme .plan .plan-content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.independence-theme .plan:hover {
  border-color: var(--saffron);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.independence-theme .plan input:checked + .plan-content {
  border-color: var(--navy) !important;
}

.independence-theme .plan:has(input:checked) {
  border-color: var(--navy);
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.08), 
    rgba(255, 255, 255, 0.9), 
    rgba(19, 136, 8, 0.08)
  );
  box-shadow: 0 4px 20px var(--navy-glow);
}

.independence-theme .plan-details span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #333;
}

/* Gender Radio Buttons */
.independence-theme .radio-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.independence-theme .custom-radio {
  cursor: pointer;
  transition: all 0.3s ease;
}

.independence-theme .radio-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
}

.independence-theme .custom-radio input:checked + .radio-btn {
  border-color: var(--navy);
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.08), 
    rgba(255, 255, 255, 0.9), 
    rgba(19, 136, 8, 0.08)
  );
  box-shadow: 0 4px 20px var(--navy-glow);
}

.independence-theme .radio-btn:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
}

.independence-theme .hobbies-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 4px;
}

.independence-theme .hobbies-icon h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ══════════════════════════════════
   BUTTONS - Tricolor Gradient
   ══════════════════════════════════ */
.independence-theme .slider-form .btns {
  margin-top: 0.8rem;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.independence-theme .slider-form .btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  border: none;
  border-radius: 10px;
  padding: 7px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.independence-theme .slider-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(255, 153, 51, 0.4),
    0 0 15px var(--saffron-glow);
}

/* Hover gradient flip */
.independence-theme .slider-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.independence-theme .slider-form .btn-primary:hover::before {
  opacity: 1;
}

.independence-theme .slider-form .btn-success {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: none;
  border-radius: 10px;
  padding: 7px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(19, 136, 8, 0.3);
}

.independence-theme .slider-form .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(19, 136, 8, 0.4),
    0 0 15px var(--green-glow);
}

.independence-theme .slider-form .prev-step {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  box-shadow: none;
}

.independence-theme .slider-form .prev-step:hover {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 15px var(--navy-glow);
}

.independence-theme .slider-form .prev-step::before {
  display: none;
}

/* OTP Inputs */
.independence-theme .inputfield {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 1rem 0;
}

.independence-theme .inputfield .input {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: var(--navy);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.independence-theme .inputfield .input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px var(--navy-glow);
  outline: none;
}

/* Input group prefix */
.independence-theme .input-group-text {
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 10px 0 0 10px;
}

/* ══════════════════════════════════
   FLAG WAVE RIBBONS (decorative)
   ══════════════════════════════════ */
.flag-ribbon {
  position: absolute;
  width: 60px;
  height: 36px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.flag-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 33.33%;
  background: var(--saffron);
}

.flag-ribbon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 33.33%;
  background: var(--green);
}

.flag-ribbon.ribbon-tl { top: 15px; left: 15px; transform: rotate(-0deg); animation: ribbonWave 3s ease-in-out infinite; }
.flag-ribbon.ribbon-tr { top: 15px; right: 15px; transform: rotate(0deg); animation: ribbonWave 3s ease-in-out 0.5s infinite; }
.flag-ribbon.ribbon-bl { bottom: 15px; left: 15px; transform: rotate(15deg); animation: ribbonWave 3s ease-in-out 1s infinite; }
.flag-ribbon.ribbon-br { bottom: 15px; right: 15px; transform: rotate(-15deg); animation: ribbonWave 3s ease-in-out 1.5s infinite; }

@keyframes ribbonWave {
  0%, 100% { transform: rotate(-15deg) skewY(-3deg); }
  50% { transform: rotate(-15deg) skewY(3deg); }
}

.flag-ribbon.ribbon-tr { animation-name: ribbonWaveR; }
.flag-ribbon.ribbon-bl { animation-name: ribbonWaveR; }

@keyframes ribbonWaveR {
  0%, 100% { transform: rotate(15deg) skewY(3deg); }
  50% { transform: rotate(15deg) skewY(-3deg); }
}

/* ══════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════ */
@media (max-width: 1199px) {
  .independence-badge .badge-title {
    font-size: 1.2rem;
  }
  .ashoka-chakra-bg {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .banner-img-bg.independence-theme {
    padding: 1.5rem 0;
  }
  
  .independence-theme .slider-form {
    /*margin-top: 2rem;*/
    padding: 1.5rem;
  }
  
  .ashoka-chakra-bg {
    width: 300px;
    height: 300px;
    opacity: 0.03;
  }
  
  .firework-burst {
    display: none;
  }
  
  .independence-badge {
    padding: 10px 25px;
  }
  
  .independence-badge .badge-title {
    font-size: 1rem;
  }
  
  .flag-ribbon {
    width: 40px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .independence-theme .slider-form {
    padding: 1.2rem;
    border-radius: 16px;
  }
  
  .independence-theme .radio-buttons {
    gap: 8px;
  }
  
  .independence-badge .badge-subtitle {
    font-size: 0.7rem;
  }
  
  .independence-theme .col-lg-6.col-md-5 > .carousel {
    box-shadow: 
      0 0 0 2px var(--saffron),
      0 0 0 4px var(--white),
      0 0 0 6px var(--green);
  }
  
  .confetti-piece:nth-child(n+10) {
    display: none;
  }
}

@media (max-width: 576px) {
  .independence-badge {
    padding: 8px 18px;
  }
  
  .independence-badge .badge-title {
    font-size: 0.9rem;
  }
  
  .independence-theme .inputfield .input {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .independence-theme .slider-form .btn-primary,
  .independence-theme .slider-form .btn-success {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .flag-ribbon {
    display: none;
  }
}
