:root {
  --bg: #ffffff;
  --surface: #f5fbfd;
  --surface-2: #eef7fb;
  --primary: #0f5f8f;
  --primary-dark: #0b4d74;
  --teal: #0f8b8d;
  --accent: #22a6b3;
  --text: #133041;
  --muted: #5a7485;
  --line: #d9e8f0;
  --shadow-soft: 0 12px 35px rgba(15, 95, 143, 0.08);
  --shadow-card: 0 8px 24px rgba(8, 53, 82, 0.08);
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --section-gap: 88px;
  --gradient-primary: linear-gradient(135deg, #0f5f8f 0%, #22a6b3 100%);
  --gradient-soft: linear-gradient(180deg, #f8fdff 0%, #eef8fc 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth;
 width:100%;
    overflow-x:hidden;
}
body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.section { padding: var(--section-gap) 0; }
.section--soft { background: var(--gradient-soft); }
.text-center {
    text-align: center;
}
.eyebrow1 {
    width: 60px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  background: #e8f3fb;
  border: 1px solid #cce0ef;
}
.section-title {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 100%;
  font-size: 1.03rem;
}

.topbar {
  background: #eff7fb;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
header {
  position: relative;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #24506a;
  font-weight: 500;
}
.info-chip svg { width: 16px; height: 16px; fill: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--primary {
  background: var(--gradient-primary);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(15, 95, 143, 0.26);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 95, 143, 0.3);
}
.btn--outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid #b7d4e5;
}
.btn--outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: #88bbd8;
}
.btn--sm { height: 40px; padding: 0 16px; font-size: 0.88rem; }

.navbar {
  position: relative;
  top: auto;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  box-shadow: 0 8px 18px rgba(11, 68, 99, 0.12);
}
.navbar-spacer {
  height: 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #cfe3ef;
  background: #fff;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 290px;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.brand__title { margin: 0; font-size: 1rem; letter-spacing: -0.01em; color: #0f2f42; }
.brand__sub { margin: 2px 0 0; color: var(--muted); font-size: 0.78rem; font-weight: 500; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: #265068;
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.has-submenu > a::after {
  content: "▾";
  font-size: 0.72rem;
  margin-left: 6px;
  color: #5f8092;
}
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(11, 68, 99, 0.12);
  list-style: none;
  margin: 0;
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1300;
}
.submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.87rem;
  color: #2b5268;
  white-space: nowrap;
}
.submenu a:hover {
  color: var(--primary);
  background: #edf7fc;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.breadcrumb-strip {
  background: #eaf4fb;
  border-bottom: 1px solid #d2e4ef;
}
.breadcrumb-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #3f6479;
  font-size: 0.9rem;
}
.breadcrumb-inner a {
  text-decoration: none;
  color: #2f5972;
  font-weight: 500;
}
.breadcrumb-inner a:hover {
  color: var(--primary);
}
.breadcrumb-sep {
  color: #6d8a9a;
}
.breadcrumb-current {
  color: #1b4258;
  font-weight: 600;
}

