/* ==============================================================
   Dr. Mudit Nemani — Website Stylesheet
   Combined CSS for: index.html, about-us.html, service-single.html,
   blog.html, contact-us.html
   ============================================================== */
/* ===== Bootstrap dropdown variables -> theme color ===== */


.main-nav .dropdown-menu {
  --bs-dropdown-link-active-bg: var(--orange);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-hover-bg: var(--orange);
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-color: var(--navy);
  --bs-dropdown-border-radius: 10px;
}
:root {
  --navy-dark: #052c48;
  --navy: #123c62;
  --orange: #ce7c04;
  --gold: #b88e3b;
  --text-dark: #2b2b2b;
  --text-gray: #414141;
  --gray-bg: #f4f4f4;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}
@media (max-width: 1024px) {
	  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1024px;
  }
}
@media (max-width: 767px) {
	  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width:95%;
  }
	html{
	overflow-x: hidden;
}
}
body {
  font-family: "Lora", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: "Inter", sans-serif;
}

h2,
h3,
h4,
.font-serif {
  font-family: "Lora", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
}

/* ===== Scroll reveal animation ===== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-zoom {
  transform: scale(0.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

a {
  text-decoration: none;
}

/* ===== Top bar ===== */

.topbar {
  background: var(--navy-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 12px 0;
}

.topbar a {
  color: #fff;
}

.topbar .divider {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 12px;
}

.topbar .social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: 8px;
  font-size: 0.85rem;
}

.topbar .social-icon.youtube {
  background: #0A66C2;
}

@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .topbar .geo-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .topbar .divider {
    margin: 0 6px;
  }
  .topbar .email-text {
    display: none;
  }
}

/* ===== Navbar ===== */

.main-nav {
  padding: 5px 0;
  background: #fff;
  /* single source of truth for horizontal menu spacing */
  --nav-gap: 30px;
  --logo-h: 92px;
}

/* Tablet-desktop band: menu is expanded but space is tight -> shrink gaps */
@media (min-width: 768px) and (max-width: 991.98px) {
  .main-nav {
    --nav-gap: 8px;
    --logo-h: 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-nav {
    --nav-gap: 14px;
    --logo-h: 70px;
  }
}

/* ---- MOBILE (hamburger) : now < 768px instead of < 1200px ---- */
@media (max-width: 767.98px) {
  .main-nav .navbar-collapse {
    /* padding-top: 14px; */
    border-top: 1px solid #eee;
    margin-top: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    border-radius: 10px 10px 10px 10px;
    padding: 10px 12px;
  }
  .main-nav .navbar-nav .nav-link {
    margin: 6px 0;
  }
  .navbar .btn-orange {
    display: none;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px;
    flex: 1;
  }
}

.main-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.main-nav .navbar-brand img {
  width: auto;
  height: var(--logo-h);
  transition: height 0.2s ease;
}

.main-nav .brand-text {
  line-height: 1.1;
}

.main-nav .brand-text .name {
  font-family: "Lora", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.main-nav .brand-text .sub {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--orange);
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .main-nav {
    --logo-h: 60px;
  }
  .main-nav .brand-text .name {
    font-size: 0.95rem;
  }
  .main-nav .brand-text .sub {
    font-size: 0.55rem;
  }
}

/* ---- Nav links ---- */

.main-nav .nav-link {
  display: inline-block;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: var(--navy-dark) !important;
  font-weight: 700;
  margin: 0 30px;
  padding: 6px 0 10px !important;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}

/* smaller type in the tight band so items never collide */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .main-nav .nav-link {
    font-size: 14px;
  }
  .main-nav .navbar-nav {
    flex-wrap: nowrap;
  }
  .main-nav .container {
    max-width: 100%;
    padding-inline: 12px;
  }
  a.btn-booking {
    font-size: 14px;
    padding: 8px 12px;
    white-space: nowrap;
  }
}

.main-nav .nav-link::before {
  content: "";
  position: absolute;
  left: calc(var(--nav-gap) * -0.5);
  right: calc(var(--nav-gap) * -0.5);
  bottom: 0;
  width: auto;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav .nav-link:hover::before,
.main-nav .nav-link.active::before {
  transform: scaleX(1);
}

.main-nav .dropdown-toggle::after {
  vertical-align: 2px;
  margin-left: 6px;
}

.main-nav .navbar-nav {
  gap: 0;
  align-items: center;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--orange) !important;
}

/* ===== Services text + caret wrapper ===== */

.main-nav .nav-item.dropdown {
  position: relative;
}

.main-nav .nav-link-wrap {
  display: flex;
  align-items: center;
}

.main-nav .nav-link-wrap .nav-link {
  margin: 0 0 0 var(--nav-gap);
}

