/* =========================
   GLOBAL THEME (LOGO COLORS)
========================= */
:root {
  /* Brand palette (edit to match your logo exactly) */
  --brand-maroon: #8a2624;
  --brand-maroon-dark: #5f1515;

  --brand-blue: #274d90;
  --brand-green: #2f6f1f;

  --brand-accent: #f5a623;
  /* optional */

  /* Neutrals */
  --text-dark: #111827;
  --text-body: #4b5563;
  --text-muted: #6b7280;

  --bg-soft: #fff4ea;
  --card: #ffffff;
  --border: #e5e7eb;
  --terracotta-600: #C65A3A;
}

/* Page baseline */
* {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}
html, body{
  overflow-x: hidden;
}



/* Headings – desktop */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif !important;
}

h1 { font-size: 46px !important; line-height: 1.2 !important; }
h2 { font-size: 36px !important; line-height: 1.25 !important; }
h3 { font-size: 28px !important; line-height: 1.3 !important; }
h4 { font-size: 22px !important; line-height: 1.35 !important; }
h5 { font-size: 18px !important; line-height: 1.4 !important; }
h6 { font-size: 16px !important; line-height: 1.4 !important; }

/* Mobile – headings + text */
@media (max-width: 768px) {
  h1 { font-size: 30px !important; }
  h2 { font-size: 23px !important; }
  h3 { font-size: 22px !important; }
  h4 { font-size: 18px !important; }
  h5 { font-size: 16px !important; }
  h6 { font-size: 14px !important; }

  p,
  li {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
}

/* Global headings + paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-blue);
}

p {
  color: var(--text-body);
}

a {
  color: var(--brand-blue);
}

a:hover {
  color: var(--brand-maroon);
}


/* ================= HEADER =================== */
.tsa-header {
    padding: 10px 40px;
    background: #ffffff;
}

.tsa-header-inner {
    align-items: center;
}

.tsa-logo img {
    max-height: 70px;
    width: auto;
}

.tsa-header-btn {
    background: #8a2624;
    border-radius: 30px;
    padding: 12px 42px;
    border: 1px solid #000;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: #f1f1f1;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.tsa-header-btn-mobile{
  background: #25d366 !important;
  color:#fff !important;
  border:none;
}
.tsa-header-btn-mobile:hover{
  background: #25d366 !important;
  color:#fff !important;
   border:none;
}

.tsa-header-btn:hover,
.tsa-header-btn:focus {
    color: #8a2624;
    background: #f1f1f1;
}

.tsa-btn-group {
    display: flex;
    gap: 40px;
}
@media (max-width: 768px) {
    .tsa-header-btn {
        font-size: 18px;
        padding: 9px 20px;
        margin: 12px auto;
    }
    .tsa-logo img {
        max-height: 55px;
        width: auto;
        margin-top: 10px;
    }
    .tsa-btn-group {
        width: 100%;
        justify-content: center;
        gap: 52px;
    }
    .hero3-left {
      padding: 0 29px;
    }
    .hero3__rightBadges {
      padding: 0 29px;
    }
}

/* =========================
   HERO / BANNER
========================= */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url("../assets/images/web-banner-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero-section {
    background-image: url("../assets/images/mobile-banner.jpg");
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-small {
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.hero-title {
  font-family: Georgia, serif;
  font-weight: 900;
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 620px;
}

/* Hero buttons */
.hero-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: .18s ease;
}

.btn-ic {
  font-weight: 900;
}

.hero-btn-light {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

.hero-btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero-btn-dark {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.hero-btn-dark:hover {
  background: #fff;
  color: var(--brand-green);
}

/* Enquiry Card */
.enquiry-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.enquiry-title {
  font-family: Georgia, serif;
  font-size: 34px;
  margin: 0;
  color: var(--brand-blue);
  font-weight: 900;
}

.enquiry-input {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.enquiry-input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.25);
}

.enquiry-btn {
  background: #fff;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  font-weight: 900;
  padding: 12px 22px;
  border-radius: 999px;
  width: 220px;
  transition: .18s ease;
}

.enquiry-btn:hover {
  background: var(--brand-green);
  color: #fff;
}

/* Marquee section */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: #e5e7eb;
  /* gray-200 like */
  padding: 12px 0;
}

.marquee-group {
  display: flex;
  width: max-content;
  align-items: center;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

/* hover pause */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* item styling */
.loc-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 1.05rem;
  font-weight: 400;
}

.loc-dot {
  position: relative;
  width: 4px;
  height: 4px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-dot .ripple {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #fff;
  animation: ripple 1.6s ease-out infinite;
}

.loc-dot .core {
  position: relative;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--terracotta-600);
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(6);
    opacity: 0;
  }
}

.loc-city {
  color: #671c1b;
  margin-right: 6px;
}

.marquee-track {
  animation: marquee 18s linear infinite;
}

.hero3 {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #671c1b;
}

.hero3-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .72) 0%,
      rgba(0, 0, 0, .58) 46%,
      rgba(0, 0, 0, .22) 72%,
      rgba(0, 0, 0, 0) 100%);
}

