
    :root{
      --primary:#f97316;
      --primary-dark:#ea580c;
      --accent:#0ea5e9;
      --bg-soft:#fff7ed;
      --text-main:#0f172a;
      --text-muted:#6b7280;
      --border-soft:#e5e7eb;
    }

    body{
      font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      color:var(--text-main);
      background:#ffffff;
      scroll-behavior:smooth;
    }

    a{text-decoration:none;}

    /* NAVBAR */
    .navbar{
      background:#ffffff;
      box-shadow:0 4px 16px rgba(15,23,42,.06);
    }
    .navbar-brand img{
      height:42px;
    }
    .nav-link{
      font-size:.9rem;
      font-weight:500;
      color:var(--text-main)!important;
    }
    .nav-link:hover{
      color:var(--primary)!important;
    }
    .btn-pill{
      border-radius:999px;
      padding:.5rem 1.4rem;
      font-size:.86rem;
      font-weight:600;
    }
    .btn-primary-brand{
      background:linear-gradient(135deg,#f97316,#fb923c);
      border:none;
      color:#fff;
    }
    .btn-primary-brand:hover{
      background:linear-gradient(135deg,#ea580c,#f97316);
    }
    .btn-outline-brand{
      border-radius:999px;
      border:1px solid #cbd5f5;
      color:var(--text-main);
      background:#ffffff;
    }
    .btn-outline-brand:hover{
      border-color:var(--primary);
      color:var(--primary-dark);
    }

    /* HERO */
 
    .hero-form-card {
	background-color: #fff;
    box-shadow: 0px 0px 10.6px rgba(97, 97, 97, 0.15);
    border-radius: 20px;
    padding: 20px;
	}
 
	.hero-wrap {
    position: relative;
    background: #605c5c !important;
    padding: 80px 0;
    z-index: 1;
}

.hero-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* ← opacity control */
    z-index: -1;
}
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.25rem .9rem;
      border-radius:999px;
      border:1px dashed #fb923c;
      background:#fffbeb;
      font-size:.72rem;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:#b45309;
      margin-bottom:.7rem;
    }
    .hero-title{
      font-size:clamp(2rem,3.1vw,2.6rem);
      font-weight:800;
      line-height:1.1;
      margin-bottom:.6rem;
	  color: #fff;
    }
    .hero-title span{
      color:var(--primary);
    }
    .hero-sub{
      font-size:.95rem;
      color:#ffffff;
      max-width:32rem;
    }
    .hero-points{
      list-style:none;
      padding-left:0;
      margin:1rem 0 1.2rem;
      font-size:.86rem;
    }
    .hero-points li{
      display:flex;
      gap:.5rem;
      align-items:flex-start;
      margin-bottom:.35rem;
      color:#fff;
    }
    .hero-points i{
      color:#16a34a;
      margin-top:.05rem;
    }

    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:.7rem;
      align-items:center;
    }
    .hero-call{
      font-size:.86rem;
      color:var(--text-muted);
    }
    .hero-call span{
      font-weight:700;
      color:var(--primary-dark);
    }

    .hero-image-wrap{
      position:relative;
      text-align:center;
    }
    .hero-image-wrap img{
      max-width:100%;
      height:auto;
      filter:drop-shadow(0 18px 40px rgba(15,23,42,.22));
    }
    .hero-tag-card{
      position:absolute;
      bottom:10px;
      left:50%;
      transform:translateX(-50%);
      background:#ffffff;
      border-radius:999px;
      padding:.4rem 1.1rem;
      font-size:.76rem;
      box-shadow:0 10px 26px rgba(15,23,42,.16);
      display:flex;
      align-items:center;
      gap:.4rem;
    }
    .hero-tag-card i{
      color:var(--accent);
    }

    /* GENERIC SECTIONS */
    .section{
      padding:3.2rem 0;
    }
    .section-title{
      font-size:1.7rem;
      font-weight:700;
      margin-bottom:.4rem;
    }
    .section-sub{
      font-size:.9rem;
      color:var(--text-muted);
      max-width:32rem;
    }

    /* BENEFITS / OFFER */
    .offer-section{
      background:#f9fafb;
    }
    .offer-card{
      background:#ffffff;
      border-radius:1.2rem;
      padding:1.6rem 1.5rem;
      border:1px solid var(--border-soft);
      box-shadow:0 10px 28px rgba(15,23,42,.06);
    }
    .offer-highlight{
      font-size:1.2rem;
      font-weight:700;
      color:var(--primary-dark);
      margin-bottom:.6rem;
    }
    .offer-list{
      list-style:none;
      padding-left:0;
      margin:0;
      font-size:.88rem;
      color:var(--text-main);
    }
    .offer-list li{
      display:flex;
      align-items:flex-start;
      gap:.4rem;
      margin-bottom:.35rem;
    }
    .offer-list i{
      color:var(--primary);
      margin-top:.12rem;
    }

    /* TYPES OF HEARING AIDS */
    .types-section{
      background:#ffffff;
    }
    .type-card{
      background:#ffffff;
      border-radius:1.1rem;
      padding:1rem 1rem 1.2rem;
      text-align:center;
      border:1px solid var(--border-soft);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      height:100%;
    }
    .type-card img{
      max-width:80px;
      margin-bottom:.6rem;
    }
    .type-card h5{
      font-size:.98rem;
      font-weight:600;
      margin-bottom:.2rem;
    }
    .type-card p{
      font-size:.8rem;
      color:var(--text-muted);
      margin-bottom:0;
    }
    .type-card:hover{
      transform:translateY(-4px);
      box-shadow:0 14px 30px rgba(15,23,42,.12);
      border-color:var(--primary);
    }

    /* 3 STEP PROCESS */
    .steps-section{
      background:var(--bg-soft);
    }
    .step-card{
      background:#ffffff;
      border-radius:1.1rem;
      padding:1.4rem 1.3rem;
      border:1px solid var(--border-soft);
      height:100%;
    }
    .step-number{
      width:32px;
      height:32px;
      border-radius:999px;
      background:#fef3c7;
      color:#b45309;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      font-size:.85rem;
      margin-bottom:.6rem;
    }
    .step-card h5{
      font-size:1rem;
      margin-bottom:.3rem;
    }
    .step-card p{
      font-size:.86rem;
      color:var(--text-muted);
      margin-bottom:0;
    }

    /* WHY CHOOSE US */
    .why-section{
      background:#ffffff;
    }
    .why-pill{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      font-size:.75rem;
      padding:.22rem .7rem;
      border-radius:999px;
      background:#eff6ff;
      color:#1d4ed8;
      margin-bottom:.6rem;
    }
    .why-item{
      display:flex;
      gap:.8rem;
      align-items:flex-start;
      margin-bottom:1rem;
    }
    .why-icon{
      width:38px;
      height:38px;
      border-radius:999px;
      background:#f1f5f9;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--primary-dark);
      flex-shrink:0;
    }
    .why-item h6{
      font-size:.96rem;
      margin-bottom:.15rem;
    }
    .why-item p{
      font-size:.84rem;
      color:var(--text-muted);
      margin-bottom:0;
    }

    /* BRANDS */
    .brands-section{
      background:#f9fafb;
    }
    .brands-strip{
      display:flex;
      flex-wrap:wrap;
      gap:1.5rem;
      align-items:center;
      justify-content:center;
    }
    .brands-strip img{
      max-height:40px;
      filter:grayscale(100%);
      opacity:.9;
      transition:filter .2s ease, opacity .2s ease, transform .2s ease;
    }
    .brands-strip img:hover{
      filter:none;
      opacity:1;
      transform:translateY(-2px);
    }

    /* STATS */
    .stats-section{
      background:#ffffff;
    }
    .stats-wrapper{
      display:flex;
      flex-wrap:wrap;
      gap:20px;
      justify-content:space-between;
    }
    .stat-box{
      flex:1;
      min-width:150px;
      text-align:center;
      padding:1rem;
    }
    .stat-number{
      font-size:1.6rem;
      font-weight:800;
      color:var(--primary-dark);
    }
    .stat-label{
      font-size:.78rem;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:var(--text-muted);
    }

    /* FAQ */
    .faq-section{
      background:var(--bg-soft);
    }
    .accordion-button{
      font-size:.9rem;
      font-weight:500;
    }
    .accordion-body{
      font-size:.86rem;
      color:var(--text-muted);
    }

    /* TESTIMONIALS */
    .testi-section{
      background:#ffffff;
    }
    .testi-card{
      background:#f9fafb;
      border-radius:1.1rem;
      padding:1.4rem 1.3rem;
      border:1px solid #e5e7eb;
      height:100%;
    }
    .testi-quote{
      font-size:.88rem;
      color:var(--text-main);
      margin-bottom:.7rem;
    }
    .testi-name{
      font-weight:600;
      font-size:.9rem;
    }

    /* FINAL CTA */
    .cta-section{
      background:linear-gradient(135deg,#0f172a,#111827);
      color:#e5e7eb;
      padding:2.6rem 0;
    }
    .cta-section .section-title{
      color:#ffffff;
    }
    .cta-phone{
      font-size:1.3rem;
      font-weight:700;
      color:#fbbf24;
    }

    /* FOOTER */
    .footer{
      background:#020617;
      color:#9ca3af;
      font-size:.8rem;
      padding:1.6rem 0 1.2rem;
    }
    .footer a{
      color:#e5e7eb;
      text-decoration:none;
      font-size:.8rem;
    }
    .footer a:hover{
      color:#fbbf24;
    }

    @media(max-width:767.98px){
      .hero-wrap{
        padding-top:80px;
      }
      .hero-title{
        font-size:1.8rem;
      }
      .hero-image-wrap{
        margin-top:1.6rem;
      }
    }
  </style>
   <style>
.offers-compare-section{
  padding:60px 0;
  background:#f9fafc;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.offers-compare-section .container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.offers-title{
  text-align:center;
  font-size:2rem;
  font-weight:700;
  color:#0f172a;
  margin-bottom:30px;
}

.offers-table-wrapper{
  background:#ffffff;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,0.08);
  overflow:hidden;
}

.offers-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}

