:root {
  --green: #08766f;
  --green-dark: #064f4b;
  --mint: #eefaf6;
  --cream: #fffaf0;
  --gold: #f2b84b;
  --orange: #d87937;
  --text: #123f3c;
  --muted: #5c7471;
  --line: #d8ebe6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans Devanagari", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.75;
  padding-bottom: 82px;
}

a {
  text-decoration: none;
}

.call-btn {
  background: linear-gradient(135deg, var(--gold), #ffd978);
  color: #2c2308;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  box-shadow: 0 12px 28px rgba(242, 184, 75, 0.35);
  transition: 0.25s ease;
  white-space: nowrap;
}

.call-btn:hover {
  color: #2c2308;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(242, 184, 75, 0.48);
}

.top-note {
  background: #063f3c;
  color: #e9fffb;
  padding: 9px 0;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

.main-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 5px 0;
  position: relative;
  z-index: 5;
}

.logo-text img {
  min-width: 180px;
}

/* New Layout Hero */
.hero-section {
  background: linear-gradient(115deg, #f7fffc 0%, #ffffff 50%, #fff7e8 100%);
  padding: 58px 0 30px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  width: 480px;
  height: 480px;
  background: rgba(8, 118, 111, 0.08);
  border-radius: 50%;
  position: absolute;
  left: -210px;
  top: -160px;
}

.hero-section::after {
  content: "";
  width: 360px;
  height: 360px;
  background: rgba(242, 184, 75, 0.18);
  border-radius: 50%;
  position: absolute;
  right: -150px;
  bottom: -140px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5px;
  align-items: center;
}

.alert-dashboard {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(6, 79, 75, 0.12);
  position: relative;
}

.dashboard-top {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  border-radius: 26px;
  padding: 26px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.dashboard-top::after {
  content: "";
  width: 170px;
  height: 170px;
  border: 24px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  right: -55px;
  top: -55px;
}

.dashboard-top .tag {
  background: rgba(255, 255, 255, 0.14);
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 14px;
}

.dashboard-top h1 {
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 12px;
  max-width: 620px;
}

.dashboard-top p {
  color: #d9fbf6;
  margin: 0;
  font-size: 17px;
  max-width: 590px;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 16px;
}

.mini-stat {
  background: #f6fffc;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 5px;
  text-align: center;
  line-height: 1;
}

.mini-stat strong {
  display: block;
  color: var(--orange);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.mini-stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow {
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-copy h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 22px;
}

.doctor-floating {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 5px;
  box-shadow: 0 20px 55px rgba(6, 79, 75, 0.12);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  max-width: 100%;
}

.doctor-photo {
  width: 118px;
  height: 118px;
  border-radius: 24px;
  object-fit: cover;
  background: #e6f8f3;
  border: 1px solid var(--line);
  flex: 0 0 118px;
}

.doctor-floating h3 {
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--green-dark);
}

.doctor-floating p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.doctor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.doctor-points span {
  background: var(--mint);
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 700;
}

section {
  padding: 58px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head span {
  color: var(--orange);
  font-weight: 800;
  display: block;
  /* margin-bottom: 6px; */
}

.section-head h2 {
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

/* Symptoms New Structure */
.symptom-panel {
  background: var(--mint);
  border-radius: 34px;
  padding: 30px;
  border: 1px solid var(--line);
}

.symptom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.symptom-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 18px;
  min-height: 145px;
  box-shadow: 0 12px 32px rgba(6, 79, 75, 0.06);
  position: relative;
  overflow: hidden;
}

.symptom-item::after {
  content: "";
  width: 70px;
  height: 70px;
  background: #fff4dd;
  border-radius: 50%;
  position: absolute;
  right: -24px;
  bottom: -24px;
}

.symptom-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #fff4dd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 13px;
  position: relative;
  z-index: 2;
}

.symptom-item h4 {
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.warning-text {
  background: #ffffff;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 18px 22px;
  margin-top: 24px;
  color: #385957;
  font-weight: 700;
}

/* Ayurveda Journey */
.journey-wrap {
  position: relative;
}

.journey-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 16px 42px rgba(6, 79, 75, 0.07);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.journey-card h4 {
  font-weight: 800;
  color: var(--green-dark);
  font-size: 20px;
  margin-bottom: 8px;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
}

/* Doctor About Split */
.doctor-about {
  background: linear-gradient(180deg, #ffffff, var(--cream));
}

.about-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6, 79, 75, 0.1);
}

.about-left {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  padding: 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left h2 {
  font-weight: 800;
  margin-bottom: 14px;
}

.about-left p {
  color: #dff8f4;
  margin: 0;
  font-size: 17px;
}

.about-right {
  padding: 15px;
}

.about-right p {
  color: #4a6764;
  margin-bottom: 14px;
  font-size: 17px;
}

.about-right p:last-child {
  margin-bottom: 0;
}

/* Hospital Trust */
.trust-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 22px;
  height: 100%;
  box-shadow: 0 14px 36px rgba(6, 79, 75, 0.06);
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.trust-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 30px;
}

.trust-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--green-dark);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Problems Pills */
.problem-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.problem-cloud span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: #315956;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(6, 79, 75, 0.05);
}

.final-box {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.14),
      transparent 35%
    ),
    linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  border-radius: 38px;
  padding: 44px 26px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.final-box h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  margin-bottom: 12px;
}