.hero3-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 70px;
}

/* LEFT */
.hero3-left {
  color: #fff;
}

.hero3-title {
  font-weight: 800;
  line-height: 1.06;
  font-size: clamp(34px, 4.2vw, 60px);
  margin: 0 0 14px;
  color: #fff;
}

.hero3-sub {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 500;
  opacity: .95;
  color: #f1f1f1;
}

.hero3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b6efd;
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(11, 110, 253, .25);
  transition: transform .15s ease, filter .15s ease;
}

.hero3-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.hero3-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  opacity: .9;
}

.hero3-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .18);
}

/* RIGHT 4-POINTER */
.usp4-hero {
  width: 100%;
}

.usp4-box {
  background: var(--hero-blue);
  color: #fff;
  border-radius: 10px;
  padding: 18px 18px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

/* bottom-left call icon */
.hero3-fab {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #fff;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
}

/* responsive */
@media (max-width: 992px) {
  .hero3-inner {
    padding: 70px 0 55px;
  }

  .usp4-box {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .hero3-sub {
    font-size: 18px;
  }

  .hero3-fab {
    display: none;
  }
}

/* =========================
   SECTION 2
========================= */
.section2 {
  background: var(--bg-soft);
}

.section2-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.2;
  font-size: clamp(30px, 3.2vw, 52px);
}

.section2-content {
  max-width: 980px;
  margin: 0 auto;
}

.section2-content p {
  color: var(--text-body);
  font-size: 18px;
  line-height: 2;
  margin-bottom: 22px;
}

@media (max-width:576px) {
  .section2-content p {
    font-size: 16px;
    line-height: 1.85;
  }
}

/* CLINIC GRID SECTION */
.clinic-grid-section {
  background: #fff;
}

.clinic-card {
  text-align: center;
}

.clinic-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.clinic-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
}

.clinic-card:hover img {
  transform: scale(1.05);
}

/* New badge */
.clinic-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4d2d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 2;
}

/* City name */
.clinic-city {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-blue);
}

/* responsive */
@media (max-width: 576px) {
  .clinic-img-wrap img {
    height: 180px;
  }

  .clinic-city {
    font-size: 20px;
  }
}


/* LOGO STRIP */
.logo-strip-section {
  background: #fff;
}

.logo-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.logo-strip::-webkit-scrollbar {
  height: 6px;
}

.logo-strip::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}

.logo-card {
  min-width: 160px;
  height: 90px;
  background: #f2f7f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  flex-shrink: 0;
}

.logo-card img {
  max-width: 110px;
  max-height: 50px;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  opacity: .9;
  transition: all .25s ease;
}

.logo-card:hover img {
  filter: none;
  opacity: 1;
}

/* scrollbar height */
.logo-strip::-webkit-scrollbar {
  height: 6px;
}