.main-nav .dropdown-caret {
  border: 0;
  background: transparent;
  color: var(--navy-dark);
  padding: 6px 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.main-nav .dropdown-caret i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.main-nav .nav-item.dropdown.menu-open .dropdown-caret i {
  transform: rotate(180deg);
}

/* caret is hover-only on desktop -> now from 768px up */
@media (min-width: 768px) {
  .main-nav .dropdown-caret {
    pointer-events: none;
    cursor: default;
  }
}

@media (max-width: 767.98px) {
  .main-nav .dropdown-menu {
    display: none;
  }
  .main-nav .nav-item.dropdown.menu-open > .dropdown-menu {
    display: block;
  }
}

/* ===== Services dropdown (two-level flyout) ===== */

.topbar-text {
  font-size: 14px;
}

.main-nav .dropdown-menu {
  border: 0;
  border-radius: 6px;
  padding: 0;
  margin-top: 5px; /* was "5x" typo */
  min-width: 270px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  overflow: visible;
  /* required so the flyout submenu isn't clipped */
}

.main-nav .dropdown-item {
  font-size: 16px;
  font-family: "Inter", Sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 20px;
  font-weight: 400;
  color: var(--navy);
  border-radius: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.main-nav .dropdown-item i {
  font-size: 0.7rem;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
  background: var(--orange);
  color: #fff;
}

/* First-level items that own a flyout */

.dropdown-submenu {
  position: relative;
}

.submenu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
}

.submenu-title i {
  margin-left: 25px;
  font-size: 13px;
}

/* ---- Desktop only : now from 768px up ---- */

@media (min-width: 768px) {
  /* First dropdown */
  .navbar .hover-dropdown > .dropdown-menu,
  .main-nav .nav-item.dropdown > .dropdown-menu {
    display: block;
    top: 100%;
    left: 0;
    margin-top: 2px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }
  .navbar .hover-dropdown:hover > .dropdown-menu,
  .main-nav .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* Second-level dropdown */
  .navbar .dropdown-submenu > .submenu {
    display: block;
    top: 0;
    left: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }
  .navbar .dropdown-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}

@media (max-width: 767.98px) {
  .dropdown-submenu > .submenu {
    position: static;
    margin: 0;
    padding-left: 15px;
    border: 0;
    box-shadow: none;
  }
  .dropdown-submenu > .submenu:not(.show) {
    display: none;
  }
  .dropdown-submenu > .submenu.show {
    display: block;
  }
}

.main-nav .dropdown-submenu {
  position: relative;
}

/* Second-level (flyout) panel */

.main-nav .dropdown-submenu > .dropdown-menu.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 2px;
  min-width: 280px;
  border-radius: 10px;
  display: none;
}

.main-nav .dropdown-submenu > .submenu .dropdown-item {
  justify-content: flex-start;
  color: var(--text-dark);
  font-weight: 500;
}

.main-nav .dropdown-submenu > .submenu .dropdown-item:hover {
  background: var(--orange);
  color: #fff;
}

/* Reveal the flyout on hover (desktop) */

.main-nav .dropdown-submenu:hover > .dropdown-menu.submenu,
.main-nav .dropdown-submenu:focus-within > .dropdown-menu.submenu {
  display: block;
}

/* Keep the parent item highlighted while its flyout is open */

.main-nav .dropdown-submenu:hover > a.dropdown-item {
  background: var(--orange);
  color: #fff;
}

a.btn-booking {
  background: var(--navy-dark);
  color: #fff;
  font-size: 16px;
  font-family: "Lora", sans-serif;
  padding: 10px 20px;
  flex-shrink: 0;
}

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

/* Flip the flyout to the left only in the tight tablet band,
   where left:100% would run off the right edge */

@media (min-width: 768px) and (max-width: 991.98px) {
  .main-nav .dropdown-submenu > .dropdown-menu.submenu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 2px;
  }
  .navbar .dropdown-submenu > .submenu {
    left: auto;
    right: 100%;
    transform: translateX(-10px);
  }
  .navbar .dropdown-submenu:hover > .submenu {
    transform: translateX(0);
  }
}

/* Mobile: stack submenus inline instead of flyout (collapsed navbar) */

@media (max-width: 767.98px) {
  .main-nav .dropdown-submenu > .dropdown-menu.submenu {
    position: static;
    display: none;
    box-shadow: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    min-width: 0;
  }
  .main-nav .dropdown-submenu.open > .dropdown-menu.submenu {
    display: block;
  }
  /* prevent desktop hover from opening flyouts on touch */
  .main-nav .dropdown-submenu:hover > .dropdown-menu.submenu {
    display: none;
  }
  .main-nav .dropdown-submenu.open > .dropdown-menu.submenu {
    display: block;
  }
}

