/* GOOGLE FONT: ANEK */
@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@300;400;500;600;700;800&display=swap');

/* ROOT THEME */
:root {
  --mandi-red: #e11d27;
  --mandi-red-dark: #b01218;
  --mandi-saffron: #f97316;
  --mandi-cream: #fff7ed;
  --mandi-text: #111827;
  --mandi-muted: #6b7280;
  --mandi-radius-lg: 18px;
  --mandi-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* GLOBAL RESET-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Anek Latin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mandi-text);
  background: var(--mandi-cream);
}

a {
  text-decoration: none;
}

/* Generic container */
.mandi-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0px;
}

/* ========== HEADER STYLES ========== */

.mandi-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffdf7ee;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #fed7aa;
}

.mandi-header-inner,
.net42-header-inner {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}



.mandi-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* LOGO AREA */
.mandi-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mandi-logo-img-wrapper {
  width: 250px;
  height: 150px;
  border-radius: 0px;
  overflow: hidden;
  background: #ffffff00;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff00;
}

.mandi-logo-img-wrapper img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}





/* NAV + CTAS (DESKTOP) */
.mandi-nav-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mandi-nav {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
}

.mandi-nav a {
  color: #374151;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.mandi-nav a:hover {
  border-bottom-color: var(--mandi-red);
  color: var(--mandi-red-dark);
}

.mandi-header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* BUTTONS */
.mandi-btn {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #fecaca;
  background: #ffffff;
  color: var(--mandi-red-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.mandi-btn-primary {
  background: linear-gradient(135deg, var(--mandi-red), var(--mandi-red-dark));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(248, 113, 113, 0.55);
}

.mandi-btn span {
  font-size: 1rem;
}

/* BURGER (MOBILE) */
.mandi-burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mandi-burger-line {
  width: 16px;
  height: 2px;
  background: var(--mandi-red-dark);
  border-radius: 999px;
  position: relative;
}

.mandi-burger-line::before,
.mandi-burger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--mandi-red-dark);
  border-radius: 999px;
}

.mandi-burger-line::before {
  top: -5px;
}

.mandi-burger-line::after {
  top: 5px;
}

/* MOBILE DROPDOWN */
.mandi-mobile-panel {
  display: none;
  border-top: 1px solid #fee2e2;
  background: #fffdfa;
}

.mandi-mobile-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mandi-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.mandi-mobile-nav a {
  color: #374151;
}

.mandi-mobile-nav a:hover {
  color: var(--mandi-red-dark);
}

.mandi-mobile-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 900px) {
  .mandi-nav-area {
    display: none;
  }

  .mandi-burger {
    display: flex;
  }
}

.mandi-mobile-panel.mandi-mobile-open {
  display: block;
}

/* ========== HERO SECTION ========== */

.mandi-hero {
  padding: 0px 0px 0px;
  background:
    radial-gradient(circle at top left, #fed7aa 0, transparent 55%),
    radial-gradient(circle at bottom right, #fecaca 0, transparent 55%),
    var(--mandi-cream);
}

.mandi-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .mandi-hero-grid {
    grid-template-columns: 1fr;
  }
}

.mandi-hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mandi-saffron);
}

.mandi-hero-title {
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 6px 0 8px;
}

@media (max-width: 640px) {
  .mandi-hero-title {
    font-size: 1.7rem;
  }
}

.mandi-hero-sub {
  font-size: 0.95rem;
  color: var(--mandi-muted);
  margin-bottom: 12px;
}

.mandi-hero-cultural {
  font-size: 0.9rem;
  color: #7c2d12;
  background: #fffbeb;
  border-radius: var(--mandi-radius-lg);
  padding: 8px 10px;
  border: 1px dashed #fed7aa;
  margin-bottom: 14px;
}

.mandi-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mandi-tag {
  padding: 4px 10px;
  font-size: 0.78rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
}