/* scrollbar track (optional) */
.logo-strip::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

/* ✅ scrollbar thumb color */
.logo-strip::-webkit-scrollbar-thumb {
  background: var(--brand-maroon);
  border-radius: 10px;
}


/* =========================
   SECTION 3 (ABOUT)
========================= */
.section3 {
  background: #fff;
}

.s3-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.s3-bg-box {
  position: absolute;
  left: -22px;
  top: -22px;
  width: 100%;
  height: 100%;
  background: #cd9e9e;
  border-radius: 18px;
  z-index: 1;
}

.s3-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 18px;
  display: block;
  height: 511px;
  object-fit: cover;
}

.s3-kicker {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--brand-maroon);
  margin: 0;
}

.s3-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  color: var(--brand-blue);
  font-size: clamp(28px, 3vw, 42px);
}

.s3-text {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.9;
  max-width: 640px;
}

/* checklist */
.s3-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--brand-blue);
  font-weight: 600;
}

.s3-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #cd9e9e;
  color: var(--brand-maroon);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 26px;
}

/* button */
.s3-btn {
  padding: 12px 26px;
  border: 2px solid var(--brand-blue);
  border-radius: 999px;
  color: var(--brand-blue);
  font-weight: 900;
  text-decoration: none;
  transition: .18s ease;
}

.s3-btn:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width:991px) {
  .s3-img-wrap {
    margin: 0 auto;
  }

  .s3-bg-box {
    left: -14px;
    top: -14px;
  }
}

/* ================= CLINIC INFO STRIP ================= */
.clinic-info-strip {
  background: #ffffff;
  padding: 22px 0 26px;
  border-bottom: 5px solid var(--brand-maroon);
}

.clinic-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.ci-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-maroon);
  font-size: 24px;
  flex-shrink: 0;
  margin: 22px 14px;
}

.ci-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--brand-blue);
}

.ci-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

@media (min-width:768px) {
  .clinic-info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: -12px;
    border-right: 2px dotted rgba(0, 0, 0, 0.25);
  }
}

@media (max-width:767.98px) {
  .clinic-info-item {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }

  .clinic-info-item::after {
    display: none;
  }
}

/* ================= AWARDS SECTION ================= */
.awards-section {
  background: var(--bg-soft);
  padding: 70px 0;
}

.awards-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--brand-blue);
}

.award-card {
  max-width: 100%;
  background: #fff;
  border: 3px solid var(--brand-maroon);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 208px;
}

.award-img img {
  width: 100%;
  height: 202px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

@media (max-width:992px) {
  .award-card {
    height: auto;
  }
}

@media (max-width:576px) {
  .award-card {
    border-radius: 18px;
  }

  .award-img img {
    height: auto;
    width: 100%;
  }
}

/* ================= TESTIMONIAL SECTION ================= */
.tsm-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.tsm-section::before,
.tsm-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}

.tsm-section::before {
  top: -60px;
  left: -40px;
  background: #ffd28b;
}

.tsm-section::after {
  bottom: -80px;
  right: -40px;
  background: #9fd5ff;
}

.tsm-heading {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-blue);
}

.tsm-subtitle {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
}

.tsm-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: 0 16px 40px rgba(10, 35, 71, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.tsm-quote-icon {
    position: absolute;
    top: 17px;
    left: 3px;
    font-size: 60px;
    line-height: 1;
    color: rgba(245, 166, 35, 0.28);
    font-family: Georgia, "Times New Roman", serif;
}

.tsm-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.tsm-name {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: var(--text-dark);
}

.tsm-meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.tsm-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.tsm-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--brand-accent);
}

.tsm-rating small {
  font-size: 12px;
  color: var(--text-muted);
}

.tsm-indicators {
  position: static;
  margin-top: 18px;
}

.tsm-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background: #d0d7e6;
}

.tsm-indicators .active {
  background: var(--brand-accent);
}

.tsm-control {
  width: 40px;
}

.tsm-control-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #4b5563;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