.navbar-toggler {
  background-color: var(--navy-dark);
  /* Navy */
  border: none;
  border-radius: 6px;
  padding: 4px 4px;
}

.navbar-toggler .bi-list {
  color: #fff;
  /* White Icon */
  font-size: 28px;
  line-height: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-orange {
  display: inline-block;
  background: var(--orange);
  border: 1px solid var(--orange);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding: 12px 22px;
  border-radius: 8px;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.08) !important;
}

/* .btn-orange:hover {
    background: #b56d02;
    border-color: #b56d02;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(206, 124, 4, .35);
} */

/* .navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: rotate(-6deg) scale(1.05);
} */

/* ===== Hero ===== */

/* .hero {
  background-image: url("../images/banners-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 70px 0;
} */

.hero {
  background: var(--navy) url("../images/banners-bg.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 70px 0;
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  opacity: 0;
  padding-top: 20px;
  animation: fadeInUp 0.8s ease 0.35s forwards;
}

/* .hero .btn-orange {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
} */

.hero-img-wrap {
  position: relative;
  opacity: 0;
  animation: fadeInRight 0.9s ease 0.3s forwards;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: 28px 0 28px 0;
  clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 15% 100%, 0 80%);
  transition: transform 0.5s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.03);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 50px 0;
    text-align: center;
  }
  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img-wrap img {
    clip-path: none;
    border-radius: 16px;
  }
	.page-banner-img {
		height:0 !important;
	}
}

@media (max-width: 575.98px) {
  .hero {
    padding: 40px 0;
  }
  .hero {
    background: var(--navy) url("https://drmuditnemani.com/wp-content/uploads/2026/07/mon-new-banner.png") center/cover
      no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    padding: 25px 0;
    text-align: left;
  }
  .hero h1 {
    font-size: 19px;
    text-align: left;
  }
  .hero p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
  }
  .btn-orange {
    font-size: 13px;
  }
}

/* ===== Services ===== */

.section-title {
  text-align: center;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 45px;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}

h2.section-title {
  font-size: 42px;
  font-weight: 600;
}

.service-card {
  border: 1px solid #ce7c04;
  border-radius: 10px;
  height: 100%;
  transition: 0.25s ease;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 12px 15px -15px
    rgba(205.99999999999994, 123.99999999999989, 3.9999999999999285, 0.63);
}

.service-card:hover {
  box-shadow: 0px 24px 30px -30px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 0px;
  display: block;
}

.service-card .body {
  padding: 15px 8px 12px;
  text-align: center;
}

.service-card h3 a {
  color: var(--navy);
  font-family: "Inter", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-card h3 a:hover {
  color: var(--orange);
}


.service-card p {
  font-family: "Lora", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #414141;
  margin: 0;
}

/* ===== About ===== */

.about-section {
  background-image:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 205, 90, 0.22) 0%,
      rgba(255, 205, 90, 0.08) 35%,
      transparent 65%
    ),
    linear-gradient(
      90deg,
      rgba(184, 138, 48, 0.98) 0%,
      rgba(184, 138, 48, 0.96) 52%,
      rgba(198, 147, 47, 0.78) 78%,
      rgba(205, 151, 43, 0.6) 100%
    ),
    url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 70px 0 0 0;
  position: relative;
  overflow: hidden;
}

.about-section h6.label {
  font-size: 13px;
  font-family: "Inter", Sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.about-section h2 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #f8f8f8;
}

.btn-outline-white {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.2s;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--gold);
}

.about-img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 50px 0;
    text-align: center;
  }
  .about-section p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-section .mt-4 {
    justify-content: center;
  }
  .topbar {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .about-section h2 {
    font-size: 1.7rem;
  }
}

/* ===== Stats ===== */

.stats-section {
  padding: 50px 0 50px;
}

.stat-item {
  text-align: center;
  margin-bottom: 24px;
}

.stat-item.border-right {
  text-align: center;
  border-right: 1px solid #695ffe40 !important;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-family: "Lora", sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--text-dark);
}

.stat-item .label {
  font-family: "Inter", sans-serif;
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 400;
}

/* @media (max-width: 767.98px) {
  .stat-item {
    border-right: 1px solid #e2e2e2;
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
} */

@media (max-width: 767.98px) {
  /* sagळe individual borders remove kara pahile */
  .stats-section .stat-item,
  .stats-section .stat-item.border-right {
    border: none !important;
  }
  /* row la relative positioning dya jyामुळे cross tyach्या madhe center hoईल */
  .stats-section .row {
    position: relative;
  }
  /* vertical line - center मध्ये top te bottom */
  .stats-section .row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #695ffe40;
  }
  /* horizontal line - center मध्ये left te right */
  .stats-section .row::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 3%;
    width: 96%;
    height: 1px;
    background: #695ffe40;
  }
  .stat-item {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .stat-item {
    margin-bottom: 0;
  }
}