.hero {
  background: radial-gradient(circle at 22% 18%, rgba(54, 162, 183, 0.15), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(15, 95, 143, 0.1), transparent 42%),
    #ffffff;
  padding: 74px 0 72px;
  border-bottom: 1px solid #ebf4f9;
}
.hero-slider {
  position: relative;
}
.hero-slider-track {
  display: flex;
  transition: transform 0.55s ease;
}
.hero-slide {
  min-width: 100%;
}
.hero-home {
  padding: 0;
  background: transparent;
  border-bottom: 1px solid #e1eef6;
}
.hero-slide-bg {
  position: relative;
  min-height: 620px;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 36, 53, 0.78) 10%, rgba(6, 36, 53, 0.45) 48%, rgba(6, 36, 53, 0.18) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 76px 0;
}
.hero-panel {
  max-width: 680px;
}
.hero-home .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.hero-home .hero-panel h1 {
  color: #ffffff;
  margin: 18px 0 12px;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.hero-home .hero-panel p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  font-size: 1.08rem;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero-home .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.hero-home .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.68);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0e2e3f;
}
.hero p { margin: 0; color: #4f6e80; font-size: 1.07rem; max-width: 640px;text-align:justify; }
.hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  /*min-height: 460px;*/
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider-controls {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 54px;
  z-index: 5;
}
.hero-slider-dots {
  margin-top: -34px;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slide-content {
  display: flex;
  justify-content: flex-start;
}
.hero-panel {
  padding: 8px 0 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c6dcea;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.hero-dot.active {
  background: var(--primary);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.card {
  background: #fff;
  border-radius: 18px;
  text-align:center;
  padding: 24px;
  border: 1px solid #e0ecf4;
  box-shadow: 0 10px 24px rgba(13, 70, 102, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(13, 70, 102, 0.12); }
.cards {padding: 14px 24px;}
.card h3 { margin: 0 0 8px; font-size: 1.16rem; }
.card p { margin: 0 0 14px; color: var(--muted); }
.card a { color: var(--primary); text-decoration: none; font-weight: 600; }
.card img {
    border-radius: 18px 18px 0px 0px;
}
.special .card {
 padding: 0px !important;   
}
.doctor-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.doctor-photo-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d6e8f3;
  box-shadow: var(--shadow-card);
  min-height: 420px;
}
.doctor-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor-content-card {
  background: #fff;
  border: 1px solid #d6e8f3;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  margin-top: 30px;
  align-items: start;
}
.trust-feature-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9e9f3;
  box-shadow: var(--shadow-card);
  min-height: 100%;
}
.trust-feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.trust-feature-content {
  padding: 20px;
}
.trust-feature-content h3 {
  margin: 0 0 8px;
  font-size: 1.26rem;
  line-height: 1.3;
  color: #11384d;
}
.trust-feature-content p {
  margin: 0;
  color: #557184;
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trust-point-card {
  background: #fff;
  border: 1px solid #d3e6f2;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(8, 57, 86, 0.05);
}
.trust-point-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #164259;
}
.trust-point-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5a7485;
}
.trust-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-metrics article {
  background: #fff;
  border: 1px solid #d6e8f2;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.trust-metrics h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.3rem;
}
.trust-metrics p {
  margin: 4px 0 0;
  font-size: 0.84rem;
  color: #5a7485;
}
.trust-contact-bar {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #cde2ef;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-contact-bar p {
  margin: 0;
  color: #365d72;
}
.trust-contact-bar a {
  color: var(--primary);
}

.pro-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pro-strip article {
  background: #fff;
  border: 1px solid #d6e8f2;
  border-radius: 12px;
  padding: 16px;
}
.pro-strip h3 {
  margin: 0 0 4px;
  color: #14435d;
  font-size: 1.06rem;
}
.pro-strip p {
  margin: 0;
  color: #5a7485;
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.process-card {
  background: #fff;
  border: 1px solid #d6e8f3;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(8, 57, 86, 0.05);
}
.process-card span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #e8f3fb;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #164259;
}
.process-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5a7485;
}

.faq-wrapper{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
  margin-top:40px;
}

.faq-grid{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top: 30px;
}
.faq-item {
  background: #fff;
  border: 1px solid #d6e8f3;
  border-radius: 14px;
  padding: 0 14px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  color: #15435b;
}
.faq-item p {
  margin: 0 0 14px;
  color: #5a7485;
}

.cta-panel {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #cde2ef;
  border-radius: 16px;
  padding: 18px;
  display: flex; /* inline-flex ki jagah flex */
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* 100px zyada hai */
  flex-wrap: nowrap; /* wrap hata diya */
}

.cta-panel p {
  margin: 0;
  color: #365d72;
  flex: 1; /* text ko space lene do */
}

.cta-panel .cta-btn {
  white-space: nowrap; /* button break na ho */
}
.testimonial-area{
position:relative;
display:flex;
align-items:center;
gap:20px;
margin-top:40px;
}

.testimonial-wrap{
overflow:hidden;
width:100%;
}

.testimonial-track{
display:flex;
gap:20px;
transition:transform .5s ease;
}

.testimonial-slide{

flex:0 0 calc(50% - 15px);

background:#fff;
border:1px solid #e4eef5;
border-radius:14px;
padding:30px;

display:grid;
grid-template-columns:80px 1fr;
gap:18px;
align-items:center;

box-shadow:0 6px 18px rgba(0,0,0,0.05);

}

.testimonial-slide img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
}

