.dropdown-mega {
  position: static !important;
  /* parent ko static banaye */
}

.dropdown-mega .dropdown-menu {
  width: 100%;
  /* full width */
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  border: none;
  border-radius: 0;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #2d6a4f;
}

/* Headings */
.dropdown-mega h6 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #2e6930;
  text-transform: uppercase;
}

/* Links inside mega menu */
.dropdown-mega .dropdown-item {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-mega .dropdown-item:hover {
  color: #fff;
  background: #2e6930;
  padding-left: 8px;
  border-radius: 4px;
}

/* ===== Footer – Dark base with brand accents ===== */
:root {
  --brand-dark: #1b4328;
  /* deep green (from #337445) */
  --brand: #337445;
  --accent: #d9da52;
  /* yellow-green */
  --bottom: #0f2f1c;
  /* darker strip */
}

/* Top area */
.site-footer {
  background-color: var(--brand-dark);
  /* subtle golden glows – not harsh gradient */
  background-image:
    radial-gradient(900px 600px at 10% 15%, rgba(217, 218, 82, 0.18), transparent 60%),
    radial-gradient(700px 500px at 85% 25%, rgba(217, 218, 82, 0.12), transparent 60%);
  color: #fff;
  padding-top: 50px;
}




/* Headings */
.footer-widget__title {
  color: #fff;
  position: relative;
}

.footer-widget__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 3px;
}

/* Body text + links (force full opacity) */
.site-footer p,
.footer-widget__Explore-list a,
.footer-widget__Contact-list a {
  color: rgba(255, 255, 255, 0.92) !important;
  opacity: 1 !important;
}

.site-footer a:hover {
  color: #fff;
}

/* Icons accent */
.footer-icon,
.footer-widget__Contact-list .icon span {
  color: var(--accent) !important;
}

/* Subscribe pill keeps white */
.footer-widget__Contact-input-box input {
  background: #fff;
  color: #333;
}

/* Bottom bar */
.site-footer__bottom {
  background: var(--bottom);
  border-top: 1px solid rgba(217, 218, 82, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

/* Social icons – outlined gold, fill on hover */
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(217, 218, 82, 0.6);
  color: var(--accent);
  margin-left: 12px;
  transition: all .25s;
  content: none !important;
}

.site-footer__social a:hover {
  background: var(--accent);
  color: var(--bottom);
  border-color: var(--accent);
}

.main-slider .swiper-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  /* 1600x600 ratio maintain karega */
  overflow: hidden;
}

.main-slider .image-layer {
  width: 100%;
  height: 100%;
  background-size: cover;
  /* image ko crop karke fit karega */
  background-position: center;
  /* center me dikhayega */
}