/* ===== Advantages ===== */

.advantages-section {
  padding: 20px 0 40px;
}

.adv-card {
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--navy-dark);
  box-shadow: 0px 4px 4px 0px
    rgba(206.00000000000003, 123.99999999999994, 3.99999999999993, 0.33);
  border-radius: 8px;
  transition:
    background 0.3s,
    border 0.3s,
    border-radius 0.3s,
    box-shadow 0.3s;
  padding: 40px;
  text-align: center;
  height: 100%;
}

.adv-card:hover {
  box-shadow: 0px 0px 10px 0px #ffa500;
}

.adv-card h3 {
  font-family: "Lora", Sans-serif;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 16px;
}

.adv-card p {
  font-family: "Lora", Sans-serif;
  color: var(--navy-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

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

.cta-section {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 67, 108, 0.98) 0%,
      rgba(8, 67, 108, 0.96) 42%,
      rgba(8, 67, 108, 0.82) 68%,
      rgba(8, 67, 108, 0.72) 100%
    ),
    url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 300px;
  padding: 70px 0;
}

.cta-section h2 {
  font-weight: 500;
  margin-bottom: 28px;
  font-size: clamp(1.4rem, 3.6vw, 40px);
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 50px 0;
  }
}

.btn-white-pill {
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  padding: 15px 34px;
  border-radius: 30px;
  font-weight: 400;
}

.btn-white-pill:hover {
  background: #e9e9e9;
  color: var(--navy);
}

/* ===== Testimonials ===== */

.testimonials-section {
  padding: 70px 0;
  overflow: hidden;
}

.testimonials-section .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  font-family: "Inter", Sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  margin-bottom: 8px;
}

