/* =========================================================
   Excell ENT Clinic — Premium Site Stylesheet
   Brand: Deep Navy + Teal + Gold accent
   ========================================================= */

:root {
  --navy: #0b2a4a;
  --navy-dark: #071b30;
  --navy-soft: #123a63;
  --teal: #0fa3a3;
  --teal-dark: #0b8484;
  --teal-soft: #e6f7f6;
  --gold: #c8a24a;
  --bg-soft: #f6f9fb;
  --bg-alt: #eef4f6;
  --text-dark: #142433;
  --text-muted: #5b6b79;
  --border-soft: #e4eaee;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(11, 42, 74, 0.08);
  --shadow-card: 0 8px 24px rgba(11, 42, 74, 0.07);
  --shadow-hover: 0 16px 34px rgba(11, 42, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: var(--teal-dark);
  transition: color .2s ease;
}

a:hover {
  color: var(--teal);
}

img {
  max-width: 100%;
  height: auto;
}

.container-xl {
  max-width: 1240px;
}

::selection {
  background: var(--teal);
  color: #fff;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.top-bar {
  background: var(--navy-dark);
  color: #cfe0eb;
  font-size: 0.86rem;
  padding: 8px 0;
}

.top-bar a {
  color: #cfe0eb;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .2);
  display: inline-block;
  margin: 0 14px;
  vertical-align: middle;
}

.top-bar .btn-book {
  background: var(--teal);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: .02em;
}

.top-bar .btn-book:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.main-navbar {
  background: var(--white);
  /* padding: 14px 0; */
  box-shadow: 0 2px 18px rgba(11, 42, 74, .06);
  position: sticky;
  top: 0;
  z-index: 1030;
}


.fixed-btn {
  position: fixed;
  bottom: 20%;
  right: 40px;
  background-color: #25d366;
  display: flex;
  border: 1px solid white;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 2px 2px 3px #999;
  z-index: 900;
  animation: vibrate 4s infinite;
}

.float, .fixed-btn {
  color: #fff;
}


.float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}



.slider1 {
  overflow: hidden;
  position: relative;
  /* background: #fff; */
}

.slide-track {
  display: flex;
  width: calc(150px * 50);
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


@media only screen and (min-width:760px) {
  .drp-dwn{
    height: 60vh;
    overflow-y: scroll;
  }
}

.navbar-expand-lg .navbar-nav .dropdown-menu1 {
  height: 70vh !important;
  overflow-y: scroll !important;
}

.main-navbar .navbar-brand .img1 {
  height: 65px;
}

.main-navbar .navbar-brand .img2 {
  height: 100px;
}

.main-navbar .navbar-nav {
  gap: 4px;
}

.main-navbar .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-item.dropdown:hover>.nav-link,
.main-navbar .nav-link.active {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.main-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: 10px;
  margin-top: 2px;
  min-width: 280px;
}

.main-navbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.main-navbar .dropdown-item.active-link {
  background: var(--navy);
  color: #fff;
}

@media (min-width: 992px) {
  .main-navbar .dropdown:hover>.dropdown-menu {
    display: block;
    animation: fadeDown .18s ease;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (min-width:760px) {
  .dropdown-menu1{
    height: 50vh;
    overflow-y: scroll;
  }
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--teal-dark);
  color: #fff !important;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
  font-size: 0.86rem;
}

.breadcrumb-strip a {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb-strip a:hover {
  color: var(--teal-dark);
}

.breadcrumb-strip .current {
  color: var(--navy);
  font-weight: 600;
}

.breadcrumb-strip .sep {
  margin: 0 8px;
  color: #b6c2cb;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fff;
  overflow: hidden;
  padding: 78px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(15, 163, 163, .35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(200, 162, 74, .18), transparent 40%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 163, 163, .16);
  border: 1px solid rgba(15, 163, 163, .4);
  color: #7fe3e0;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-section h1 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.22;
  margin-bottom: 20px;
}

.hero-section p.lead {
  color: #cfe0eb;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  border: 6px solid rgba(255, 255, 255, .08);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.hero-stat-card i {
  font-size: 1.5rem;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 10px;
  border-radius: 50%;
}

.hero-stat-card .num {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stat-card .lbl {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Buttons */
.btn-teal {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all .2s ease;
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.btn-outline-light-custom {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
}

.btn-navy:hover {
  background: var(--navy-dark);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
}

.btn-gold:hover {
  background: #b68f39;
  color: var(--navy-dark);
}

/* =========================================================
   SECTION GENERAL
   ========================================================= */
.section {
  padding: 76px 0;
  position: relative;
}

/* Alternate section band — layered gradient + soft decorative blobs so
   sections read as distinct "zones" rather than flat colour swaps */
.section-alt {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 163, 163, .07), transparent 42%),
    radial-gradient(circle at 96% 88%, rgba(200, 162, 74, .09), transparent 45%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-alt) 100%);
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 45%, var(--navy-soft));
  opacity: .55;
}

.section-alt::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(15, 163, 163, .10), transparent 70%);
  pointer-events: none;
}