.stars{
color:#f4ab00;
margin-bottom:6px;
}

.carousel-btn{

width:45px;
height:45px;

border-radius:50%;
border:none;

background:#0e7490;
color:#fff;

font-size:20px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}

.carousel-btn:hover{
background:#075985;
}

@media(max-width:768px){

.testimonial-slide{
flex:0 0 100%;
}
}

@media(max-width:767px){
    .topbar {
        display: none;
}
.navbar__inner {
    flex-wrap: nowrap !important;
}
.faq-wrapper {
    display: block;
}
}


.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.journey-step {
  position: relative;
  border-radius: 14px;
  background: #f6fbff;
  border: 1px solid #d6e8f3;
  padding: 18px;
}
.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #bdd7e6;
}
.journey-num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e4f1f9;
  color: #0f5f8f;
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 10px;
}
.journey-step h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: #12364b;
}
.journey-step p {
  margin: 0;
  color: #557184;
  font-size: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.blogs {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px;
  margin-top: 34px;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d9e8f2;
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 77, 111, 0.07);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card-body {
  padding: 18px;
}
.blog-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #173d53;
}
.blog-card-body p {
  margin: 10px 0 14px;
  color: #567284;
  font-size: 0.92rem;
}
.blog-card-body a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.cta-banner {
  background: linear-gradient(120deg, #0f5f8f 0%, #0f8b8d 88%);
  color: #fff;
  border-radius: 22px;
  padding: 40px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 18px 34px rgba(12, 81, 117, 0.24);
}
.cta-banner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn--light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}
.btn--light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