.testi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 4px 4px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .testi-slide {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.testimonial-card {
  background: var(--gray-bg);
  border-radius: 6px;
  padding: 26px 24px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .tname {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-card .tdate {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.testimonial-card .stars {
  color: #f5b301;
  font-size: 0.85rem;
  margin: 6px 0 10px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin: 0;
}

.testi-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.testi-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

@media (max-width: 575.98px) {
  .testi-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

/* ===== Testimonial mobile scrollbar ===== */

.testi-scrollbar {
  display: none;
}

@media (max-width: 767.98px) {
  .testi-scrollbar {
    display: none;
    width: 60%;
    max-width: 200px;
    height: 4px;
    background: #e2e2e2;
    border-radius: 4px;
    margin: 4px auto 0;
    overflow: hidden;
    position: relative;
  }
  .testi-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33%;
    background: var(--orange);
    border-radius: 4px;
    transition: transform 0.1s linear;
  }
}

/* ===== Footer ===== */

.footer {
  background: var(--navy-dark);
  color: #c9d3db;
  padding-top: 60px;
}

.footer h5 {
  font-family: "Lora", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer a {
  color: #c9d3db;
  font-size: 0.88rem;
}

.footer a:hover {
  color: var(--orange);
}

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

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

.footer ul li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer ul li a i {
  margin-top: 5px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.footer .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.footer .contact-item i {
  margin-top: 4px;
  flex-shrink: 0;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer .logo-box {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  width: 160px;
}

.footer .logo-box .footer-logo-img {
  max-width: 100%;
  width: 180px;
}

.footer .social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  font-size: 0.85rem;
}

.footer .social-icon.youtube {
  background: #0A66C2;
}

.topbar .social-icon.facebook {
  background: #3b5998;
}

.topbar .social-icon.instagram {
  background: #000000;
}

.topbar .social-icon.geo {
  background: #69727d;
}

.footer-bottom {
  margin-top: 55px;
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom .whitecoats-logo {
  height: 26px;
}

/* ==========================================================
   ABOUT US PAGE — Page Banner + About Content
   ========================================================== */

/* ===== Page Banner (About Us) ===== */

.page-banner {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 64, 101, 1) 0%,
      rgba(8, 64, 101, 1) 48%,
      rgba(8, 64, 101, 0.96) 55%,
      rgba(8, 64, 101, 0.68) 70%,
      rgba(8, 64, 101, 0.28) 100%
    ),
    url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.page-banner h1 {
  font-family: "Lora", Sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1em;
  color: #fff;
  margin-bottom: 14px;
}

.breadcrumb-nav {
  font-size: 1rem;
  color: #dbe4ec;
}

.breadcrumb-nav a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1em;
}

.breadcrumb-nav a:hover {
  color: var(--orange);
}

.breadcrumb-nav .sep {
  margin: 0 10px;
  font-size: 0.75rem;
  color: #ffffff;
}

.breadcrumb-nav .current {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1em;
}

.page-banner-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  overflow: hidden;
}

.page-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-banner-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(18, 60, 98, 0) 60%);
}

@media (max-width: 991.98px) {
  .page-banner {
    padding: 50px 0;
    text-align: center;
  }
  .page-banner-img {
    width: 100%;
    opacity: 0.25;
  }
  .breadcrumb-nav {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .page-banner {
    padding: 40px 0;
  }
}

/* ===== About Page Section ===== */

.about-page-section {
  padding: 70px 0 20px 0;
}

.about-page-img {
  width: 100%;
  border-radius: 6px;
}

.about-page-section h2 {
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 40px);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-page-section h2 .text-orange {
  color: var(--orange);
}

.about-page-section p {
  color: var(--text-gray);
  font-size: 18px;
  font-family: "Lora", Sans-serif;
  font-weight: 400;
  line-height: 1.85;
}

.about-page-full {
  margin-top: 36px;
  color: var(--text-gray);
  font-size: 0.98rem;
  line-height: 1.85;
}

@media (max-width: 991.98px) {
  .about-page-section {
    padding: 50px 0;
    text-align: center;
  }
}

/* ==========================================================
   SERVICE SINGLE PAGE — Service Detail Section
   ========================================================== */

a.service-card-title-link {
  color: var(--navy);
}

/* ===== Service Detail Page ===== */

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

.service-detail-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 28px;
}

.service-detail-lead {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-detail-section > .container p {
  color: var(--text-gray);
  font-size: 0.98rem;
  line-height: 1.8;
}

.service-detail-section h3 {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 14px;
}

.service-detail-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-gray);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.service-detail-list li strong {
  color: var(--text-dark);
}

/* Sidebar */

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.service-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dba85f;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 16px 20px;
  border-radius: 4px;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-sidebar-link i {
  font-size: 0.8rem;
}

.service-sidebar-link:hover,
.service-sidebar-link.active {
  background: var(--orange);
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 8px 18px rgba(206, 124, 4, 0.3);
}

.service-map-card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.service-map-link {
  display: block;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background: #eef4f9;
}

.service-map-link i {
  font-size: 0.75rem;
  margin-left: 4px;
}

.service-map-link:hover {
  color: var(--orange);
}

.service-map-embed {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.service-map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .service-detail-section {
    padding: 50px 0;
  }
  .service-detail-lead {
    font-size: 1.4rem;
  }
}

/* ==========================================================
   BLOG PAGE — Blog Grid
   ========================================================== */

/* ===== Blog Grid ===== */

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

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.blog-card-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-body h3 a {
  color: var(--navy);
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1.2em;
  letter-spacing: 0px;
  transition: color 0.2s ease;
}

.blog-card-body h3 a:hover {
  color: var(--orange);
}

.blog-card-body p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 1.5em;
  letter-spacing: 0px;
  word-spacing: 0em;
}

.blog-read-more {
  color: #1155cc;
  font-size: 0.9rem;
  text-decoration: underline;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: italic;
  text-decoration: underline;
  line-height: 1em;
  letter-spacing: 0px;
}

.blog-read-more:hover {
  color: var(--orange);
}

@media (max-width: 767.98px) {
  .blog-grid-section {
    padding: 50px 0;
  }
  .blog-card-img {
    height: 200px;
  }
}

/* ==========================================================
   CONTACT US PAGE — Location Cards + Map/Form Section
   ========================================================== */

/* ===== Contact Locations ===== */

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

.contact-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0px 12px 15px -15px rgba(0, 0, 0, 0.5);
  padding: 0px 0px;
  margin-bottom: 32px;
}

.contact-card-col {
  text-align: center;
  border-right: 1px solid #eee;
  padding: 50px 40px 50px 40px;
  /* min-height: 350px; */
}

.contact-card-col:last-child {
  border-right: none;
}

.contact-card-col h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1em;
  color: var(--navy-dark);
  margin-bottom: 15px;
}

.contact-card-col h3:not(:first-child) {
  margin-top: 20px;
}

.contact-card-col p {
  text-align: center;
  font-family: "Lora", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1em;
  color: #1e1e1e;
}

.contact-card-col p a {
  color: var(--navy);
  text-align: center;
  font-family: "Lora", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1em;
}