/* ================= How to Work ==================== */
 /* Theme variables */
  :root {
    --hiw-c1: #5b8def;
    --hiw-c2: #6ee7b7;
    --hiw-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  #how-it-works .step-icon { font-size: 2.2rem; }
  #how-it-works .step-card { transition: transform .3s ease, box-shadow .3s ease; will-change: transform; }
  #how-it-works .step-card:hover { transform: translateY(-6px); box-shadow: var(--hiw-shadow); }
  #how-it-works .mini-card { background: #fff; }

  /* Decorative blobs */
  #how-it-works .decor--blob { position:absolute; width:420px; height:420px; filter: blur(40px); opacity:.25; z-index:0; }
  #how-it-works .decor--blob-a { top:-120px; left:-120px; background: radial-gradient(circle at 30% 30%, var(--hiw-c1), transparent 60%), radial-gradient(circle at 70% 70%, var(--hiw-c2), transparent 60%); animation: floatA 12s ease-in-out infinite; }
  #how-it-works .decor--blob-b { bottom:-140px; right:-140px; background: radial-gradient(circle at 70% 30%, var(--hiw-c2), transparent 60%), radial-gradient(circle at 30% 70%, var(--hiw-c1), transparent 60%); animation: floatB 14s ease-in-out infinite; }
  @keyframes floatA { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(20px, -20px) scale(1.05);} }
  @keyframes floatB { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-25px, 25px) scale(1.07);} }

  /* Subtle grid */
  #how-it-works .decor--grid { position:absolute; inset:0; background-image: linear-gradient(to right, rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,.04) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(ellipse at center, black 60%, transparent 85%); pointer-events:none; z-index:0; }

  /* SVG connectors animation (dash draw) */
  #how-it-works .hiw-connectors { position:absolute; left:0; right:0; top:3.2rem; height:160px; pointer-events:none; z-index:1; }
  #how-it-works .connector { stroke-dasharray: 6 10; opacity:.55; animation: dash 3s linear infinite; }
  @keyframes dash { to { stroke-dashoffset: -160; } }

  /* Reveal (CSS mode) */
  #how-it-works[data-anim="css"] .step-card { opacity:0; transform: translateY(20px) scale(.98); }
  #how-it-works[data-anim="css"].in-view .step-card { animation: cardIn .7s cubic-bezier(.2,.8,.2,1) forwards; }
  #how-it-works[data-anim="css"].in-view .step-card:nth-child(1) { animation-delay: 0.05s; }
  #how-it-works[data-anim="css"].in-view .step-card:nth-child(2) { animation-delay: 0.18s; }
  #how-it-works[data-anim="css"].in-view .step-card:nth-child(3) { animation-delay: 0.31s; }
  @keyframes cardIn { to { opacity:1; transform: translateY(0) scale(1); } }

  /* Parallax mode */
  #how-it-works[data-anim="parallax"] .step-card { will-change: transform; }

  /* Buttons */
  #how-it-works .btn-group .btn.active { pointer-events:none; }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    #how-it-works * { animation: none !important; transition: none !important; }
  }
  

/* ======================= Daily Mandi Price ==================== */
/* Section Background with Animated Gradient */
.mandi-section {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  background: #f9f9f9; /* halka base background */
}

.mandi-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 20%, rgba(0, 150, 136, 0.1), transparent 40%),
              radial-gradient(circle at 80% 30%, rgba(156, 39, 176, 0.1), transparent 40%),
              radial-gradient(circle at 50% 80%, rgba(255, 193, 7, 0.1), transparent 40%);
  animation: bgMove 25s linear infinite;
  z-index: 0;
}

@keyframes bgMove {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(50px,50px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

.mandi-section .container {
  position: relative;
  z-index: 1; /* content upar rahega */
}


/* ======================= Why Choose Us ==================== */
/* Particle background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0; left:0;
  z-index:0;
  background: linear-gradient(135deg,#eef3ff,#ffffff);
}

/* Cards */
.why-choose-card {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
  z-index: 1;
}
.why-choose-card i {
  font-size: 50px;
  color: #206733;
  margin-bottom: 20px;
}
.why-choose-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.why-choose-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color:#333;
}
.why-choose-card p {
  color:#555;
}

  
  
.promo-banner {
position: relative;
background-image: url('https://img.freepik.com/premium-photo/young-shoots-green-pea-microgreens-yellow_253362-4574.jpg?w=1480');
background-size: cover;
background-position: center;
padding: 60px 0;
overflow: hidden;
}
.promo-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.promo-banner .container {
position: relative;
z-index: 2;
}
.promo-banner h3,
.promo-banner p {
color: #fff;
}
.promo-banner a.btn {
font-weight: 500;
}
.swiper-container,
.swiper-slide,
.image-layer {
touch-action: manipulation; /* Prevents pinch-zoom and gestures */
user-select: none;          /* Disables double-tap selection */
pointer-events: auto;
}

/* Disable zooming effect on slider images */
.main-slider .image-layer {
    transform: none !important;
    transition: none !important;
    background-size: cover;   /* image ko fit rakhe */
    background-position: center center; 
}


/* ============ Home Mandi Slider =================== */


/* ==================== Bussiness Groth ============== */