.mandi-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero visual */
.mandi-hero-visual {
  position: relative;
}

.mandi-hero-visual-inner {
  background: #ffffff;
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--mandi-shadow-soft);
  border: 1px solid #fed7aa;
  position: relative;
  overflow: hidden;
}

.mandi-hero-visual-inner::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, #fecaca, transparent 60%);
  top: -40px;
  right: -40px;
  opacity: 0.7;
}

.mandi-hero-image {
  width: 100%;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Small overlay card on hero */
.mandi-hero-plan-card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fffdf7;
  border-radius: 16px;
  padding: 8px 10px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  border: 1px solid #fed7aa;
  font-size: 0.8rem;
}

.mandi-hero-plan-title {
  font-weight: 600;
}

.mandi-hero-plan-price {
  font-weight: 700;
  color: var(--mandi-red-dark);
  font-size: 0.95rem;
}

/* ========== SECTIONS / CARDS ========== */

.mandi-section {
  padding: 20px 0;
}

.mandi-section-header {
  text-align: center;
  margin-bottom: 18px;
}

.mandi-section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mandi-red-dark);
}

.mandi-section-title {
  font-size: 1.5rem;
  margin: 4px 0 6px;
}

.mandi-section-sub {
  font-size: 0.9rem;
  color: var(--mandi-muted);
}

/* Plans grid */
.mandi-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .mandi-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mandi-plans-grid {
    grid-template-columns: 1fr;
  }
}

.mandi-plan-card {
  background: #ffffff;
  border-radius: var(--mandi-radius-lg);
  padding: 14px 12px;
  box-shadow: var(--mandi-shadow-soft);
  border: 1px solid #fee2e2;
  font-size: 0.88rem;
}

.mandi-plan-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: #fee2e2;
  color: #991b1b;
  margin-bottom: 4px;
}

.mandi-plan-speed {
  font-size: 1.2rem;
  font-weight: 700;
}

.mandi-plan-meta {
  font-size: 0.8rem;
  color: var(--mandi-muted);
  margin-bottom: 6px;
}

.mandi-plan-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mandi-red-dark);
}

.mandi-plan-price span {
  font-size: 0.8rem;
  color: var(--mandi-muted);
}

.mandi-plan-foot {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--mandi-muted);
}

/* Generic 3-column grid */
.mandi-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .mandi-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mandi-grid-3 {
    grid-template-columns: 1fr;
  }
}

.mandi-benefit-card {
  background: #fff;
  border-radius: var(--mandi-radius-lg);
  padding: 14px 12px;
  box-shadow: var(--mandi-shadow-soft);
  border: 1px solid #fee2e2;
  font-size: 0.88rem;
}

/* ========== WHATSAPP MODAL ========== */

.mandi-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 60;
}

.mandi-modal-backdrop.mandi-modal-active {
  display: flex;
}

.mandi-modal {
  width: 100%;
  max-width: 420px;
  background: #fffdf7;
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.35);
  position: relative;
}

.mandi-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  color: #9ca3af;
}

.mandi-modal-header-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mandi-saffron);
}

.mandi-modal-title {
  font-size: 1.2rem;
  margin: 4px 0 4px;
}

.mandi-modal-sub {
  font-size: 0.82rem;
  color: var(--mandi-muted);
  margin-bottom: 12px;
}

.mandi-modal-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mandi-field-label {
  font-size: 0.78rem;
  color: #4b5563;
  margin-bottom: 2px;
}

.mandi-input,
.mandi-textarea,
.mandi-select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 0.85rem;
  color: var(--mandi-text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.mandi-input::placeholder,
.mandi-textarea::placeholder {
  color: #9ca3af;
}

.mandi-input:focus,
.mandi-textarea:focus,
.mandi-select:focus {
  border-color: var(--mandi-red);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.4);
}

.mandi-textarea {
  min-height: 70px;
  resize: vertical;
}