.section-alt>* {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid rgba(15, 163, 163, .25);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 7px 18px 7px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(15, 163, 163, .12);
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 760px;
}

.divider-accent {
  width: 72px;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 55%, var(--navy-soft));
  border-radius: 4px;
  margin: 16px 0 22px;
  position: relative;
}

.divider-accent::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .55);
}

/* =========================================================
   CHECK LISTS
   ========================================================= */
.icon-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--text-dark);
}

.icon-check-list li:last-child {
  border-bottom: none;
}

.icon-check-list i {
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 50%;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  margin-top: 2px;
}

.icon-check-list.two-col {
  columns: 2;
  column-gap: 32px;
}

.icon-check-list.two-col li {
  break-inside: avoid;
}

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

.bullet-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--text-dark);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* =========================================================
   NUMBERED STEPS
   ========================================================= */
.step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.step-num {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-item h5 {
  margin-bottom: 6px;
}

.step-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* =========================================================
   CARDS
   ========================================================= */
.card-premium {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 60%, var(--navy-soft));
  transform: translateY(-4px);
  transition: transform .25s ease;
}

.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 163, 163, .3);
}

.card-premium:hover::before {
  transform: translateY(0);
}

.card-premium .icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: background .25s ease, color .25s ease;
}

.card-premium:hover .icon-wrap {
  background: var(--teal);
  color: #fff;
}

.card-premium h5 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.card-premium p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.card-image-top {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-image-top:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image-top img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-image-top .body {
  padding: 20px 22px;
}

.card-image-top h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card-image-top p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* =========================================================
   TRUST / WHY CHOOSE STRIP
   ========================================================= */
.trust-strip {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 55%, var(--gold));
}

.trust-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 8%, rgba(15, 163, 163, .32), transparent 45%),
    radial-gradient(circle at 4% 96%, rgba(200, 162, 74, .16), transparent 40%);
}

.trust-strip>* {
  position: relative;
  z-index: 1;
}

.trust-strip .icon-check-list li {
  border-bottom-color: rgba(255, 255, 255, .12);
  color: #e6eef3;
}

.trust-strip .icon-check-list i {
  background: rgba(15, 163, 163, .22);
  color: #7fe3e0;
}

.why-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.table-comparison {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

.table-comparison table {
  margin-bottom: 0;
}

.table-comparison thead th {
  background: var(--navy);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 16px 20px;
  border: none;
  font-size: 0.98rem;
}

.table-comparison tbody td {
  padding: 14px 20px;
  vertical-align: top;
  color: var(--text-dark);
  font-size: 0.94rem;
  border-color: var(--border-soft);
}

.table-comparison tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-list li {
  position: relative;
  padding: 4px 0 26px 34px;
  border-left: 2px solid var(--border-soft);
}

.timeline-list li:last-child {
  border-color: transparent;
  padding-bottom: 0;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-list h6 {
  color: var(--navy);
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.timeline-list p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.93rem;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 18px 22px;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--teal-dark);
  background: var(--teal-soft);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-soft);
}

.faq-accordion .accordion-button::after {
  filter: hue-rotate(140deg);
}

.faq-accordion .accordion-body {
  padding: 4px 22px 22px;
  color: var(--text-muted);
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 100%, rgba(255, 255, 255, .18), transparent 40%);
}

.cta-banner h3 {
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 0;
}

/* =========================================================
   DOCTOR SPOTLIGHT CARD
   ========================================================= */
.doctor-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-soft), var(--teal) 60%, var(--gold));
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.doctor-card .doctor-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  color: #7fe3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(11, 42, 74, .25);
}