@media (max-width:767.98px) {
  .tsm-heading {
    font-size: 24px;
  }

  .tsm-card {
    padding: 22px 18px 20px;
  }

  .tsm-text {
    font-size: 14px;
  }
}

/* ================= WHY + CALLBACK ================= */
.why-callback-section {
  /*background: var(--bg-soft);*/
 padding: 60px 0;
  background: url("../assets/images/from-bg.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;   
  position: relative;
}

.why-card {
     background: #ffffffd6;
  border: 2px solid var(--brand-maroon);
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.why-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.why-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: var(--brand-maroon);
}

.callback-card {
  background: #ffffffd6;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.callback-top-strip {
  height: 18px;
  background-image: repeating-linear-gradient(-45deg,
      var(--brand-maroon) 0 10px,
      #b53b36 10px 20px);
}

.callback-inner {
  padding: 28px 26px 22px;
}

.callback-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 22px;
}

.callback-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 12px 18px;
  background: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}

.callback-input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.25);
}

.callback-textarea {
  border-radius: 16px;
  resize: none;
  padding-top: 12px;
}

.callback-btn {
  width: 100%;
  background: var(--brand-maroon);
  color: #ffffff;
  border: 2px solid var(--brand-maroon-dark);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 8px;
  transition: 0.18s ease;
}

.callback-btn:hover {
  background: #fff;
  color: var(--brand-maroon);
  border-color: var(--brand-maroon);
  transform: translateY(-2px);
}

@media (max-width:991px) {
  .why-card {
    margin-bottom: 20px;
  }

  .callback-inner {
    padding: 20px 18px 18px;
  }
}

/* ================= PRESS SECTION ================= */


.press-heading {
  font-size: 38px;
  font-weight: 900;
  font-family: "Georgia", "Times New Roman", serif;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: var(--brand-blue);
}

.press-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 260px;
  height: 6px;
  background: rgba(47, 111, 31, 0.45);
  border-radius: 50px;
  opacity: 0.9;
}

.press-image-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.press-logos-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width:576px) {
  .press-heading {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .press-heading::after {
    width: 180px;
    height: 4px;
    bottom: -4px;
  }
}

/* ================= FAQ SECTION ================= */


.faq-heading {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.faq-heading span {
  color: var(--brand-maroon);
}

.faq-subtext {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.faq-accordion {
  margin-top: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 6px 18px;
}

.faq-item {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  background: transparent;
  box-shadow: none;
  padding: 16px 0;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
}

.faq-btn:not(.collapsed) {
  background-color: transparent;
  color: var(--brand-maroon);
}

.faq-btn::after {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "+";
  font-size: 15px;
  color: var(--text-muted);
  background-image: none;
  margin-left: auto;
}

.faq-btn:not(.collapsed)::after {
  content: "−";
  color: #ffffff;
  background: var(--brand-maroon);
}

.faq-btn:focus {
  box-shadow: none;
}

.faq-body {
  padding: 0 0 14px 0;
  font-size: 14px;
  color: var(--text-body);
}

@media (max-width:991.98px) {
  .faq-heading {
    font-size: 28px;
  }

  .faq-accordion {
    padding: 4px 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  }
}

@media (max-width:575.98px) {
  .faq-btn {
    font-size: 15px;
  }

  .faq-heading {
    font-size: 24px;
  }
}

/* ================= OUR CLINICS ================= */
.our-clinics {
  padding: 70px 0;
  background: #fff;
}

.our-clinics .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.oc-title {
  text-align: center;
  font-size: 44px;
  margin: 0;
  font-weight: 700;
  font-family: "Times New Roman", serif;
}

.oc-subtitle {
  max-width: 900px;
  margin: 12px auto 0;
  text-align: center;
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

.oc-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* ✅ UPDATED: overflow visible so oc-info can go outside */
.oc-card {
  position: relative;
  border-radius: 18px;

  /* was: overflow:hidden; */
  overflow: visible;

  box-shadow: 0 24px 40px rgba(17, 24, 39, .18);
  min-height: 420px;
  background: #e5e7eb;
}

/* ✅ image stays rounded even with overflow visible */
.oc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);

  border-radius: 18px;
}

/* ✅ UPDATED: right side & bottom side outside */
.oc-info {
  position: absolute;

  /* inside from left, but outside on right */
  left: 18px;
  right: -22px;
  /* ✅ right protrusion */

  bottom: -22px;
  /* ✅ bottom protrusion */

  background: rgba(255, 255, 255, .96);
  border-radius: 16px;
  padding: 26px 26px 22px;
  box-shadow: 0 22px 34px rgba(17, 24, 39, .22);
}

.oc-city {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: 1px;
  font-family: "Times New Roman", serif;
}

.oc-addr {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.7;
}

.oc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
}

.oc-arrow {
  font-size: 18px;
  line-height: 1;
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px) {
  .oc-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .oc-title {
    font-size: 36px;
  }

  /* ✅ keep protrusion smaller on mobile */
  .oc-info {
    right: -14px;
    bottom: -14px;
  }
}

/* Address Card */
.branch-card {
  flex: 0 0 42%;
  background: #e14646;
  /* red like screenshot */
  padding: 38px 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.branch-card__title {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 900;
}

.branch-card__block {
  margin-bottom: 18px;
}

.branch-card__block h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
}

.branch-card__block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .95);
}