.final-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #e0faf6;
  font-size: 18px;
}

footer {
  background: #f8fcfb;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 15px;
  z-index: 999;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.08);
}

.sticky-call .call-btn {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  font-size: 18px;
  padding: 14px 20px;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .main-nav .call-btn {
    display: none;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero-section {
    padding: 38px 0 24px;
  }

  .alert-dashboard {
    padding: 16px;
    border-radius: 26px;
  }

  .dashboard-top {
    padding: 22px;
    border-radius: 22px;
  }

  .dashboard-bottom {
    /* grid-template-columns: 1fr; */
  }

  .doctor-floating {
    flex-direction: column;
    text-align: center;
    border-radius: 24px;
  }

  .doctor-photo {
    width: 100%;
    height: 300px;
  }

  section {
    padding: 44px 0;
  }

  .symptom-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .symptom-row {
    /* grid-template-columns: 1fr; */
  }

  .about-left,
  .about-right {
    padding: 15px;
  }

  .final-box {
    border-radius: 28px;
    padding: 34px 20px;
  }
}

.premium-call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 245px;
  padding: 5px 35px 5px 0px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Hind", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 2px solid #e8c46b;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.23) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    linear-gradient(135deg, #0c8f73 0%, #02785f 46%, #005846 100%);
  box-shadow:
    0 8px 18px rgba(0, 92, 70, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.28),
    inset 0 -4px 8px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: all 0.25s ease;
}

.premium-call-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 12px 26px rgba(0, 92, 70, 0.45),
    inset 0 2px 4px rgba(255, 255, 255, 0.32),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.premium-call-btn .call-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff1b7 0%, #dca73f 100%);
  color: #0b755f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 800;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.7),
    0 4px 10px rgba(0, 0, 0, 0.18);
}

.premium-call-btn::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 75px;
  right: 25px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.32),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.premium-call-btn::after {
  content: "✦";
  position: absolute;
  right: 12px;
  top: 7px;
  color: #ffe08a;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(255, 224, 138, 0.9);
}

.doctor-gallery-section {
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(255, 217, 120, 0.22),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(15, 122, 83, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fffc 0%, #ffffff 100%);
  overflow: hidden;
}

.doctor-gallery-wrap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.doctor-gallery-slider {
  margin: 28px -10px 0;
}

.doctor-gallery-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.doctor-gallery-slider .slick-slide {
  height: auto;
}

.doctor-gallery-slider .slick-slide > div {
  height: 100%;
}

.doctor-gallery-item {
  height: 100%;
  margin: 0 10px;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  display: block;
  width: calc(100% - 20px);
}

.doctor-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 122, 83, 0.14);
  box-shadow: 0 16px 36px rgba(8, 70, 47, 0.1);
  aspect-ratio: 4 / 5;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.doctor-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.doctor-gallery-card::after {
  content: "देखें";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f7a53;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.doctor-gallery-item:hover .doctor-gallery-card {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(8, 70, 47, 0.15);
}

.doctor-gallery-item:hover .doctor-gallery-card img {
  transform: scale(1.06);
}

.doctor-gallery-item:hover .doctor-gallery-card::after {
  opacity: 1;
  transform: translateY(0);
}

.doctor-gallery-slider .slick-prev,
.doctor-gallery-slider .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(8, 70, 47, 0.14);
  z-index: 2;
  transition: 0.25s ease;
}

.doctor-gallery-slider .slick-prev {
  left: -12px;
}

.doctor-gallery-slider .slick-next {
  right: -12px;
}