.doctor-card h5 {
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.doctor-card .doctor-credentials {
  display: block;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 12px;
  letter-spacing: .01em;
}

.doctor-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* =========================================================
   URGENT / EMERGENCY NOTICE BOX
   ========================================================= */
.urgent-box {
  background: linear-gradient(135deg, #fff7ec, #fdeee0);
  border: 1px solid rgba(200, 124, 42, .25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.urgent-box .urgent-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #b3671b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(200, 124, 42, .18);
}

.urgent-box h5 {
  color: #7a4413;
  margin-bottom: 10px;
}

.urgent-box p {
  color: #6b4423;
  margin-bottom: 0;
}

.urgent-box p+p {
  margin-top: 10px;
}

/* =========================================================
   RELATED SERVICES
   ========================================================= */
.related-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: all .2s ease;
}

.related-link-card:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.related-link-card i {
  font-size: 1rem;
  color: var(--teal-dark);
  background: var(--teal-soft);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  transition: background .2s ease, color .2s ease;
}

.related-link-card:hover i {
  background: var(--teal);
  color: #fff;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(175deg, var(--navy-dark) 0%, #061626 100%);
  color: #b9c9d4;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 35%, var(--navy-soft) 70%, var(--gold));
  z-index: 2;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: -220px;
  right: -140px;
  background: radial-gradient(circle, rgba(15, 163, 163, .14), transparent 70%);
  pointer-events: none;
}

.site-footer .container-xl {
  position: relative;
  z-index: 1;
}

.site-footer h6 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.footer-logo-badge {
  display: inline-flex;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

.footer-logo-badge img {
  height: 42px;
  display: block;
}

.site-footer p {
  color: #9fb3c0;
  font-size: 0.92rem;
}

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

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer ul li a {
  color: #b9c9d4;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, padding-left .2s ease;
}

.site-footer ul li a::before {
  content: "\203A";
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.site-footer ul li a:hover {
  color: var(--teal);
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-item .fc-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--gold), #a9822f);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(200, 162, 74, .25);
}

.footer-contact-item .fc-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7f93a1;
  margin-bottom: 3px;
}

.footer-contact-item .fc-value {
  display: block;
  font-size: 0.92rem;
  color: #eef3f6;
  font-weight: 500;
  line-height: 1.5;
}

.footer-contact-item .fc-value a {
  color: #eef3f6;
}

.footer-contact-item .fc-value a:hover {
  color: var(--teal);
}

.footer-quick-actions {
  margin-top: 4px;
}

.footer-quick-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eef3f6;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 0;
}

.footer-quick-actions a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(15, 163, 163, .18);
  color: #7fe3e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
}

.footer-quick-actions a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 48px;
  padding: 20px 0;
  font-size: 0.84rem;
  color: #7f93a1;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, .14);
}

.footer-bottom-links a {
  color: #9fb3c0;
  font-size: 0.84rem;
  margin-left: 22px;
}

.footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  margin-right: 8px;
  transition: all .2s ease;
}

.social-icons a:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 48px 0;
    text-align: center;
  }

  .hero-media {
    margin-top: 36px;
  }

  .hero-stat-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .icon-check-list.two-col {
    columns: 1;
  }

  .section {
    padding: 52px 0;
  }

  .main-navbar .navbar-collapse {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    box-shadow: var(--shadow-card);
    max-height: 78vh;
    overflow-y: auto;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }

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

  .cta-banner {
    padding: 32px 22px;
    text-align: center;
  }

  .trust-strip {
    padding: 26px;
  }

  .footer-bottom-links a {
    margin-left: 0;
    margin-right: 16px;
  }
}

/* =========================================================
   TESTIMONIAL CARDS  (added for Home / Contact pages)
   ========================================================= */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 60%, var(--navy-soft));
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card .quote-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--teal);
  opacity: .3;
  margin-bottom: 4px;
  display: block;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-card p.testimonial-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--border-soft);
  padding-top: 16px;
}

.testimonial-card .author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  color: #7fe3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex: 0 0 42px;
  font-size: 0.92rem;
}

.testimonial-card .author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.94rem;
  display: block;
  line-height: 1.3;
}

.testimonial-card .author-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* =========================================================
   STAT BLOCKS  (added for Home page trust strip)
   ========================================================= */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 30px;
}

.stat-block {
  text-align: center;
  padding: 6px 28px;
  position: relative;
}

.stat-block+.stat-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .16);
}

.stat-block .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
  display: block;
  margin-bottom: 6px;
}