.branch-card__contact {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding-top: 14px;
}

.branch-card__contact p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.branch-ico {
  display: inline-block;
  width: 22px;
}

/* helper */
.text-center {
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .branch-title {
    font-size: 34px;
  }

  .branch-row {
    flex-direction: column;
  }

  .branch-map,
  .branch-card {
    flex: 0 0 auto;
  }

  .branch-map__iframe {
    height: 340px;
  }

  .branch-card {
    padding: 28px 22px;
  }
}

@media (max-width: 575px) {
  .branch-title {
    font-size: 28px;
  }

  .branch-sub {
    font-size: 14px;
  }

  .branch-map__iframe {
    height: 300px;
  }

  .branch-card__title {
    font-size: 24px;
  }
}

/* ================= FOOTER ================= */

.mini-footer {
     background: #601615;
  /* screenshot jaisa dark */
  color: #e5e7eb;
  padding: 22px 0;
}

.mf-copy {
  font-size: 14px;
  opacity: .95;
}

.mf-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.mf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
  opacity: .95;
}

.mf-item i {
  font-size: 22px;
  color: #b9b9b9;
}

.mf-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .25);
}

/* Mobile responsive */
@media (max-width: 991px) {
  .mf-items {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .mf-sep {
    display: none;
  }

  .mf-copy {
    text-align: center;
  }
}

.mf-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mf-logo {
  width: 35%;
  height: auto;
  object-fit: contain;
  margin: 0 74px;
}
.zoom-pulse {
    transform-origin: center;
    animation: zoomInOut 6.5s ease-in-out infinite;
}
.hero3__rightBadges {
    justify-self: end;
    width: 100%;
    max-width: 560px;
}
.hero3__rightBadges img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .25));

}

/* ================= Floating Call & WhatsApp buttons =================== */

