:root {
  --stp-ink: #111111;
  --stp-ink-soft: #1f1f1f;
  --stp-bg: #f5f3ef;
  --stp-brand: #f3a43f;
  --stp-brand-deep: #cc7a1f;
  --stp-border: #e8dcc8;
  --stp-white: #ffffff;
  --stp-bottom: #0b1a33;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--stp-ink-soft);
  background: var(--stp-white);
}

.stp-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--stp-bg);
  border-bottom: 1px solid var(--stp-border);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.06);
}

.stp-navbar {
  padding: 0px 0;
}

.stp-brand img {
  height: 82px;
  width: auto;
  display: block;
  object-fit: contain;
}

.stp-toggler {
  border: 1px solid rgba(204, 122, 31, 0.35);
  border-radius: 12px;
  padding: 8px 10px;
}

.stp-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 164, 63, 0.25);
}

.stp-menu {
  align-items: center;
  gap: 6px;
}

.stp-nav-link {
  color: var(--stp-ink);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.stp-nav-link:hover {
  color: var(--stp-brand-deep);
  background: rgba(243, 164, 63, 0.16);
}

.stp-dropdown {
  border: 1px solid rgba(204, 122, 31, 0.22);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.1);
}

.stp-dropdown .dropdown-item {
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 8px 10px;
}

.stp-dropdown .dropdown-item:hover {
  background: rgba(243, 164, 63, 0.16);
  color: var(--stp-brand-deep);
}

.stp-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #f0912d, var(--stp-brand-deep));
  color: var(--stp-white);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.stp-call-btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  box-shadow: 0 12px 22px rgba(204, 122, 31, 0.35);
  color: var(--stp-white);
}

#main-footer {
  color: rgba(255, 255, 255, 0.92);
}

#main-footer .footer-top {
  position: relative;
  padding: 72px 0 44px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86)),
    url("../images/footer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.f-heading {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--stp-white);
  font-weight: 700;
}

.f-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--stp-brand);
  margin-top: 10px;
}

.f-desc {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.f-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 164, 63, 0.18);
  color: var(--stp-brand);
  border: 1px solid rgba(243, 164, 63, 0.38);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.f-socials a:hover {
  transform: translateY(-2px);
  background: var(--stp-brand);
  color: #111111;
}

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

.f-list li {
  margin-bottom: 12px;
}

.f-list a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.f-list a:hover {
  color: var(--stp-brand);
  padding-left: 4px;
}