.contact-card-col p a:hover {
  color: var(--orange);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

 @media (max-width: 767.98px) {
  .contact-card-col {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 24px;
  }
  .contact-card-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
} 


/* YD */
/* ==========================================================
   CONTACT LOCATION CARDS — RESPONSIVE IMPROVEMENTS
   Add this CSS after the existing contact page CSS
   ========================================================== */

/* Prevent long email addresses, URLs and phone numbers overflowing */
.contact-card-col,
.contact-card-col p,
.contact-card-col p a {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Tablet: 768px to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-locations-section {
    padding: 50px 0 0;
  }

  .contact-card {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
  }

  .contact-card-col {
    padding: 35px 20px;
  }

  .contact-card-col h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .contact-card-col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .contact-card-col p a {
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    font-size: 18px;
  }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
	.contact-card-icons{
		margin-top:40px;
	}
  .contact-locations-section {
    padding: 40px 0 0;
  }

  .contact-card {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 20px;
  }

  /*
   This targets the Bootstrap row normally placed inside
   the .contact-card container.
  */
  .contact-card > .row {
    margin-left: 0;
    margin-right: 0;
    gap: 16px;
  }

  .contact-card-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(18, 37, 63, 0.08);
    padding: 30px 22px;
    margin: 0;

    /* Remove desktop separator borders */
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  }

  .contact-card-col:last-child {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 30px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 20px;
    margin: 0 auto 18px;
    box-shadow: 0 8px 18px rgba(18, 37, 63, 0.16);
  }

  .contact-card-col h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .contact-card-col h3:not(:first-child) {
    margin-top: 18px;
  }

  .contact-card-col p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .contact-card-col p:last-child {
    margin-bottom: 0;
  }

  .contact-card-col p a {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .contact-locations-section {
    padding-top: 30px;
  }

  .contact-card > .row {
    gap: 14px;
  }

  .contact-card-col {
    padding: 26px 18px;
    border-radius: 10px;
  }

  .contact-card-col:last-child {
    padding-bottom: 26px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-card-col h3 {
    font-size: 20px;
  }

  .contact-card-col p,
  .contact-card-col p a {
    font-size: 15px;
  }
}
/* /YD  */
/* ===== Contact Form Section ===== */

.contact-form-section {
  background: #eef0f7;
  padding: 70px 0;
}

.contact-map-embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  overflow: hidden;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.contact-map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-section h2 {
  /* font-weight: 700;
            font-size: clamp(1.6rem, 3.2vw, 2rem); */
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.1em;
  text-align: center;
}

.contact-form .form-control {
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.92rem;
  background: #fff;
  min-height: 72px;
}

.contact-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(206, 124, 4, 0.15);
}

.recaptcha-badge {
  display: block;
  align-items: center;
  gap: 8px;
  background: #f0f4fb;
  border: 1px solid #dbe3ee;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-gray);
  width: 225px;
}

.btn-navy-solid {
  background: var(--navy);
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-navy-solid:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(5, 44, 72, 0.3);
}

@media (max-width: 991.98px) {
  .contact-form-section {
    padding: 50px 0;
  }
  .contact-map-embed {
    min-height: 300px;
    margin-bottom: 8px;
  }
}

/* YD- 13-07-2026 */

.page-banner {
  background: var(--navy-dark);
  padding: 112px 0;
}

.contact-caption {
  min-height: 150px;
}

.contact-form textarea.form-control::placeholder {
  color: #414141 !important;
}

.contact-form textarea.form-control::-webkit-input-placeholder {
  color: #414141 !important;
}

.contact-form textarea.form-control::-moz-placeholder {
  color: #414141 !important;
  opacity: 1;
}

.contact-form textarea.form-control:-ms-input-placeholder {
  color: #414141 !important;
}

.appointment-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23052C48' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.appointment-form input[type="date"],
.appointment-form input[type="time"] {
  cursor: pointer;
}

.appointment-section .form-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

@media (max-width: 768px) {
	.footer-bottom {
    margin-top: 0;
   
}
  .main-nav .navbar-nav .nav-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 16px !important;
  }
  .main-nav .nav-link.active {
    background: var(--orange);
    color: #fff !important;
    /* border-radius: 4px; */
    /* border-radius: 10px 10px 0 0; */
  }
  .main-nav .nav-link.active::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .btn-outline-white {
    width: 100%;
  }
  .page-banner-img {
    height: 0;
  }
  .page-banner {
    padding: 29px 0;
    min-height: 154px;
    align-items: center;
    display: flex;
  }
  .page-banner h1 {
    font-size: 26px;
    text-align: left;
  }
  .breadcrumb-nav {
    justify-content: start;
    display: flex;
  }
  .breadcrumb-nav a {
    font-size: 15px;
  }
  .breadcrumb-nav .current {
    font-size: 15px;
  }
}

/* ===== Blog Detail Page ===== */

.blog-detail-section {
  padding: 60px 0;
}