.stat-block .stat-label {
  color: #cfe0eb;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .01em;
  max-width: 140px;
  margin: 0 auto;
}

/* =========================================================
   CONTACT INFO ROWS  (added for Contact page)
   ========================================================= */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border-soft);
}

.contact-info-row:last-child {
  border-bottom: none;
}

.contact-info-row .ci-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.contact-info-row .ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-row .ci-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.contact-info-row .ci-value a {
  color: var(--navy);
}

.contact-info-row .ci-value a:hover {
  color: var(--teal-dark);
}

/* =========================================================
   INFO / LOCATION CARD MEDIA  (added for Contact page)
   ========================================================= */
.location-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.location-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.location-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(11, 42, 74, .92);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.location-badge i {
  color: var(--gold);
}

@media (max-width: 575.98px) {
  .stat-block {
    padding: 6px 16px;
  }

  .stat-block+.stat-block::before {
    display: none;
  }
}

/* =========================================================
   DOCTOR LISTING CARDS  (Our Doctors page)
   ========================================================= */
.doctor-listing-card {
  display: flex;
  flex-direction: column;
}

.doctor-listing-card .doctor-photo-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--teal-soft);
}

.doctor-listing-card .doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctor-listing-card .doctor-photo-wrap.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-listing-card .doctor-photo-wrap.no-photo i {
  font-size: 4.4rem;
  color: var(--teal);
  opacity: .5;
}

.doctor-listing-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.doctor-listing-card .doc-education {
  display: block;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.84rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.doctor-listing-card .doc-experience {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 20px;
  align-self: flex-start;
}

.doctor-listing-card .doc-experience i {
  color: var(--gold);
}

.doctor-listing-card .btn-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.doctor-listing-card .btn-row a {
  flex: 1;
  text-align: center;
  padding: 10px 10px;
  font-size: 0.82rem;
  border-radius: 24px;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
   DOCTOR DETAIL HERO  (individual bio pages)
   ========================================================= */
.doctor-hero {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.doctor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(15, 163, 163, .32), transparent 45%),
    radial-gradient(circle at 8% 95%, rgba(200, 162, 74, .16), transparent 40%);
  pointer-events: none;
}

.doctor-hero>.container-xl {
  position: relative;
  z-index: 1;
}

.doctor-photo-frame {
  width: 100%;
  max-width: 270px;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
  background: #fff;
  margin: 0 auto;
}

.doctor-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctor-photo-frame.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
}

.doctor-photo-frame.no-photo i {
  font-size: 5.5rem;
  color: var(--navy);
}

.doctor-hero h1 {
  color: #fff;
  font-size: 2.15rem;
  margin-bottom: 8px;
}

.doctor-hero .doc-role {
  color: #7fe3e0;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 22px;
}

.doctor-fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.doctor-fact-chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6eef3;
}

.doctor-fact-chip i {
  color: var(--gold);
}

.back-to-doctors {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 18px;
}

.back-to-doctors:hover {
  color: var(--teal);
}

@media (max-width: 991.98px) {
  .doctor-hero {
    text-align: center;
  }

  .doctor-fact-row {
    justify-content: center;
  }

  .doctor-photo-frame {
    margin-bottom: 30px;
  }
}

@media (max-width: 760px) {
  .main-navbar .navbar-brand .img1 {
    height: 51px;
  }

  .main-navbar .navbar-brand .img2 {
    height: 75px;
  }
}
/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  border: 1px solid var(--border-soft);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 22px;
  border-radius: 30px;
  transition: all .2s ease;
  cursor: pointer;
}

.gallery-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.gallery-col {
  margin-bottom: 4px;
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 42, 74, 0) 55%, rgba(7, 27, 48, .85) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 14px;
}

.gallery-overlay i {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, .2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s ease;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:focus .gallery-overlay i {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 26, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  padding: 40px 20px;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox .gl-figure {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 76vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.gallery-lightbox figcaption {
  color: #fff;
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
  max-width: 700px;
}

.gl-close,
.gl-prev,
.gl-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}

.gl-close:hover,
.gl-prev:hover,
.gl-next:hover {
  background: var(--teal);
}

.gl-close {
  top: 20px;
  right: 20px;
}

.gl-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gl-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 575.98px) {
  .gallery-filter-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .gl-prev {
    left: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .gl-next {
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .gl-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .hero-stat-card{
    display: none;
  }

}