.floating-contact {
    position: fixed;
    right: 16px;
    bottom: 90px;
    display: flex !important;
    flex-direction: column;
    gap: 30px;
    z-index: 9999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.float-call {
    background: #8a2624;
}

.float-whatsapp {
    background: #25D366;
}

.float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .floating-contact {
        right: 12px;
        bottom: 70px;
        gap: 261px;
        flex-direction: row;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}
.float-call{
  animation: pulsing-red 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.float-whatsapp{
  animation: pulsing-green 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulsing-red{
  0%{ box-shadow: 0 0 0 0 rgba(255,0,0,0.8); }
  70%{ box-shadow: 0 0 0 18px rgba(255,0,0,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

@keyframes pulsing-green{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.8); }
  70%{ box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


/* by default hide on desktop */
.mobile-cta-bar {
    display: none;
}

/* sirf mobile ke liye */
@media (max-width: 767.98px) {

  .mobile-cta-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: -7px;
      z-index: 9999;
      background: transparent;      /* outer full-width, overflow nahi karega */
  }

  /* actual coloured bar yaha hai */
  .mobile-cta-inner {
      max-width: 391px;            /* yaha se width control karo */
      margin: 0 auto 6px;          /* center + thoda upar */
      display: flex;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 0;
      height: 60px;/* chahe to 0 ya 4px rakh sakte ho */
  }

  .mobile-cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 8px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border: none;
  }

  .mobile-cta-btn i {
      font-size: 16px;
  }

  .call-btn {
      background: #8a2624;   /* purple-ish */
  }

  .whatsapp-btn {
      background: #25D366;
      font-size: 11px;
  }

  .mobile-cta-btn:active {
      opacity: 0.9;
  }
}

.mh-hero-section {
    padding: 24px 0 32px;
    background: #faf7ff;
}

/* Section background */
.clinic-compare{
  background: #e8eeff;
}

/* Title */
.compare-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #121212;
  line-height: 1.25;
}

/* Green underline */
.accent-underline{
  position: relative;
  display: inline-block;
  z-index: 0;
}
.accent-underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  background: #4aa564;
  border-radius: 6px;
  opacity: .9;
  z-index: -1;
}

/* ===== Rotating Border Wrapper ===== */
.compare-frame{
  /*max-width: 980px;*/
  position: relative;
}

/* Important: padding is the border thickness */
.border-rotate{
  padding: 6px;              /* border thickness */
  border-radius: 16px;       /* outer round */
  position: relative;
  overflow: hidden;          /* border clean */
}

/* rotating gradient layer */
.border-rotate::before{
  content:"";
  position:absolute;
  inset: -40%;               /* big so rotation edges never cut */
  background: conic-gradient(
    #377af5,   /* blue */
    #399953,   /* green */
    #fbb300,   /* yellow */
    #d53e33,   /* red */
    #377af5
  );
  animation: spin 3.5s linear infinite;
  z-index: 0;
}

/* soft glow (premium feel) */
.border-rotate::after{
  content:"";
  position:absolute;
  inset: -55%;
  background: conic-gradient(
    #377af5,
    #399953,
    #fbb300,
    #d53e33,
    #377af5
  );
  animation: spin 3.5s linear infinite;
  filter: blur(18px);
  opacity: .20;
  z-index: 0;
}

/* content card above rotating layers */
.compare-box{
  background: #fff;
  border: 1px solid #d2d2d2;  /* inner grey border */
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  overflow: hidden;
  position: relative;
  z-index: 2;                /* ✅ THIS fixes text hidden */
}

@keyframes spin{
  to { transform: rotate(360deg); }
}

/* Table styling */
.compare-table{
  margin: 0;
  border-collapse: collapse;
}
.compare-table thead th{
  background: #000e52;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 12px;
  border: 1px solid #000e52;
}
.compare-table tbody td{
 
  color: #4b4b4b;
  padding: 12px 12px;
  border: 1px solid #cccccc;
  vertical-align: middle;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}
.compare-table th:first-child,
.compare-table td:first-child{ width: 70%; }
.compare-table th:last-child,
.compare-table td:last-child{ width: 30%; }

/* Checkmark */
.checkmark{
  display:inline-block;
  width: 20px;
  height: 20px;
  background: #28a745;
  border-radius: 2px;
  position: relative;
  top: 1px;
  box-shadow: 0 2px 6px rgba(40,167,69,.25);
}
.checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 13px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .border-rotate::before,
  .border-rotate::after{
    animation: none;
  }
}


#badgeCarousel .carousel-item img{
  width: 100%;
  height: 360px;        /* yaha aap apni required height set kar lo */
  object-fit: contain;  /* full image dikhegi, crop nahi hogi */
  background: transparent;
  display: block;
}