.mandi-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.mandi-modal-btn {
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mandi-red), var(--mandi-red-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mandi-modal-btn span {
  font-size: 1rem;
}

.mandi-modal-confirm {
  font-size: 0.78rem;
  color: #15803d;
}

.mandi-modal-hint {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--mandi-muted);
}

/* ========== FOOTER ========== */

.mandi-footer {
  padding: 20px 0 28px;
  background: #111827;
  color: #9ca3af;
  font-size: 0.8rem;
  margin-top: 20px;
}

.mandi-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
/* ===== TOP BLACK BAR (LIKE ACT) ===== */
.mandi-topbar {
  background: #000000;
  color: #f9fafb;
  font-size: 0.8rem;
}

.mandi-topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mandi-topbar-btn {
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.mandi-topbar-btn--existing {
  background: #3f3f46;
  color: #f9fafb;
}

.mandi-topbar-btn--new {
  background: #f43f5e;
  color: #ffffff;
}

@media (max-width: 640px) {
  .mandi-topbar-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .mandi-topbar-btn {
    min-width: auto;
    padding-inline: 10px;
  }
}
/* ===== FLOATING GLOW BUTTONS (ALL PAGES) ===== */
.mandi-float-wrapper {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mandi-float-btn {
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  animation: mandiGlow 1.8s ease-in-out infinite alternate;
}

.mandi-float-btn span {
  font-size: 1.1rem;
}

.mandi-float-btn--new {
  background: linear-gradient(135deg, #e11d27, #f97316);
}

.mandi-float-btn--support {
  background: linear-gradient(135deg, #0f766e, #22c55e);
  animation-delay: 0.4s;
}

@keyframes mandiGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.6);
    transform: translateY(0);
  }
  100% {
    box-shadow: 0 0 24px 8px rgba(248, 113, 113, 0.85);
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .mandi-float-wrapper {
    right: 10px;
    bottom: 10px;
  }

  .mandi-float-btn {
    padding-inline: 10px;
    font-size: 0.72rem;
  }
}
/* ===== NAMASKARA ANIMATION BANNER (HOME ONLY) ===== */
.mandi-namaskara-banner {
  padding: 12px 0 6px;
  background: radial-gradient(circle at top left, #fecaca 0, transparent 55%),
              radial-gradient(circle at bottom right, #fed7aa 0, transparent 55%),
              #111827;
  color: #f9fafb;
}

.mandi-namaskara-card {
  max-width: 540px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(248, 113, 113, 0.3));
  border: 1px solid rgba(248, 250, 252, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: mandiNamaskaraIn 0.85s ease-out forwards, mandiNamaskaraPulse 3s ease-in-out 0.9s infinite alternate;
}

.mandi-namaskara-emoji {
  font-size: 1.4rem;
}

.mandi-namaskara-text-main {
  font-size: 1rem;
  font-weight: 700;
}

.mandi-namaskara-text-sub {
  font-size: 0.8rem;
  color: #e5e7eb;
}

@keyframes mandiNamaskaraIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mandiNamaskaraPulse {
  0% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 20px 50px rgba(248, 113, 113, 0.7);
  }
}
/* HERO HEIGHT – 2x promo height */
.mandi-hero-slider {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15,23,42,0.12);
  background: #000;
  height: 320px;        /* hero height */
}

.mandi-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* On very small phones, keep proportions */
@media (max-width: 640px) {
  .mandi-hero-slider {
    height: 360px;      /* still roughly 2x of promo (180px) */
  }
}
/* ===== FAQ STYLES ===== */
.mandi-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .mandi-faq-grid { grid-template-columns: 1fr; }
}
/* ===== WOW GRAPHIC STYLES — for SEO sections ===== */

/* container tweaks for these sections */
.mandi-wow-section {
  padding: 36px 0;
  position: relative;
}

/* unified header */
.mandi-wow-head {
  text-align: center;
  margin-bottom: 20px;
}
.mandi-wow-head .kicker {
  display:inline-block;
  font-weight:700;
  color:var(--mandi-red-dark);
  background:linear-gradient(90deg,#fff3e0,#ffe7d6);
  padding:6px 10px;
  border-radius:999px;
  font-size:0.8rem;
  letter-spacing:0.06em;
}
.mandi-wow-head h2 {
  font-size:1.6rem;
  margin:10px 0 6px;
  font-weight:800;
}

/* 1. Locality cards (grid of chips, big icons) */
.mandi-locality-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:12px;
  margin-top:18px;
}
.mandi-locality-card {
  background: linear-gradient(180deg,#fff,#fffaf5);
  border-radius:14px;
  padding:16px;
  box-shadow: 0 18px 40px rgba(11,20,32,0.06);
  border:1px solid rgba(251,207,199,0.5);
  display:flex;
  gap:12px;
  align-items:center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.mandi-locality-card:hover { transform: translateY(-6px); box-shadow:0 30px 60px rgba(11,20,32,0.12); }
.mandi-locality-card .icon {
  width:48px;height:48px;border-radius:10px;background:linear-gradient(135deg,var(--mandi-red),var(--mandi-red-dark));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;flex:0 0 48px;
}
.mandi-locality-card .info { font-weight:600; color:#1f2937; font-size:0.98rem; }
.mandi-locality-card .meta { display:block; font-size:0.82rem; color:var(--mandi-muted); font-weight:500; margin-top:6px; }

/* 2. Speed comparison — gradient cards with micro animation */
.mandi-speed-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap:12px; margin-top:18px; }
.mandi-speed-card {
  background: linear-gradient(135deg, rgba(225,29,39,0.95), rgba(249,115,22,0.85));
  color:#fff; padding:16px; border-radius:12px; box-shadow: 0 14px 40px rgba(231,65,51,0.12);
  transform-origin:center; transition: transform .22s cubic-bezier(.2,.9,.3,1);
}
.mandi-speed-card:hover { transform: translateY(-8px) scale(1.02); }
.mandi-speed-card .speed { font-size:1.45rem; font-weight:900; letter-spacing:0.02em; }
.mandi-speed-card .blurb { margin-top:6px; font-size:0.9rem; opacity:0.95; }

/* 3. Trust factors grid with icons */
.mandi-trust-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:14px; margin-top:18px; }
@media (max-width:900px) { .mandi-trust-grid { grid-template-columns: repeat(2,1fr); } }
.mandi-trust-card { background:#fff;border-radius:14px;padding:14px;border:1px solid #ffefe6;box-shadow:0 12px 30px rgba(15,23,42,0.06);display:flex;gap:12px;align-items:flex-start; }
.mandi-trust-card .ic { width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,#fff2e6,#ffd9d1);display:flex;align-items:center;justify-content:center; }
.mandi-trust-card strong{display:block;margin-bottom:6px;font-size:1rem;color:#0f172a;}

/* 4. Map preview card */
.mandi-map-card { margin-top:18px; border-radius:14px; overflow:hidden; border:1px solid #fee2e2; box-shadow:0 20px 40px rgba(15,23,42,0.08); display:flex; gap:0; }
.mandi-map-thumb { width:42%; min-height:160px; object-fit:cover; }
.mandi-map-content { padding:14px; display:flex; flex-direction:column; justify-content:center; gap:8px; }

/* 5. Testimonials slider (simple) */
.mandi-testi-wrap { margin-top:22px; position:relative; overflow:hidden; }
.mandi-testi-list { display:flex; gap:12px; transition: transform .6s cubic-bezier(.2,.9,.3,1); }
.mandi-testi { min-width:280px; background:linear-gradient(180deg,#fff,#fffef7); padding:14px;border-radius:14px;border:1px solid #ffefe6; box-shadow:0 16px 36px rgba(15,23,42,0.06); display:flex; gap:12px; align-items:flex-start; }
.mandi-testi img{ width:54px;height:54px;border-radius:999px; object-fit:cover; border:2px solid #fff; box-shadow:0 8px 20px rgba(0,0,0,0.08); }
.mandi-testi p{ margin:0; font-size:0.92rem; color:#111827; }

/* 6. Device grid icons */
.mandi-device-grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:12px; margin-top:18px; }
@media (max-width:900px){ .mandi-device-grid{ grid-template-columns: repeat(2,1fr); } }
.mandi-device { background:#fff;padding:12px;border-radius:12px; text-align:center; border:1px solid #ffeae0; box-shadow:0 12px 28px rgba(15,23,42,0.06); }
.mandi-device img{ width:44px;height:44px; display:block; margin: 0 auto 8px; }

/* 7. How it works steps (animated) */
.mandi-steps {
  display:grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
@media (max-width:900px){
  .mandi-steps{ grid-template-columns: 1fr; }
}

.mandi-step {
  background:linear-gradient(180deg,#3f0000,#630000);
  padding:14px;
  border-radius:12px;
  border:1px solid #993600;
  box-shadow:0 14px 32px rgba(15,23,42,0.06);
  /* make them visible by default */
  transform:none;
  opacity:1;
}


/* little shared CTA style */
.mandi-wow-cta { display:inline-flex; gap:8px; padding:10px 14px; border-radius:999px; align-items:center; justify-content:center; font-weight:800; box-shadow:0 12px 30px rgba(225,29,39,0.12); border:1px solid rgba(225,29,39,0.08); background: linear-gradient(90deg,var(--mandi-red),var(--mandi-red-dark)); color:#fff; }
/* ===== FRESH SECTIONS CSS (device, steps, map, testi, CTA) ===== */

/* Muted helper */
.muted { color: var(--mandi-muted); font-size:0.92rem; }

/* Device grid (already had, but ensured styles) */
.mandi-device-grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:12px; margin-top:18px; }
@media (max-width:900px){ .mandi-device-grid{ grid-template-columns: repeat(2,1fr); } }
.mandi-device { background:#fff;padding:12px;border-radius:12px; text-align:center; border:1px solid #ffeae0; box-shadow:0 12px 28px rgba(15,23,42,0.06); }
.mandi-device img{ width:44px;height:44px; display:block; margin: 0 auto 8px; }

/* Steps */
.mandi-steps { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:12px; margin-top:18px; }
@media (max-width:900px){ .mandi-steps{ grid-template-columns: 1fr; } }
.mandi-step { background:linear-gradient(180deg,#fff,#fffef7); padding:18px;border-radius:12px;border:1px solid #fff0e8; box-shadow:0 14px 32px rgba(15,23,42,0.06); }
.mandi-step .step-num { width:36px;height:36px;border-radius:999px;background:linear-gradient(135deg,var(--mandi-red),var(--mandi-red-dark)); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-weight:800; margin-bottom:8px; }

/* Map card */
.mandi-map-card { display:flex; gap:0;border-radius:14px; overflow:hidden; border:1px solid #fee2e2; background:#fff; box-shadow:0 20px 40px rgba(15,23,42,0.06); margin-top:18px; }
.mandi-map-thumb { width:42%; object-fit:cover; display:block; }
.mandi-map-content { padding:18px; }

/* Testimonials */
.mandi-testi-wrap { margin-top:18px; overflow:hidden; }
.mandi-testi-list { display:flex; gap:12px; transition: transform .6s ease; }
.mandi-testi { min-width:280px; background:linear-gradient(180deg,#fff,#fffef7); padding:14px;border-radius:14px;border:1px solid #ffefe6; box-shadow:0 16px 36px rgba(15,23,42,0.06); display:flex; gap:12px; align-items:flex-start; }
.mandi-testi img{ width:54px;height:54px;border-radius:999px; object-fit:cover; border:2px solid #fff; box-shadow:0 8px 20px rgba(0,0,0,0.08); }

/* Mini CTA and benefit card (reused) */
.mandi-benefit-card { background:#e0e0e0;border-radius:12px;padding:14px;border:1px solid #feece6; box-shadow:0 10px 28px rgba(15,23,42,0.06); }

/* ===== FULL-WIDTH IMAGE SWIPE STRIP (NO EXTRA BOXES) ===== */

.mandi-swipe-section {
  padding: 10px 0 20px;
  /* full-bleed: no container, no side padding */
}

/* track touches the edges of the viewport */
.mandi-swipe-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%); /* center full-bleed strip */
}

/* hide scrollbars (optional) */
.mandi-swipe-track::-webkit-scrollbar {
  height: 0;
}

/* each card = full width, 1080:540 ratio */
.mandi-swipe-card {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1;          /* 1080 x 540 */
  scroll-snap-align: center;
}

/* image fills entire card */
.mandi-swipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

/* white text overlay, nothing else */
.mandi-swipe-text {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  /* Only a bit of shadow so it stays readable regardless of image */
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* desktop: still full width, just taller screens */
@media (min-width: 900px) {
  .mandi-swipe-card {
    aspect-ratio: 2 / 0.9; /* slightly shorter on big screens if you want, tweak or remove */
  }
  .mandi-swipe-text {
    font-size: 1.05rem;
  }
}
/* ===== FEATURED PLAN CARDS (ACT STYLE) ===== */

.mandi-plan-strip {
  margin-top: 20px;
}

/* desktop: grid look; mobile: swipe strip */
.mandi-plan-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

/* hide scrollbar (optional) */
.mandi-plan-track::-webkit-scrollbar {
  height: 4px;
}
.mandi-plan-track::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 999px;
}

/* base card */
.mandi-plan-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #fee2e2;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  padding: 16px 16px 14px;
  scroll-snap-align: center;
  flex: 0 0 86%;
  max-width: 86%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* desktop: 3 in a row, no horizontal scroll feeling */
@media (min-width: 900px) {
  .mandi-plan-track {
    overflow-x: visible;
  }
  .mandi-plan-card {
    flex: 1 1 0;
    max-width: none;
    scroll-snap-align: none;
  }
}

/* top block */
.plan-top {
  margin-bottom: 10px;
}
.plan-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a16207;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan-speed {
  margin-top: 4px;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.plan-speed span {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 4px;
}
.plan-meta {
  font-size: 0.86rem;
  color: #6b7280;
}

/* router block */
.plan-router {
  margin: 10px 0;
  background: #fff7ed;
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-router img {
  width: 60px;
  height: auto;
}
.plan-router div {
  font-size: 0.86rem;
  font-weight: 600;
}

/* OTT block */
.plan-ott {
  margin-top: 8px;
}
.plan-ott-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4b5563;
}
.plan-ott-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.plan-ott-logos img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

/* benefit line */
.plan-benefit {
  margin-top: 10px;
  font-size: 0.86rem;
  color: #4b5563;
}

/* price + CTA row */
.plan-price-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price-main {
  font-size: 1.3rem;
  font-weight: 800;
}
.price-main span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 4px;
}
.price-note {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* CTA buttons */
.plan-cta {
  white-space: nowrap;
  font-size: 0.78rem;
  padding-inline: 14px;
}

.mandi-plan-strip-footer {
  margin-top: 14px;
  text-align: center;
}
.plan-view-all {
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 8px 18px;
}
/* ===== WHY MANDINET — RED GRADIENT WOW SECTION ===== */

.mandi-why {
  position: relative;
  overflow: hidden;
  padding: 40px 0 46px;
  background:
    radial-gradient(circle at top left, rgba(248,113,113,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(251,146,60,0.28), transparent 60%),
    linear-gradient(135deg, #3b0000, #8b0000);
  color: #f9fafb;
}

/* floating glow blobs */
.mandi-why::before,
.mandi-why::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}
.mandi-why::before {
  top: -80px;
  left: -60px;
  background: #f97316;
}
.mandi-why::after {
  bottom: -90px;
  right: -80px;
  background: #ef4444;
}

.mandi-why-inner {
  position: relative;
  z-index: 1;
}

/* header styling inside red section */
.mandi-why-header {
  text-align: center;
  color: #fefce8;
}
.mandi-why-header .mandi-section-kicker {
  background: rgba(0,0,0,0.35);
  border-radius: 999px;
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mandi-why-header .mandi-section-title {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 800;
}
.mandi-why-header .mandi-section-sub {
  margin-top: 8px;
  color: #fee2e2;
  font-size: 0.95rem;
}

/* grid */
.mandi-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 900px) {
  .mandi-why-grid {
    grid-template-columns: 1fr;
  }
}

/* cards */
.mandi-benefit-card {
  position: relative;
  background: linear-gradient(145deg, rgba(224, 224, 224, 0.85), rgba(245, 255, 209, 0.85));
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(254,202,202,0.7);
  box-shadow: 0 18px 40px rgba(15,23,42,0.45);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  overflow: hidden;
}

/* glow on hover */
.mandi-benefit-card::after {
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background: radial-gradient(circle at top left, rgba(248,250,252,0.16), transparent 55%);
  opacity:0;
  transition: opacity 0.25s ease;
  pointer-events:none;
}
.mandi-benefit-card:hover::after {
  opacity:1;
}

.icon-circle {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(248,250,252,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mandi-benefit-card .text strong {
  display:block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.mandi-benefit-card .text p {
  margin:0;
  font-size: 0.9rem;
  color:#fee2e2;
}

/* entry animation */
.mandi-benefit-wow {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mandi-benefit-wow.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* ===============================
   WHY MANDINET – WEBSITE THEMED
   =============================== */

.mandi-why-themed {
  padding: 46px 0;
  background: linear-gradient(180deg,#fff,#fff5f5);
}

/* soft kicker */
.mandi-kicker-soft {
  background: linear-gradient(135deg,#ffe4e6,#fee2e2);
  color: #991b1b;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* cards grid */
.mandi-themed-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

@media (max-width:900px){
  .mandi-themed-grid {
    grid-template-columns: 1fr;
  }
}

/* cards */
.mandi-themed-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid #fee2e2;
  box-shadow: 0 18px 34px rgba(15,23,42,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mandi-themed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15,23,42,0.12);
}

/* icon circles */
.mandi-icon {
  width:44px;
  height:44px;
  border-radius:999px;
  background:
   linear-gradient(135deg,#fecaca,#fee2e2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* typography */
.mandi-themed-card h4 {
  margin:0 0 6px;
  font-size: 1.05rem;
  color:#7f1d1d;
}
.mandi-themed-card p {
  margin:0;
  font-size: 0.9rem;
  color:#4b5563;
  line-height:1.6;
}

/* scroll animation */
.mandi-fade {
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.mandi-fade.visible {
  opacity:1;
  transform:none;
}
/* ===== VOICES OF BENGALURU – TESTIMONIALS ===== */

.mandi-testi-section {
  padding: 40px 0 46px;
  background: linear-gradient(180deg,#fff,#fff7f7);
}

.mandi-testi-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .mandi-testi-grid {
    grid-template-columns: 1fr;
  }
}

.mandi-testi-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid #fee2e2;
  box-shadow: 0 18px 38px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* animation start state */
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mandi-testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mandi-testi-top {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mandi-testi-top img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.mandi-testi-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.mandi-testi-loc {
  font-size: 0.8rem;
  color: #6b7280;
}

.mandi-testi-stars {
  font-size: 0.8rem;
  color: #f97316;
}

.mandi-testi-text {
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}
/* ================================
   SWIPE TESTIMONIAL SLIDER
================================ */

.mandi-testimonial-slider {
  padding: 40px 0;
  background: linear-gradient(180deg,#fff,#fff7f7);
}

/* slider container */
.mandi-testi-slider {
  overflow: hidden;
  margin-top: 24px;
}

/* horizontal strip */
.mandi-testi-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  /* hide scrollbar */
  scrollbar-width: none;
}
.mandi-testi-track::-webkit-scrollbar {
  display: none;
}

/* each card takes full visible width */
.mandi-testi-card {
  flex: 0 0 100%;
  max-width: 100%;

  scroll-snap-align: center;

  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 18px;
  border: 1px solid #fee2e2;
  box-shadow: 0 18px 38px rgba(15,23,42,0.08);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* top layout */
.mandi-testi-top {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mandi-testi-top img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

/* text */
.mandi-testi-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.mandi-testi-loc {
  font-size: 0.8rem;
  color: #6b7280;
}

.mandi-testi-stars {
  font-size: 0.8rem;
  color: #f97316;
}

.mandi-testi-text {
  margin: 2px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
}
/* =========================================
   DESKTOP: HIDE SECOND HERO / SWIPE STRIP
   MOBILE: SHOW IT
========================================= */

/* Default: show swipe section (mobile-first) */
.mandi-swipe-section {
  display: block;
}

/* Desktop & Laptop: hide swipe section */
@media (min-width: 1024px) {
  .mandi-swipe-section {
    display: none !important;
  }
}
/* ===== B2C PLAN SWIPE CARDS ===== */

.mandi-b2c-plans {
  background: linear-gradient(180deg,#fff,#fff5f5);
  padding: 44px 0;
}

.mandi-plan-slider {
  margin-top: 24px;
  overflow: hidden;
}

.mandi-plan-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mandi-plan-track::-webkit-scrollbar {
  display: none;
}

/* Each card = one full swipe */
.mandi-b2c-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;

  background: #ffffff;
  border-radius: 20px;
  padding: 22px 18px;
  border: 1px solid #fee2e2;
  box-shadow: 0 22px 44px rgba(15,23,42,0.10);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* desktop: card stays centered */
@media (min-width: 900px) {
  .mandi-b2c-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg,#ef4444,#dc2626);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.plan-speed-big {
  font-size: 2.6rem;
  font-weight: 900;
  color: #7f1d1d;
}
.plan-speed-big span {
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-duration {
  display: flex;
  gap: 20px;
  text-align: center;
}
.plan-duration div {
  background: #fff1f2;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.plan-benefits li {
  padding: 8px 0;
  border-bottom: 1px dashed #fecaca;
  font-size: 0.9rem;
  text-align: center;
}
.plan-benefits li:last-child {
  border-bottom: none;
}
.mandi-plan-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
@media(max-width:900px){
  .mandi-plan-grid { grid-template-columns: 1fr; }
}

.mandi-simple-plan {
  background:#fff;
  border-radius:16px;
  padding:18px;
  border:1px solid #fee2e2;
  box-shadow:0 16px 34px rgba(0,0,0,0.08);
  position:relative;
}
.mandi-simple-plan .price {
  font-size:1.4rem;
  font-weight:800;
  margin:8px 0;
}
.mandi-simple-plan ul {
  padding-left:16px;
  color:#4b5563;
}

.mandi-sme-table {
  width:100%;
  border-collapse:collapse;
}
.mandi-sme-table th,
.mandi-sme-table td {
  padding:12px;
  border-bottom:1px solid #fee2e2;
  text-align:center;
}
.mandi-sme-table thead {
  background:#fff1f2;
}
.highlight-row {
  background:#fff7ed;
  font-weight:700;
}
/* ==== FORCE LOGO VISIBILITY FIX ==== */
header,
.mandi-header,
.net42-header,
.mandi-header-inner,
.net42-header-inner,
.mandi-logo-block {
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
  overflow: visible !important;
  line-height: normal !important;
}