.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.f-contact-row i {
  color: var(--stp-brand);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.f-contact-row span {
  line-height: 1.65;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.f-contact-row a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.f-contact-row a:hover {
  color: var(--stp-brand);
}

.f-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.f-gallery a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.f-gallery img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.f-gallery a:hover img {
  transform: scale(1.08);
}

.footer-bottom {
  background: var(--stp-bottom);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.93);
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 13px;
  bottom: 60px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111111;
  background: var(--stp-brand);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1090;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #f8b95b;
  color: #111111;
}

@media (max-width: 1199.98px) {
  .stp-brand img {
    height: 74px;
  }

  .stp-nav-link {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
}

@media (max-width: 991.98px) {
  /* .stp-navbar {
    padding: 8px 0;
  } */

  .stp-brand img {
    height: 68px;
  }

  .stp-menu {
    margin-top: 14px;
    align-items: flex-start;
    gap: 4px;
  }

  .stp-nav-link {
    width: 100%;
    border-radius: 10px;
  }

  .stp-call-btn {
    margin-top: 14px;
    width: 100%;
  }

  .f-heading {
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .stp-brand img {
    height: 60px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

.service-banner {
  position: relative;
  background: url("../images/service-banner.jpg") center center / cover
    no-repeat fixed;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
}

.service-banner h1 {
  font-weight: 600;
  color: #fff;
  z-index: 0;
}

.service-banner p,
.service-banner a {
  font-weight: 400;
  z-index: 999;
}

.services h2 {
  color: var(--stp-brand);
  margin-top: 50px;
}
.ser-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.ser-card img {
  border-radius: 10px;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.ser-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.ser-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
  text-align: left;
}

.ser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.ser-card:hover img {
  transform: scale(1.05);
}

.btn-theme {
  background: #f59e0b;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background: #e68900;
  color: #fff;
}

.ser-card {
  padding: 25px;
}

.serviceinfo-banner {
  position: relative;
  background: url("../images/service-info-banner.jpg") center center / cover
    no-repeat fixed;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.serviceinfo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
}

.serviceinfo-banner h1 {
  font-weight: 600;
  color: #fff;
  z-index: 0;
}

.serviceinfo-banner p,
.serviceinfo-banner a {
  font-weight: 400;
  z-index: 999;
}
.service-detail {
  background: #f9fafc;
}

.service-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--stp-brand);
  margin-bottom: 15px;
}

.service-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-checklist li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.service-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #cc7a1f;
  font-weight: 700;
}

.service-img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.hero-section {
  background: linear-gradient(140deg, #0b0b0b 0%, #141414 45%, #1f1710 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 70px 0 78px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 14% 82%,
      rgba(243, 164, 63, 0.18) 0%,
      transparent 54%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(243, 164, 63, 0.16) 0%,
      transparent 56%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(243, 164, 63, 0.15);
  border: 1px solid rgba(243, 164, 63, 0.45);
  color: #ffd5a2;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-badge i {
  color: #f3a43f;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-content h1 .highlight {
  color: #f5b860;
}

.hero-content p {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 30px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn-primary {
  background: linear-gradient(135deg, #f3a43f, #cc7a1f);
  color: #111;
  box-shadow: 0 12px 30px rgba(243, 164, 63, 0.22);
}

.hero-btn-primary:hover {
  color: #111;
  opacity: 0.95;
}

.hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(243, 164, 63, 0.55);
  color: #ffd5a2;
}

.hero-btn-secondary:hover {
  color: #fff;
  border-color: rgba(243, 164, 63, 0.85);
  background: rgba(243, 164, 63, 0.12);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 164, 63, 0.35);
  background: rgba(243, 164, 63, 0.09);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-trust-item i {
  color: #f5b860;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-shell {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 11 / 9;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(243, 164, 63, 0.14),
    rgba(243, 164, 63, 0.05)
  );
  border: 1px solid rgba(243, 164, 63, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-image-placeholder {
  width: 100%;
  height: 125%;
  border-radius: 50%;
  background: url("../images/gallery/gallery6.jpeg");
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image-placeholder i {
  font-size: 2.3rem;
  color: #f3a43f;
  margin-bottom: 10px;
}

.hero-image-placeholder h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.hero-image-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hfc {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  animation: float-y 3.4s ease-in-out infinite;
}

.hfc:nth-child(1) {
  top: 16px;
  left: -8px;
}

.hfc:nth-child(2) {
  top: 16px;
  right: -8px;
  animation-delay: -1s;
}

.hfc:nth-child(3) {
  bottom: 34px;
  left: -18px;
  animation-delay: -1.7s;
}

.hfc:nth-child(4) {
  bottom: 34px;
  right: -18px;
  animation-delay: -2.2s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hfc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #fff3e3;
  color: #cc7a1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.hfc-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #181818;
}

.hfc-sub {
  font-size: 0.6rem;
  color: #666;
}

/* @media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hfc {
    position: static;
    animation: none;
    width: calc(50% - 8px);
  }

  .hero-float-cards {
    margin-top: 16px;
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
} */

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-btn {
    width: 100%;
  }

  .hfc {
    width: 45%;
  }
}

/* PAGE HERO */

.page-hero {
  background: linear-gradient(135deg, #0d3b6e 0%, #1b6ca8 55%, #2ec4b6 100%);
  padding: 85px 0 115px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 85px;
  background: white;
  clip-path: ellipse(65% 100% at 50% 100%);
}

.ph-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  font-weight: 800;
}

.page-hero .ph-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .breadcrumb {
  background: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .breadcrumb-item a:hover {
  color: white;
}

.page-hero .breadcrumb-item.active {
  color: white;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* STATS BAR */

.stats-bar {
  background: #000;
  padding: 40px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--stp-brand);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.stat-sep {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.25);
  margin: auto;
}

.title-bar {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--stp-brand), var(--stp-brand-deep));
  border-radius: 50px;
  margin: 12px 0 22px;
}

.about-us p {
  text-align: justify;
}

.about-us h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 14px;
}

.about-title {
  color: var(--stp-brand);
}

.about-points h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.about-points p {
  font-size: 14px;
}

.value-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 14px;
}

.icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: #e8f4fd;
  color: var(--stp-brand);
}

.learn-btn {
  padding: 14px;
  border-radius: 30px;
  background-color: var(--stp-brand);
  font-weight: 600;
}

.services-sec h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 15px;
}

.why-us h2,
.our-process h2,
.testimonial h2,
.faq h2,
.gallery h2,
.section-padding h2,
.doctor h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 15px;
}

.why-icon {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 50%;
  margin: 0px auto 16px;
  color: var(--stp-brand);
  background-color: #ebf4ff;
}

.why-card {
  text-align: center;
  box-shadow: 0 2px 8px rgba(27, 108, 168, 0.08);
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid #e2e8f0;
  transition: all 0.3s ease;
}