.offers-table th,
.offers-table td{
  padding:18px 20px;
  font-size:0.95rem;
  border-bottom:1px solid #e5e7eb;
}

.offers-table thead th{
  text-align:center;
  font-weight:700;
  color:#0f172a;
  background:#ffffff;
}

.offers-table thead th:first-child{
  text-align:left;
}

.offers-table tbody td:nth-child(2),
.offers-table thead th:nth-child(2){
  background:#c7dcff;   /* middle column blue */
}

.offers-table tbody tr:last-child td{
  border-bottom:none;
}

.offers-table td:first-child{
  text-align:left;
  color:#111827;
  font-weight:500;
}

.offers-table .center{
  text-align:center;
}

/* Check / Cross icons */
.icon-check,
.icon-cross{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:999px;
  font-size:16px;
  font-weight:700;
}

.icon-check{
  background:#0b63d1;
  color:#ffffff;
}
.icon-check::before{
  content:"\2713";
}

.icon-cross{
  border:2px solid #ef4444;
  color:#ef4444;
}
.icon-cross::before{
  content:"\2715";
}

/* ===================== */
/* 📱 MOBILE CARD LAYOUT */
/* ===================== */
@media (max-width: 768px){

  .offers-title{
    font-size:1.5rem;
  }

  .offers-table-wrapper{
    border-radius:0;
    box-shadow:none;
    background:transparent;
  }

  .offers-table{
    border-collapse:separate;
    border-spacing:0 12px;   /* gap between cards */
  }

  .offers-table thead{
    display:none;            /* hide header */
  }

  .offers-table tbody tr{
    display:block;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(15,23,42,0.08);
    overflow:hidden;
  }

  .offers-table tbody td{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 14px;
    border-bottom:1px solid #e5e7eb;
    font-size:0.9rem;
  }

  .offers-table tbody td:last-child{
    border-bottom:none;
  }

  /* First row: offer name only */
  .offers-table tbody td:first-child{
    font-weight:600;
    color:#0f172a;
    background:#eff6ff;
  }

  /* Add labels before check/cross on mobile */
  .offers-table tbody td:nth-child(2)::before{
    content:"Hear For Sure";
    font-size:0.8rem;
    color:#4b5563;
    margin-right:10px;
  }

  .offers-table tbody td:nth-child(3)::before{
    content:"Other Clinics";
    font-size:0.8rem;
    color:#4b5563;
    margin-right:10px;
  }

  /* remove blue background on mobile middle column */
  .offers-table tbody td:nth-child(2){
    background:#ffffff;
  }
}
/* Red stats strip */
.hfs-stats-strip{
  background:#b91c1c;              /* deep red */
  padding:18px 0;
  color:#fff;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.hfs-stats-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  text-align:center;
}