.blog-detail-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.blog-featured-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-content h2 {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content p {
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.blog-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.blog-content ul li {
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.blog-content ul li strong {
  color: var(--text-dark);
}

.blog-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e2e2;
}

.share-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.share-icons {
  display: flex;
  gap: 10px;
}

.share-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.share-icon.facebook {
  background: #1877f2;
}

.share-icon.whatsapp {
  background: #25d366;
}

.share-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #fff;
}

/* ===== Responsive ===== */

@media (max-width: 767.98px) {
  .blog-detail-section {
    padding: 40px 0;
  }
  .blog-featured-img {
    margin-bottom: 28px;
  }
  .blog-content h2 {
    font-size: 21px;
    margin: 28px 0 12px;
  }
  .blog-content p,
  .blog-content ul li {
    font-size: 15px;
    line-height: 1.7;
  }
  .blog-share {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 575.98px) {
  .blog-content h2 {
    font-size: 19px;
  }
  .share-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }	
}
/* ==========================================================================
   NAVBAR — DROPDOWN STATES + MOBILE MENU
   File chya SHEVATI theva (cascade order var avlambun aahe)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Bootstrap dropdown variables -> theme color
   -------------------------------------------------------------------------- */
.main-nav .dropdown-menu {
  --bs-dropdown-link-color: var(--navy);
  --bs-dropdown-link-hover-bg: var(--orange);
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-active-bg: var(--orange);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-border-radius: 10px;
}

/* --------------------------------------------------------------------------
   2. ACTIVE LEAF  (jyala children nahit — kharach cha current page)
      -> full orange bg + white text
   -------------------------------------------------------------------------- */
.main-nav .dropdown-menu .dropdown-item.active,
.main-nav .dropdown-menu .dropdown-item:active,
.main-nav .dropdown-menu .current-menu-item > .dropdown-item {
  background: var(--orange) !important;
  color: #fff !important;
}
.main-nav .dropdown-menu .dropdown-item.active i,
.main-nav .dropdown-menu .current-menu-item > .dropdown-item i {
  color: #fff !important;
}

/* --------------------------------------------------------------------------
   3. ANCESTOR / PARENT  (jyachya AAT active page aahe)
      -> fakt orange TEXT, bg transparent
      .dropdown-submenu la nehmi children astat => structural detection,
      mhanun JS 'active' lavo ki WP 'current-menu-ancestor' — donhi chalel
   -------------------------------------------------------------------------- */
.main-nav .dropdown-menu .dropdown-submenu > .dropdown-item.active,
.main-nav .dropdown-menu .current-menu-ancestor > .dropdown-item,
.main-nav .dropdown-menu .current-menu-parent > .dropdown-item {
  background: transparent !important;
  color: var(--orange) !important;
  font-weight: 600;
}
.main-nav .dropdown-menu .dropdown-submenu > .dropdown-item.active i,
.main-nav .dropdown-menu .current-menu-ancestor > .dropdown-item i,
.main-nav .dropdown-menu .current-menu-parent > .dropdown-item i {
  color: var(--orange) !important;
}

/* --------------------------------------------------------------------------
   4. HOVER  — fakt kharya mouse var (touch var sticky hoat nahi)
      He sagalyat shevati => tie var jinkte
   -------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .main-nav .dropdown-menu .dropdown-item:hover,
  .main-nav .dropdown-menu .dropdown-item:focus-visible,
  .main-nav .dropdown-submenu > .submenu .dropdown-item:hover,
  .main-nav .dropdown-menu .dropdown-submenu > .dropdown-item.active:hover,
  .main-nav .dropdown-menu .current-menu-ancestor > .dropdown-item:hover,
  .main-nav .dropdown-menu .current-menu-parent > .dropdown-item:hover {
    background: var(--orange) !important;
    color: #fff !important;
  }
  .main-nav .dropdown-menu .dropdown-item:hover i,
  .main-nav .dropdown-submenu > .submenu .dropdown-item:hover i,
  .main-nav .dropdown-menu .dropdown-submenu > .dropdown-item.active:hover i,
  .main-nav .dropdown-menu .current-menu-ancestor > .dropdown-item:hover i {
    color: #fff !important;
  }
}
    .page-banner h1 {
        text-align: left;
    }
/* ==========================================================================
   MOBILE MENU  (< 768px) — left align + full-width states
   ========================================================================== */
@media (max-width: 767.98px) {
    .page-banner h1 {
        text-align: left;
    }
	    .breadcrumb-nav {
        justify-content: start;
        display: flex;
    }
	.page-banner-img {
    height: 0;
}
  /* ---- 5. Layout: collapse + ul puri width (mx-auto override) ---- */
  .main-nav .navbar-collapse {
    align-items: stretch;
    padding: 8px;
  }
  .main-nav .navbar-nav {
    width: 100%;
    align-items: stretch;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .main-nav .navbar-nav .nav-item {
    width: 100%;
  }

  /* ---- 6. Top-level links: full width, left align ---- */
  .main-nav .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    margin: 2px 0 !important;
    padding: 11px 14px !important;
    border-radius: 6px;
  }
  .main-nav .nav-link::before {
    display: none;              /* underline nako, ata full bg aahe */
  }
  .main-nav .nav-link.active {
    background: var(--orange);
    color: #fff !important;
  }

  /* ---- 7. Services row (text + caret ekach row) ---- */
  .main-nav .nav-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 6px;
    margin: 2px 0;
  }
  .main-nav .nav-link-wrap .nav-link {
    flex: 1 1 auto;
    margin: 0 !important;
    border-radius: 6px 0 0 6px;
  }
  .main-nav .dropdown-caret {
    padding: 11px 14px;
    border-radius: 0 6px 6px 0;
    background: transparent;
  }

  /* row madhe active kinva open asel tar caret sahit puri row orange */
  .main-nav .nav-link-wrap:has(> .nav-link.active),
  .main-nav .nav-item.dropdown.menu-open > .nav-link-wrap,
  .main-nav .nav-item.current-menu-ancestor > .nav-link-wrap {
    background: var(--orange);
  }
  .main-nav .nav-link-wrap:has(> .nav-link.active) .nav-link,
  .main-nav .nav-link-wrap:has(> .nav-link.active) .dropdown-caret,
  .main-nav .nav-item.dropdown.menu-open > .nav-link-wrap .nav-link,
  .main-nav .nav-item.dropdown.menu-open > .nav-link-wrap .dropdown-caret,
  .main-nav .nav-item.current-menu-ancestor > .nav-link-wrap .nav-link,
  .main-nav .nav-item.current-menu-ancestor > .nav-link-wrap .dropdown-caret {
    background: transparent;
    color: #fff !important;
  }

  /* :has() nasel tya browser sathi fallback */
  .main-nav .nav-item.dropdown.menu-open > .nav-link-wrap > .nav-link {
    color: #fff !important;
  }

  /* ---- 8. Dropdown panels: EKACH indent (double padding fix) ---- */
  .main-nav .dropdown-menu {
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    margin: 0 !important;
  }

  /* level-1 panel (Medical / Surgical) */
  .main-nav .nav-item.dropdown > .dropdown-menu {
    padding: 4px 0 4px 10px !important;
  }

  /* level-2 panel (Arthroscopy ...) */
  .main-nav .dropdown-submenu > .dropdown-menu.submenu {
    padding: 2px 0 2px 12px !important;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
  }

  .main-nav .dropdown-item {
    width: 100%;
    text-align: left;
    justify-content: space-between;
    padding: 9px 12px;
    margin: 1px 0;
    border-radius: 6px;
  }

  /* ---- 9. Open/close: 'open' (parent) ani 'show' (submenu) donhi accept ---- */
  .main-nav .dropdown-submenu.open > .dropdown-menu.submenu,
  .main-nav .dropdown-submenu > .dropdown-menu.submenu.show {
    display: block !important;
  }

  /* desktop cha hover-flyout mobile var kill kara */
  .main-nav .dropdown-submenu:hover > .dropdown-menu.submenu,
  .main-nav .dropdown-submenu:focus-within > .dropdown-menu.submenu {
    display: none;
  }
  .main-nav .dropdown-submenu.open:hover > .dropdown-menu.submenu,
  .main-nav .dropdown-submenu.open:focus-within > .dropdown-menu.submenu {
    display: block !important;
  }

  /* desktop cha "parent highlight on hover" pan kill */
  .main-nav .dropdown-submenu:hover > a.dropdown-item {
    background: transparent;
    color: var(--navy);
  }

  /* ---- 10. Level-2 chevron: band = right, ughada = khali ---- */
  .main-nav .dropdown-submenu > .dropdown-item i {
    transition: transform 0.25s ease;
  }
  .main-nav .dropdown-submenu.open > .dropdown-item i {
    transform: rotate(90deg);
  }

  /* ---- 11. Ughadlela parent = orange text (ancestor sarkha) ---- */
  .main-nav .dropdown-submenu.open > a.dropdown-item {
    background: transparent !important;
    color: var(--orange) !important;
    font-weight: 600;
  }
  .main-nav .dropdown-submenu.open > a.dropdown-item i {
    color: var(--orange) !important;
  }

  /* ---- 12. Book Appointment button ---- */
  .main-nav .navbar-collapse .btn-booking {
    text-align: center;
  }
}
.footer .social-icon.facebook {
	    background: #3b5998;
}
.footer .social-icon.instagram {
	    background: #000000;
}
.footer .social-icon.geo {
	    background: #69727d;
}