.why-card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.step-num {
  width: 58px;
  height: 58px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: rgba(168, 102, 27, 0.3) 0px 4px 14px;
  background: var(--stp-brand);
  border-radius: 50%;
  margin: 0px auto 16px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-line {
  position: absolute;
  top: 29px;
  left: calc(50% + 29px);
  right: calc(-50% + 0px);
  height: 2px;
  opacity: 0.3;
  background: linear-gradient(90deg, var(--stp-brand), var(--stp-brand-deep));
}

.process-step h5 {
  font-weight: 700;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--stp-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--stp-white);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-family: Poppins;
  color: var(--stp-ink);
  background: var(--stp-bg);
  box-shadow: none;
  padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--stp-brand), var(--stp-brand-deep));
  color: white;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stp-ink-soft);
  padding: 18px 22px;
  background: white;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0.3);
}

.call-sec h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 15px;
}

.call-sec-btn {
  padding: 15px;
  background-color: #000000;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 700;
  margin-right: 20px;
}

.call-sec-btn1 {
  padding: 15px;
  background-color: var(--stp-brand);
  border-radius: 30px;
  color: #ffffff;
  font-weight: 700;
}

.call-sec {
  position: relative;
  padding: 2px 0 104px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.144)),
    url("../images/callsec.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  color: #fff;
}





.section-padding{
  padding: 90px 0;
  background: var(--stp-bg);
}


.contact-card{
  background: var(--stp-white);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--stp-border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: all .3s ease;
}

.contact-card:hover{
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.cc-icon{
  width: 48px;
  height: 48px;
  background: rgba(243,164,63,0.15);
  color: var(--stp-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Text */

.cc-label{
  font-weight: 600;
  font-size: 14px;
  color: var(--stp-ink);
  margin-bottom: 4px;
}

.cc-value{
  color: var(--stp-ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

.cc-value a{
  color: var(--stp-brand-deep);
  text-decoration: none;
  font-weight: 500;
}

.cc-value a:hover{
  text-decoration: underline;
}

.contact-form-wrap{
  background: var(--stp-white);
  border-radius: 16px;
  padding: 38px;
  border: 1px solid var(--stp-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.contact-form-wrap h4{
  font-weight: 600;
  color: var(--stp-ink);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select{
  border: 1.5px solid var(--stp-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  color: var(--stp-ink-soft);
  transition: all .25s ease;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus{
  border-color: var(--stp-brand);
  box-shadow: 0 0 0 3px rgba(243,164,63,0.2);
}


.contact-form-wrap .form-label{
  font-size: 13px;
  font-weight: 500;
  color: var(--stp-ink);
  margin-bottom: 5px;
}


.contact-form-wrap .form-check-label{
  font-size: 12.5px;
  color: var(--stp-ink-soft);
}

.btn-primary-custom{
  background: var(--stp-brand);
  border: none;
  color: #fff;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all .25s ease;
}

.btn-primary-custom:hover{
  background: var(--stp-brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


@media (max-width:992px){

.contact-form-wrap{
  padding:28px;
}

.section-padding{
  padding:70px 0;
}

.why-us p{
  text-align: left;
}

}

@media (max-width:576px){

.contact-card{
  padding:18px;
}

.cc-icon{
  width:42px;
  height:42px;
}

.hfc:nth-child(1) {
  top: 16px;
  left: -6px;
}

.about-us img {
  margin-top: 40px !important;
}

.hero-trust-item{
  font-size: 13px !important;
  padding: 4px 14px;
  margin-top: 20px;
}


.testimonial h2,
.doctor h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
}

.our-process h2,
.gallery h2,
.section-padding h2,
.faq h2,
.why-us h2{
   font-size: 25px;
  font-weight: 700;
  margin-top: 15px;
}


  .whats-call {
    padding: 7px 9px;
    background: #25d366;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50px;
    font-size: 16px;
    position: fixed;
    left: 15px;
    bottom: 15px;
    color: #fff;
    z-index: 999;
  }

  .call-fix {
    padding: 8px 10px;
    background: #0d6efd;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    color: #fff;
    z-index: 999;
  }

}

.doc-p{
 text-align: justify;
 font-size: 14px;
}

.gallery{
background:#f5f3ef;
}

.gallery-item{
position:relative;
width:100%;
height:260px;
overflow:hidden;
border-radius:12px;
}

.gallery-item img,
.gallery-item video{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video{
transform:scale(1.06);
}


.service-video{
width: 100%;
height: 100%;
max-height: 420px;
object-fit: cover;
display: block;
}


.whats-call {
  padding: 8px 10px;
  background: #25d366;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  position: fixed;
  left: 15px;
  bottom: 15px;
  color: #fff;
  z-index: 999;
}

.call-fix {
  padding: 8px 10px;
  background: #0d6efd;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: #fff;
  z-index: 999;
}