/* Individual item */
.hfs-stat-item{
  flex:1;
}

.hfs-stat-number{
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:.02em;
}

.hfs-stat-label{
  font-size:.9rem;
  margin-top:3px;
}

/* Mobile / tablet responsive */
@media (max-width: 768px){
  .hfs-stats-container{
    flex-wrap:wrap;
    row-gap:12px;
  }
  .hfs-stat-item{
    flex:0 0 50%;        /* 2–2 per row on mobile */
  }
  .hfs-stat-number{
    font-size:1.4rem;
  }
  .hfs-stat-label{
    font-size:.8rem;
  }
}

@media (max-width: 480px){
  .hfs-stat-item{
    flex:0 0 100%;       /* very small screen → 1 per row */
  }
}
.ha-models-section{
  padding:60px 0;
  background:#f9fafb;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.ha-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.ha-models-title{
  text-align:center;
  font-size:2.1rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:32px;
}

/* Grid */
.ha-model-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

/* Card */
.ha-model-card{
  background:#ffffff;
  border-radius:26px;
  padding:18px 18px 22px;
  box-shadow:0 18px 40px rgba(15,23,42,0.07);
  text-align:center;
  transition:transform .2s ease, box-shadow .2s ease;
}

.ha-model-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 50px rgba(15,23,42,0.12);
}