.content-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
  margin-top: 28px;
}
.panel {
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.list-clean ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list-clean ul li {
  padding-left: 16px;
  position: relative;
  color: #32576d;
}
.list-clean ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.footer {
  background: #09354c;
  color: #d9eaf4;
  /*margin-top: 86px;*/
  padding: 60px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 26px; }
.footer h3,
.footer h4 { margin: 0 0 14px; color: #fff; }
.footer p,
.footer a,
.footer li { color: #c6dde9; font-size: 0.92rem; text-decoration: none; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 221, 233, 0.22);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #aecdde;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #21c063;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(23, 160, 83, 0.35);
  z-index: 1200;
}
.call {
    width: 180px;
}
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 1100px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .topbar__inner {
    min-height: auto;
    padding: 8px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .topbar__left,
  .topbar__right {
    width: 100%;
    gap: 10px;
  }
  .topbar__right { justify-content: flex-start; }
  .info-chip { font-size: 0.84rem; }

  .navbar__inner {
    min-height: 64px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .navbar__inner > .btn.btn--primary { display: none; }
  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px 0 12px;
  }
  .nav-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f4f9fc;
  }
  .navbar.nav-open .nav-links { display: flex; }
  .submenu {
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 4px 0 0 10px;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .submenu a {
    font-size: 0.84rem;
    background: #ecf5fb;
    white-space: normal;
  }
  .has-submenu > a::after { float: right; }
  .has-submenu.open .submenu { display: grid; }

  .hero__grid,
  .doctor-feature,
  .trust-layout,
  .grid-3,
  .trust-points,
  .trust-metrics,
  .pro-strip,
  .process-grid,
  .journey-grid,
  .blog-grid,
  .content-wrap,
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-slide { grid-template-columns: 1fr; }
  .journey-step:not(:last-child)::after { display: none; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .section { padding: 62px 0; }
  .hero { padding: 54px 0 48px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .section-title { font-size: clamp(1.5rem, 6.3vw, 2rem); }
  .hero-card { min-height: 300px; }
  .hero-home { padding: 0; }
  .hero-slide-bg { min-height: 560px; }
  .hero-slide-content { width: min(var(--container), calc(100% - 36px)); }
  .hero-slide-content { padding: 54px 0 88px; }
  .hero-home .hero-panel p { font-size: 0.98rem; }
  .hero-slider-controls { bottom: 22px; }
  .hero-slider-dots { margin-top: -20px; }
  .hero-panel { padding: 0; }
  .doctor-photo-card { min-height: 280px; }
  .testimonial-slide { padding: 22px; }
  .cta-banner { padding: 26px 20px; }
}

.panel p {
    color: #32576d;
}

.text-danger p{
    color: #b74c50;
}

.hero1 {
    padding: 30px 0;
}
.review {
    margin: 60px 0 0;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 991px) {

  .container {
    width: calc(100% - 30px);
  }

  .hero__grid,
  .doctor-feature,
  .trust-layout,
  .content-wrap,
  .faq-wrapper,
  .footer-grid,
  .blog-grid,
  .journey-grid,
  .process-grid,
  .pro-strip,
  .trust-points,
  .trust-metrics,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-slide-bg {
    min-height: auto;
  }

  .hero-slide-content {
    padding: 70px 0 100px;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero h1,
  .hero-home .hero-panel h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero p,
  .hero-home .hero-panel p {
    font-size: 16px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta-actions {
    width: 100%;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .journey-step::after {
    display: none;
  }

  .nav-links {
    overflow-y: auto;
    max-height: calc(100vh - 80px);
  }

  .submenu {
    width: 100%;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 767px) {

  :root {
    --section-gap: 55px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 20px);
  }

  .section {
    padding: 55px 0;
  }

  /* ===== HEADER ===== */

  .topbar {
    display: none;
  }

  .navbar__inner {
    min-height: 65px;
    flex-wrap: nowrap !important;
  }

  .brand {
    min-width: auto;
    width: auto;
    gap: 10px;
  }

  .brand__title {
    font-size: 14px;
  }

  .brand__sub {
    font-size: 11px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .nav-links {
    padding-top: 10px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px;
  }

  /* ===== HERO ===== */

  .hero {
    padding: 45px 0;
  }

  .hero-home {
    padding: 0;
  }

  .hero-slide-bg {
    min-height: 520px;
    background-position: center;
  }

  .hero-slide-content {
    width: calc(100% - 20px);
    padding: 55px 0 90px;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero h1,
  .hero-home .hero-panel h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero p,
  .hero-home .hero-panel p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .hero__actions {
    gap: 10px;
  }

  /*.btn {
    width: 100%;
    justify-content: center;
  }*/

  .hero-slider-dots {
    margin-top: -25px;
  }

  /* ===== SECTIONS ===== */

  .section-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* ===== CARDS ===== */

  .card,
  .doctor-content-card,
  .panel,
  .process-card,
  .trust-point-card,
  .journey-step,
  .faq-item {
    padding: 18px;
  }

  .cards {
    padding: 14px 18px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .doctor-photo-card {
    min-height: 280px;
  }

  .doctor-photo-card img,
  .hero-card img,
  .blog-card img,
  .trust-feature-card img {
    object-fit: cover;
  }

  /* ===== TRUST METRICS ===== */

  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ===== CTA ===== */

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

 /* .cta-panel .cta-btn,
  .cta-panel .btn {
    width: 100%;
  }*/

  .cta-banner {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  /* ===== TESTIMONIAL ===== */

  .testimonial-area {
    gap: 10px;
  }

  .testimonial-slide {
    padding: 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-slide img {
    margin: auto;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* ===== BLOG ===== */

  .blog-card-body {
    padding: 16px;
  }

  .blog-card-body h3 {
    font-size: 18px;
  }

  /* ===== FOOTER ===== */

  .footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    text-align: center;
  }

  /* ===== FLOATING ===== */

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .hero h1,
  .hero-home .hero-panel h1 {
    font-size: 20px;
  }

  .section-title {
    font-size: 18px;
  }

 .btn {
    height: 44px;
    font-size: 14px;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .process-card,
  .journey-step,
  .panel,
  .card {
    padding: 16px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }

  .hero-slide-content {
    padding-bottom: 80px;
  }
}
/* =========================
   NAVBAR RESPONSIVE FIX
   (OLD CSS KE END ME ADD KRO)
========================= */

@media (max-width: 1100px){

  .navbar__inner{
    min-height:70px;
    gap:12px;
  }

  .brand{
    min-width:auto;
    flex-shrink:0;
  }

  .brand img{
    max-width:190px;
    width:100%;
    height:auto;
  }

  .nav-links{
    gap:16px;
  }

  .nav-links a{
    font-size:14px;
  }

  .btn--primary{
    display:none;
  }
}

/* =========================
   MOBILE MENU
========================= */

@media (max-width: 991px){

  body{
    overflow-x:hidden;
  }

  .navbar{
    position:relative;
  }

  .navbar__inner{
    min-height:65px;
    flex-wrap:nowrap !important;
    gap:10px;
  }

  .brand{
    min-width:auto;
    width:auto;
  }

  .brand img{
    max-width:165px;
    width:100%;
    height:auto;
    display:block;
  }

  .nav-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
    flex-shrink:0;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;

    width:100%;
    background:#fff;

    border-top:1px solid #dbe8f1;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;

    gap:0;

    padding:12px 15px 20px;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:0.3s ease;

    z-index:999;

    max-height:calc(100vh - 65px);
    overflow-y:auto;
  }

  .navbar.nav-open .nav-links{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    display:flex;
  }

  .nav-item{
    width:100%;
  }

  .nav-links a{
    display:block;
    width:100%;
    padding:13px 14px;
    font-size:15px;

    border-bottom:1px solid #edf4f8;
    background:transparent;
  }

  /* ===== SUBMENU ===== */

  .submenu{
    position:static;

    min-width:100%;
    width:100%;

    border:none;
    box-shadow:none;
    background:#f6fbfe;

    padding:6px 0 6px 12px;
    margin-top:4px;

    opacity:1;
    visibility:visible;
    transform:none;

    display:none;
  }

  .submenu a{
    background:#edf6fb;
    border-radius:8px;
    margin-bottom:6px;
    padding:10px 12px;
    font-size:14px;
    white-space:normal;
  }

  .has-submenu.open .submenu{
    display:block;
  }

  .has-submenu > a::after{
    float:right;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:576px){

  .navbar__inner{
    min-height:62px;
  }

  .brand img{
    max-width:140px;
  }

  .nav-toggle{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .nav-links{
    padding:10px 12px 18px;
  }

  .nav-links a{
    font-size:14px;
    padding:12px;
  }
}

.blog-hero{
    padding-bottom: 60px;
}

.blog-hero-content{
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.blog-meta{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.blog-meta span{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 15px;
}

.blog-layout{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.blog-thumbnail{
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-thumbnail img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.blog-content{
    padding: 40px;
    margin-top: 20px;
}
.search-btn{
    position: absolute;
    top: 6px;
    right: 6px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #0f5f8f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-btn svg{
    display: block;
}

.blog-content h2{
    margin-top: 30px;
    margin-bottom: 14px;
}

.blog-content p{
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.blog-content img{
    width: 100%;
    border-radius: 18px;
    margin: 20px 0;
}

.blog-content blockquote{
    background: #f8f8f8;
    border-left: 4px solid #0d6efd;
    padding: 22px;
    border-radius: 14px;
    margin: 28px 0;
    font-style: italic;
}

.sidebar-widget{
    padding: 10px 28px 30px;
    margin-bottom: 15px;
}

.sidebar-widget h3{
    margin-bottom: 10px;
}

.blog-search{
    position: relative;
}

.blog-search input{
    width: 100%;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 55px 0 18px;
    outline: none;
}

.blog-search button{
    position: absolute;
    top: 6px;
    right: 6px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #0f5f8f;
    color: #fff;
    cursor: pointer;
}

.recent-blog-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.recent-blog-item{
    display: flex;
    gap: 14px;
}

.recent-blog-image{
    width: 90px;
    min-width: 90px;
    /*height: 90px;*/
    border-radius: 14px;
    overflow: hidden;
}

.recent-blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-blog-content h4{
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 0px;
}

.recent-blog-content h4 a{
    text-decoration: none;
    color: #111;
}

.recent-blog-content span{
    font-size: 12px;
    color: #777;
}

@media(max-width: 991px){

    .blog-layout{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .blog-thumbnail img{
        height: 260px;
    }

    .blog-content{
        padding: 24px;
    }

    .blog-meta{
        gap: 12px;
    }

}
.recent-blog-item ul li {
    padding-top: 5px;
}
.recent-blog-item ul li a {
    text-decoration : none;
    padding-top: 5px;
}



form .text-danger.has-error{
    color: #721c24;
}

.pagging{
    margin-top: 35px;
}

.pagination{
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}
.pagination .page-item:last-child .page-link a, .pagination .page-item:first-child .page-link a{
    padding: 0px 20px;
}

.pagination .page-link,
.pagination a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
   /* padding: 0 14px;*/
    border: 1px solid #0f5f8f;
    border-radius: 10px;
    color: #0f5f8f;
    text-decoration: none;
    background: #fff;
}

.pagination .active .page-link,
.pagination a:hover{
    background: #0f5f8f;
   /*border-color: #0f5f8f;*/
    color: #fff;
}

.comment-form h3,
.comment-list h3{
    margin-bottom: 20px;
}

.comment-form .form-group{
    margin-bottom: 16px;
}

.comment-form .form-control{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
}

.comment-form textarea.form-control{
    min-height: 150px;
}

.comment-form .btn{
    border: none;
    border-radius: 10px;
    background: #0f5f8f;
    color: #fff;
    padding: 14px 22px;
    cursor: pointer;
}

.comment-form .btn:disabled{
    opacity: .7;
    cursor: wait;
}

.alert{
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.alert-success{
    background: #e9f8ef;
    color: #146c2e;
}

.alert-danger{
    background: #fdecec;
    color: #9a1c1c;
}

.comment-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li{
    border-bottom: 1px solid #e8eef2;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.comment-list li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comment-list strong{
    display: block;
}

.comment-list span{
    display: block;
    color: #777;
    font-size: 13px;
    margin: 4px 0 8px;
}


.appointment-popup{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.75);
    z-index:999999;
}

.appointment-popup-content{
    background:#fff;
    width:90%;
    max-width:500px;
    padding:30px;
    border-radius:10px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.appointment-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
    font-weight:bold;
}

.appointment-popup-content h3{
    margin-bottom:20px;
}

.appointment-popup-content input,
.appointment-popup-content textarea{
    width:100%;
    padding:12px;
    margin-bottom:5px;
    border:1px solid #ddd;
    border-radius:5px;
}

.appointment-popup-content button{
    width:100%;
    padding:12px;
    background:var(--gradient-primary);
    color:#fff;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

form .text-danger.has-error {
    font-size: 12px;
}

.recent-blog-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.recent-blog-item li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.recent-blog-item li::before {
    content: "›";   /* you can also use "→" or "»" */
    position: absolute;
    left: 0;
    color: #0f5f8f; /* theme color */
    font-weight: bold;
}