.doctor-gallery-slider .slick-prev:hover,
.doctor-gallery-slider .slick-next:hover,
.doctor-gallery-slider .slick-prev:focus,
.doctor-gallery-slider .slick-next:focus {
  background: #0f7a53;
}

.doctor-gallery-slider .slick-prev:before,
.doctor-gallery-slider .slick-next:before {
  color: #0f7a53;
  font-size: 24px;
  opacity: 1;
  line-height: 1;
}

.doctor-gallery-slider .slick-prev:hover:before,
.doctor-gallery-slider .slick-next:hover:before,
.doctor-gallery-slider .slick-prev:focus:before,
.doctor-gallery-slider .slick-next:focus:before {
  color: #ffffff;
}

.doctor-gallery-slider .slick-dots {
  bottom: -42px;
}

.doctor-gallery-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 4px;
}

.doctor-gallery-slider .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(15, 122, 83, 0.28);
  transition: 0.2s ease;
}

.doctor-gallery-slider .slick-dots li button:before {
  display: none;
}

.doctor-gallery-slider .slick-dots li.slick-active button {
  width: 26px;
  background: #0f7a53;
}

.doctor-gallery-note {
  margin-top: 66px;
  text-align: center;
  color: #6b8379;
  font-size: 0.9rem;
}

.doctor-gallery-modal .modal-content {
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.doctor-gallery-modal .modal-header {
  border-bottom: 1px solid #e8f3ee;
  background: #f8fffc;
}

.doctor-gallery-modal .modal-title {
  color: #123f2b;
  font-weight: 800;
}

.doctor-gallery-preview-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f8fffc;
  display: block;
}

@media (max-width: 991.98px) {
  .doctor-gallery-slider .slick-prev {
    left: 0;
  }

  .doctor-gallery-slider .slick-next {
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .doctor-gallery-slider {
    margin-left: -6px;
    margin-right: -6px;
  }

  .doctor-gallery-item {
    margin: 0 6px;
    width: calc(100% - 12px);
  }

  .doctor-gallery-card {
    border-radius: 18px;
    aspect-ratio: 4 / 5.2;
  }

  .doctor-gallery-card::after {
    opacity: 1;
    transform: none;
    left: 9px;
    right: 9px;
    bottom: 9px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .doctor-gallery-note {
    margin-top: 54px;
    font-size: 0.82rem;
  }
}

.customer-gallery-section {
  background: #f8fffc;
  padding: 80px 0;
  overflow: hidden;
}

.customer-gallery-section {
  background: #f8fffc;
  padding: 80px 0;
  overflow: hidden;
}

.gallery-row {
  align-items: stretch !important;
}

.gallery-row + .gallery-row {
  margin-top: 60px;
}

.single-gallery-image,
.gallery-img-box,
.gallery-content-box {
  height: 100%;
}

.gallery-img-box {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 45px rgba(17, 94, 54, 0.14);
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-img-box:hover img {
  transform: scale(1.06);
}

.gallery-content-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 36px;
  box-shadow: 0 18px 45px rgba(17, 94, 54, 0.1);
  border: 1px solid rgba(21, 128, 61, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-content-box span {
  display: inline-block;
  color: #0f8f55;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 16px;
}

.gallery-content-box h2 {
  font-size: 34px;
  font-weight: 800;
  color: #123f2b;
  margin-bottom: 16px;
  line-height: 1.25;
}

.gallery-content-box p {
  color: #52665c;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.gallery-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.gallery-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #253f32;
  font-weight: 600;
}

.gallery-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #0f8f55;
  color: #ffffff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (max-width: 991.98px) {
  .customer-gallery-section {
    padding: 60px 0;
  }

  .gallery-row + .gallery-row {
    margin-top: 45px;
  }

  .gallery-img-box img {
    min-height: 360px;
  }

  .gallery-content-box {
    padding: 32px 26px;
  }

  .gallery-content-box h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .customer-gallery-section {
    padding: 45px 0;
  }

  .gallery-row + .gallery-row {
    margin-top: 35px;
  }

  .gallery-img-box {
    border-radius: 20px;
  }

  .gallery-img-box img {
    height: 260px;
    min-height: 260px;
  }

  .gallery-content-box {
    height: auto;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .gallery-content-box h2 {
    font-size: 24px;
  }

  .gallery-content-box p {
    font-size: 15px;
  }

  .gallery-points li {
    font-size: 14px;
  }
}