/* Image box (blue rounded border jaise screenshot mein) */
.ha-model-imgbox{
  border-radius:22px;
  border:2px solid #0b63d1;
  padding:18px 10px;
  margin-bottom:12px;
  min-height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f7fbff;
}

.ha-model-imgbox img{
  max-width:100%;
  max-height:170px;
  object-fit:contain;
}

/* Name */
.ha-model-name{
  font-size:.95rem;
  font-weight:600;
  color:#111827;
  margin-bottom:10px;
}

/* Button */
.ha-model-btn{
  display:inline-block;
  padding:.45rem 1.4rem;
  border-radius:999px;
  border:1px solid #0b63d1;
  background:#ffffff;
  color:#0b63d1;
  font-size:.85rem;
  font-weight:600;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,box-shadow .2s ease;
}

.ha-model-btn:hover{
  background:#0b63d1;
  color:#ffffff;
  box-shadow:0 10px 25px rgba(11,99,209,0.35);
}

/* Mobile tweaks */
@media (max-width:576px){
  .ha-models-title{
    font-size:1.6rem;
  }
}

/* ===== Left Vertical Rotated Button ===== */
.price-tab{
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  background: #ff6a00;
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 0px 0px 9px 9px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     font-size: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 999;
}

.price-tab span{
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Mobile: thoda chhota */
@media (max-width: 768px){
  .price-tab{
    padding: 6px 14px;
    font-size: 0.65rem;
  }
}

/* ===== Section + Big Download Button ===== */
.price-section{
  padding: 60px 0;
  background: #f3f7ff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-container{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.price-main-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg,#f97316,#ea580c);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(249,115,22,.5);
  text-transform: uppercase;
}

.price-main-btn:hover{
  background: linear-gradient(135deg,#ea580c,#c2410c);
  box-shadow: 0 16px 36px rgba(249,115,22,.65);
}

.price-main-btn i{
  font-size: 1rem;
}
.blink-hard {
    animation: blinker 1s step-end infinite;
}
.clinics-section{
  background:#f8fafc;
}

.clinic-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:14px 18px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  font-size:0.95rem;
  font-weight:500;
  color:#0f172a;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
  transition:all .25s ease;
}

.clinic-btn:hover{
  background:linear-gradient(135deg,#f97316,#ea580c);
  color:#ffffff;
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(249,115,22,.45);
}

/* ✅ NEW HERO STYLE (Second screenshot style) */
.gurgaon-hero{
  background:#ffffff;
  position:relative;
  overflow:hidden;
}

/* Background light rays (optional) */
.gurgaon-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("img/bg-rays.png") center/cover no-repeat;
  opacity:.12;
  pointer-events:none;
}

.hero-title{
  font-size:40px;
  font-weight:800;
  color:#0f172a;
  line-height:1.2;
  position:relative;
  z-index:2;
}
.hero-title span{
  color:#0b63d1;
}

.hero-sub{
  font-size:18px;
  color:#0f172a;
  font-weight:500;
  position:relative;
  z-index:2;
}

.hero-stats{
  position:relative;
  z-index:2;
}
.stat-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.stat-icon{
  width:52px;
  height:auto;
}
.stat-text{
  font-size:14px;
  color:#0f172a;
  font-weight:600;
  line-height:1.25;
}
.stat-text b{
  font-weight:800;
  color:#0b63d1;
}

.hero-points{
  font-size:20px;
  font-weight:500;
  color:#0f172a;
  padding-left:18px;
  margin-bottom:10px;
  position:relative;
  z-index:2;
}
.hero-points li{
  margin-bottom:8px;
}

.hero-brands{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
  position:relative;
  z-index:2;
}

.hero-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}
.hero-btn{
  background:#0b63d1;
  color:#ffffff;
  font-weight:700;
  padding:12px 18px;
  border-radius:10px;
  border:none;
  box-shadow:0 10px 28px rgba(11,99,209,.25);
}
.hero-btn:hover{
  background:#084db0;
  color:#ffffff;
}

.hero-product-img{
  max-width:330px;
  width:100%;
  height:auto;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.18));
}

/* Responsive */
@media(max-width:768px){
  .hero-title{font-size:28px;}
  .hero-sub{font-size:16px;}
  .hero-points{font-size:18px;}
  .hero-product-img{max-width:260px;}
}

