/* ==========================================================================
   Dr. Neelima Kakde's Orthodontic Care - Style Sheet
   ========================================================================== */

/* --- Custom Variables & Theme Settings --- */
:root {
  --primary-teal: #00a294;
  --primary-teal-hover: #00857a;
  --dark-navy: #112a8b;
  --dark-navy-hover: #072559;
  --text-color: #000;
  --light-grey: #f7fafc;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --overlay-dark: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-cursive: "Poppins", sans-serif;
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--light-grey);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* --- Header & Navbar Layout --- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
  padding: 0 20px;
}

/* Scroll behavior for Navbar */
.navbar-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--nav-shadow);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  position: relative;
}

/* Logo Link and Pill Shape (Vertically centered capsule) */
.logo-link {
  display: block;
}

.logo-pill {
  background-color: var(--white);
  padding: 8px 30px;
  border-radius: 50px; /* Fully rounded capsule */
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 162, 148, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-pill:hover {
  transform: translateY(2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.logo-img {
  max-height: 50px; /* Optimized height for centered capsule */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav Links Menu */
.nav-navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  padding: 8px 16px;
  border-radius: 30px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-teal);
}

/* Home Link Active State (Teal Pill Background) */
.nav-link.active {
  background-color: var(--primary-teal);
  color: var(--white) !important;
  padding: 8px 20px;
  box-shadow: 0 4px 15px rgba(0, 162, 148, 0.3);
}

/* Dropdown Menu styling for Services */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hide Bootstrap default arrow caret */
.dropdown-toggle::after {
  display: none !important;
}

.plus-icon {
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .plus-icon {
  transform: rotate(45deg);
}

.dropdown-menu {
  display: block !important; /* Override Bootstrap's display: none */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #f1f5f9; /* Light grey for the top/bottom bands */
  min-width: 250px;
  border-radius: 0px; /* Sharp corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 15px 0; /* Creates grey bands at the top and bottom */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1.5px solid #112a8b; /* Blue outline border */
  z-index: 1000;
}

.dropdown-menu::before {
  display: none !important; /* Remove top triangle arrow */
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff; /* White background for options */
  padding: 15px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #00a294; /* Teal text color */
  border-bottom: 1.5px solid #f1f5f9; /* Divider line */
  transition: all 0.3s ease;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: var(--primary-teal-hover);
}

.dropdown-plus {
  color: #00a294; /* Teal plus sign */
  font-size: 1.15rem;
  font-weight: 400;
}

/* --- Mobile Menu Toggle --- */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-navy);
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--dark-navy);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

/* Toggle Active Animation */
.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- Hero Section & Welcome Card --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px 20px;
  overflow: hidden;
}

/* --- Hero Slider --- */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  animation: kenburns 12s ease-in-out infinite;
}

/* Ken Burns dynamic panning/zooming effect */
@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06) translate(0.3%, 0.3%);
  }
  100% {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-dark);
  z-index: 3;
}

/* Card in the center */
.hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.welcome-card {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 35px 30px;
  border-radius: 0px; /* Sharp corners */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 100%;
  animation: fadeInUp 1s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.welcome-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.welcome-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .welcome-title {
    white-space: nowrap;
  }
}

.welcome-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary-teal);
  color: var(--primary-teal);
  background-color: transparent;
  padding: 12px 35px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 162, 148, 0.05);
}

.cta-button:hover {
  background-color: var(--primary-teal);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 162, 148, 0.3);
  transform: translateY(-1px);
}

.calendar-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover .calendar-icon {
  transform: scale(1.1);
}

/* --- Appointment Modal --- */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-modal.active {
  opacity: 1;
  visibility: visible;
}

.custom-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.custom-modal-container {
  position: relative;
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.custom-modal.active .custom-modal-container {
  transform: scale(1);
}

.custom-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.custom-modal-close:hover {
  color: var(--dark-navy);
}

.custom-modal-title {
  font-family: var(--font-heading);
  color: var(--dark-navy);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.custom-modal-desc {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 25px;
}

.appointment-form .form-group {
  margin-bottom: 20px;
}

.appointment-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus {
  outline: none;
  border-color: var(--primary-teal);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 162, 148, 0.15);
}

.submit-btn {
  width: 100%;
  background-color: var(--primary-teal);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 162, 148, 0.25);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-teal-hover);
  box-shadow: 0 6px 16px rgba(0, 162, 148, 0.35);
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Breakpoints --- */

/* Tablet Screens (under 992px) */
@media (max-width: 992px) {
  .nav-container {
    height: 80px;
  }

  .logo-pill {
    padding: 8px 20px;
    border-radius: 50px;
  }

  .logo-title {
    font-size: 1.25rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  /* Mobile Toggle and Navbar overlay */
  .mobile-nav-toggle {
    display: block;
  }

  .nav-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 40px 30px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
  }

  .nav-navigation.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 8px 0;
    width: 100%;
    display: block;
    border-radius: 0;
  }

  .nav-link.active {
    background-color: transparent;
    color: var(--primary-teal) !important;
    padding: 8px 0;
    box-shadow: none;
    font-weight: 700;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none !important;
    padding: 0 !important;
    padding-left: 15px !important;
    background-color: transparent !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent !important;
    padding: 8px 0 !important;
    border-bottom: none !important;
    color: var(--text-color) !important;
  }

  .dropdown-plus {
    display: none !important;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    transform: none;
    max-height: 200px;
  }

  /* Hero section font sizing */
  .welcome-card {
    padding: 40px 25px;
  }

  .welcome-title {
    font-size: 1.8rem;
  }

  .welcome-tagline {
    font-size: 1.15rem;
  }
}

/* Mobile Screens (under 576px) */
@media (max-width: 576px) {
  .logo-pill {
    padding: 6px 15px;
    border-radius: 50px;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .welcome-card {
    padding: 30px 15px;
  }

  .welcome-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .welcome-title {
    font-size: 1.45rem;
    margin-bottom: 15px;
    line-height: 1.25;
  }

  .welcome-tagline {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  .custom-modal-container {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   Info Overlay Cards Section (Overlaps Hero Boundary)
   ========================================================================== */
.info-overlay-section {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: var(--white);
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-110px);
}

.info-card {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 35px 25px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.info-card-icon {
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon i {
  font-size: 2.8rem;
  color: var(--white) !important;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: var(--white) !important;
}

.info-card-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
  color: var(--white) !important;
}

.info-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  color: var(--white) !important;
}

.info-card-contacts a {
  color: var(--white) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.info-card-contacts a:hover {
  opacity: 0.8;
  text-decoration: underline;
  color: var(--white) !important;
}

/* Responsive card styling */
@media (max-width: 992px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    transform: translateY(-60px);
    padding: 0 20px;
  }

  .info-overlay-section {
    padding-bottom: 15px;
    margin-bottom: -60px;
  }

  .about-section {
    padding-top: 20px;
  }
}

/* ==========================================================================
   About Section & Clinic Introduction
   ========================================================================== */
.about-section {
  background-color: var(--white);
  padding: 30px 0 100px 0;
}

.about-container-bs {
  max-width: 1200px;
  margin: 0 auto;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 2px;
  line-height: 1.25;
  margin-bottom: 0;
}

/* Decorative tooth line separator */
.decorative-divider {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 25px 0;
}

.divider-line {
  flex: 1;
  height: 1.5px;
  background-color: var(--primary-teal);
}

.divider-tooth-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-teal);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  box-shadow: 0 2px 10px rgba(0, 162, 148, 0.1);
}

.divider-tooth-circle i {
  font-size: 1.25rem;
  color: var(--primary-teal);
}

.about-description {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  margin-bottom: 35px;
  text-align: justify;
}

/* Know More CTA Button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary-teal);
  color: var(--primary-teal);
  background-color: transparent;
  padding: 12px 35px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 162, 148, 0.05);
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
  background-color: var(--primary-teal);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 162, 148, 0.3);
  transform: translateY(-1px);
}

.about-cta-btn .calendar-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.about-cta-btn:hover .calendar-icon {
  transform: scale(1.1);
}

/* Right Grid Visuals (Image Offset Border) */
.about-visual-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-image-wrapper {
  position: relative;
  padding: 0 15px 15px 0;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 0;
  bottom: 0;
  border: 3px solid var(--dark-navy);
  border-top-right-radius: 100px;
  z-index: 1;
  pointer-events: none;
}

.about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top-right-radius: 100px;
  box-shadow: var(--card-shadow);
  display: block;
  object-fit: cover;
  height: 380px;
}

/* Feature bullets layout */
.about-features-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-left: 15px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  flex: 1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--dark-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 6px 15px rgba(10, 51, 122, 0.25);
  transition: transform 0.3s ease;
}

.about-feature-item:hover .feature-icon-box {
  transform: scale(1.05);
}

.feature-icon-box i {
  font-size: 1.35rem;
  color: var(--white) !important;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #000 !important;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-img {
    height: auto;
    max-height: 400px;
  }

  .about-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }

  .about-features-container {
    padding-left: 0;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-features-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==========================================================================
   Services / Dental Treatments Section
   ========================================================================== */
.services-section {
  background-color: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.services-container-bs {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 2px;
  line-height: 1.25;
  margin-bottom: 0;
}

.services-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin-top: 10px;
}

/* Treatment Cards Grid and Row */
.services-cards-row {
  margin-top: 20px;
}

.treatment-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 162, 148, 0.1);
  border-radius: 16px;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Glowing top indicator line */
.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary-teal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
  z-index: 10;
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 162, 148, 0.08);
  border-color: rgba(0, 162, 148, 0.25);
}

/* Image Wrapper */
.treatment-card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: #f7fafc;
}

.treatment-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.treatment-card:hover .treatment-card-img {
  transform: scale(1.08);
}

/* Content wrapper */
.treatment-card-content {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title and Description */
.treatment-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.treatment-card:hover .treatment-card-title {
  color: var(--primary-teal);
}

.treatment-card-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
  text-align: justify;
}

@media (max-width: 992px) {
  .services-section {
    padding: 70px 0;
  }
  .treatment-card {
    padding: 35px 25px;
  }
}

/* ==========================================================================
   Team & Commitment Section
   ========================================================================== */
.team-section {
  background-color: var(--light-grey);
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.team-container-bs {
  max-width: 1200px;
  margin: 0 auto;
}

.commitment-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.commitment-subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.commitment-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 0;
}

.commitment-list {
  display: flex;
  flex-direction: column;

  margin-top: 5px;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.commitment-list li:hover {
  background-color: rgba(0, 162, 148, 0.04);
  transform: translateX(4px);
}

.commitment-list li .list-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 162, 148, 0.08);
  color: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.3s ease;
}

.commitment-list li:hover .list-icon {
  background-color: var(--primary-teal);
  color: var(--white);
  transform: scale(1.1) rotate(15deg);
}

.commitment-list li .list-icon i {
  font-size: 0.85rem;
}

.commitment-list li .list-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.45;
}

/* Doctor Card Styles */
.doctor-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(0, 162, 148, 0.03);
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 42, 139, 0.12);
  border-color: rgba(0, 162, 148, 0.15);
}

.doctor-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background-color: var(--primary-teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.doctor-card:hover::after {
  width: 80%;
}

.doctor-img-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #f7fafc;
}

.doctor-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.doctor-info {
  padding: 24px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 162, 148, 0.04);
}

.doctor-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.doctor-card:hover .doctor-name {
  color: var(--primary-teal);
}

.doctor-specialty {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}

/* Responsive Styles for Team Section */
@media (max-width: 992px) {
  .team-section {
    padding: 60px 0;
  }

  .commitment-content {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .commitment-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   Stats / Numbers Speak Section
   ========================================================================== */
.stats-section {
  background-color: var(--white);
  padding: 90px 0;
  position: relative;
}

.stats-container-bs {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.stats-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.divider-centered {
  margin: 20px auto 35px auto !important;
}

/* Stat Card Styles */
.stat-card {
  border: 1px solid var(--primary-teal);
  background-color: var(--white);
  padding: 35px 20px;
  text-align: center;
  border-radius: 0px; /* Sharp corners like screenshot */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 162, 148, 0.02);
  box-shadow: 0 10px 25px rgba(0, 162, 148, 0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for stats */
@media (max-width: 992px) {
  .stats-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 38px;
  }

  .stat-card {
    padding: 35px 20px;
  }
}

/* ==========================================================================
   Testimonials / Happy Clients Section
   ========================================================================== */
.testimonials-section {
  background-color: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
}

.testimonials-container-bs {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 50px;
}

.testimonials-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Testimonial Carousel Slides */
.testimonial-slider {
  position: relative;
  min-height: 280px; /* Prevents container height jumping */
}

.testimonial-slide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(25px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.testimonial-slide.hidden {
  display: none;
}

/* Client Profile Card (Left Side) */
.client-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
}

.client-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border: 4px solid var(--white);
}

.bg-purple-avatar {
  background-color: #6f42c1;
}
.bg-teal-avatar {
  background-color: var(--primary-teal);
}
.bg-orange-avatar {
  background-color: #fd7e14;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-teal);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.client-rating {
  color: #ffc107; /* Gold stars */
  font-size: 1.15rem;
  display: flex;
  gap: 4px;
}

/* Review Quote Box (Right Side) */
.review-quote-box {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  border: 1px solid var(--border-color);
}

.quote-icon-main {
  font-size: 2.8rem;
  color: rgba(0, 162, 148, 0.1);
  position: absolute;
  top: 25px;
  left: 30px;
  pointer-events: none;
}

.review-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  text-align: justify;
  padding-left: 20px;
}

.review-footer {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.review-source {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #112a8b !important;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.review-source:hover {
  color: var(--primary-teal) !important;
}

/* Pagination Indicators styling */
.testimonials-pagination {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.pagination-btn {
  width: 44px;
  height: 44px;
  background-color: #edf2f7;
  border: 1px solid #cbd5e0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagination-btn.active {
  background-color: #a0aec0; /* Grey active state in screenshot */
  color: var(--white);
  border-color: #a0aec0;
}

.pagination-btn:hover:not(.active) {
  background-color: var(--primary-teal);
  color: var(--white);
  border-color: var(--primary-teal);
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 992px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .client-profile-card {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .testimonial-slider {
    min-height: auto;
  }

  .review-quote-box {
    padding: 30px;
  }

  .review-text {
    font-size: 15.5px;
    padding-left: 0;
  }

  .quote-icon-main {
    top: 15px;
    left: 15px;
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   Why Choose Us / Complete Care Section
   ========================================================================== */
.features-banner-section {
  position: relative;
  padding: 50px 0;
  background-image: url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax scrolling effect on desktop */
  overflow: hidden;
}

/* Semi-transparent overlay to ensure balance */
.banner-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.banner-container-bs {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Glassmorphic Container */
.glass-features-card {
  background: rgba(255, 255, 255, 0.4);

  border: none;
  border-radius: 0px; /* Sharp corners like screenshot */
  padding: 30px 30px;
  box-shadow: none;
  animation: fadeInUp 1s ease;
}

.banner-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-color);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy) !important;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 0;
}

.features-divider {
  max-width: 100% !important;
  margin: 20px 0 35px 0 !important;
}

.features-divider .divider-line {
  background-color: var(--primary-teal);
  opacity: 0.8;
}

.features-divider .divider-tooth-circle {
  border-color: var(--primary-teal);
  background-color: var(--primary-teal);
  box-shadow: 0 4px 10px rgba(0, 162, 148, 0.15);
}

.features-divider .divider-tooth-circle i {
  color: var(--white) !important;
}

/* 2x2 Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Individual Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8); /* Thin white border like screenshot */
  border-radius: 8px; /* Slightly rounded corners */
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Icon styling */
.feature-card-icon-wrapper {
  width: 54px;
  height: 54px;
  border: 2px solid var(--dark-navy); /* Dark navy border like screenshot */
  border-radius: 8px; /* Rounded rectangle like screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}

.feature-card-icon-wrapper i {
  font-size: 1.4rem;
  color: var(--dark-navy) !important;
}

.feature-card:hover .feature-card-icon-wrapper {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
  transform: scale(1.05);
}

.feature-card:hover .feature-card-icon-wrapper i {
  color: var(--white) !important;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-navy) !important;
  margin-bottom: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-card-title {
  color: var(--primary-teal) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .features-banner-section {
    padding: 80px 0;
    background-attachment: scroll; /* Disable parallax on mobile/tablets for performance */
  }

  .banner-bg-overlay {
    background: rgba(255, 255, 255, 0.4);
  }

  .glass-features-card {
    padding: 40px 30px;
  }

  .banner-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .features-banner-section {
    padding: 60px 0;
  }

  .glass-features-card {
    padding: 30px 20px;
  }

  .banner-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .banner-title {
    font-size: 22px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-card-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .feature-card-icon-wrapper i {
    font-size: 1.3rem;
  }

  .feature-card-title {
    font-size: 16px;
  }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background-color: #039e8f;
  color: #ffffff;
  padding: 50px 40px;
  position: relative;
  font-family: var(--font-body);
}

.site-footer a {
  color: inherit;
  transition: all 0.3s ease;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Footer Logo Pill */
.footer-logo-pill {
  background-color: var(--white);
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

/* Contact List */
.footer-contact-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background-color: var(--white);
  color: #039e8f;
  transform: scale(1.1);
}

.footer-contact-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Quick Links Column */
.footer-links-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link-item:last-child {
  margin-bottom: 0;
}

.footer-link-item a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #ffffff;
  padding: 2px 0;
  position: relative;
}

.footer-link-item a i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.footer-link-item a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-link-item a:hover i {
  transform: rotate(15deg) scale(1.2);
}

/* Google Map Wrapper */
.footer-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.2);
  height: 250px;
  width: 80%;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.footer-map-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bottom Socket */
.footer-bottom {
  background-color: #013c88;
  padding: 20px 0;

  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.designer-link {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
}

.designer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .site-footer {
    padding: 60px 16px 0 16px;
  }

  .footer-bottom {
    margin-top: 45px;
  }

  .footer-map-col {
    margin-top: 20px;
  }

  .footer-map-wrapper {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .footer-brand-col {
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-links-col {
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-links-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-link-item a {
    justify-content: center;
  }

  .footer-link-item a:hover {
    padding-left: 0;
  }
}

/* ==========================================================================
   About Page Hero Banner & Breadcrumbs
   ========================================================================== */
.about-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/about_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.about-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b; /* Navy Blue color from the request */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.about-breadcrumb-bar {
  background-color: #039e8f; /* Teal Color from the request */
  padding: 16px 24px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 162, 148, 0.1);
}

.about-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.about-breadcrumb-bar a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.about-breadcrumb-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.about-breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.about-breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive banner */
@media (max-width: 992px) {
  .about-hero-banner {
    height: 280px;
    padding-top: 80px; /* Offset smaller mobile header */
  }

  .about-banner-title {
    font-size: 34px;
  }

  .about-breadcrumb-bar {
    padding: 14px 16px;
  }
}

@media (max-width: 576px) {
  .about-hero-banner {
    height: 230px;
  }

  .about-banner-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .about-breadcrumb-bar {
    font-size: 14px;
    padding: 12px 16px;
  }
}

/* Inline Features Layout (About Page) */
.about-features-container.inline-features {
  margin-top: 35px;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}

.about-features-container.inline-features .about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.about-features-container.inline-features .feature-icon-box {
  background-color: transparent;
  box-shadow: none;
  width: auto;
  height: auto;
  margin-right: 0;
}

.about-features-container.inline-features .feature-icon-box i {
  font-size: 2.5rem;
  color: #039e8f !important; /* Brand Teal */
}

.about-features-container.inline-features .feature-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #000 !important;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-features-container.inline-features {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mirrored Left-Rounded Image Wrapper (Clinic 2 Section) */
.about-image-wrapper.left-rounded {
  padding: 0 0 15px 15px; /* Shift padding to left/bottom */
}

.about-image-wrapper.left-rounded::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 15px;
  bottom: 0;
  border: 3px solid var(--dark-navy);
  border-top-left-radius: 100px; /* Mirrored top-left corner */
  border-top-right-radius: 0;
  z-index: 1;
  pointer-events: none;
}

.about-image-wrapper.left-rounded .about-img {
  border-top-left-radius: 100px; /* Rounded top-left */
  border-top-right-radius: 0; /* Reset top-right */
}

/* Secondary Clinic Details List & Paragraph */
.clinic-info-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}

.clinic-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}

.clinic-info-list li .list-icon {
  color: #039e8f; /* Teal */
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.clinic-info-list li .list-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #000;
  line-height: 1.5;
}

.clinic-info-paragraph {
  font-family: var(--font-body);
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  text-align: justify;
}

.clinic-info-paragraph a.underline-link {
  color: var(--dark-navy);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.clinic-info-paragraph a.underline-link:hover {
  color: #039e8f;
}

@media (max-width: 992px) {
  .about-image-wrapper.left-rounded {
    padding: 0 0 15px 15px;
    max-width: 550px;
    margin: 0 auto 30px auto;
  }
}

/* Doctor Cards Section - Meet Our Team */
.about-team-section {
  background-color: var(--white);
  padding: 80px 0 120px 0; /* Extra bottom padding for overlapping boxes */
  border-top: 1px solid var(--border-color);
}

.about-team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.doctor-team-grid {
  margin-top: 40px;
}

/* Overlapping Card Style (Exact match: half on image, half outside) */
.about-doctor-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid #cbd5e1; /* Thin grey border outline around image frame */
  border-radius: 0px; /* Sharp corners */
  height: 370px; /* Reduced card/image frame height so box sits half outside */
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 50px; /* Critical margin: provides space for offset boxes especially on mobile stack */
  overflow: visible; /* CRITICAL: allows blue box to extend outside the image boundary */
}

.about-doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.doctor-card-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; /* Clips the image itself but keeps card container visible */
}

.doctor-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Keep doctor faces centered */
  transition: transform 0.5s ease;
}

.about-doctor-card:hover .doctor-card-img-container img {
  transform: scale(1.05);
}

/* Overlapping blue info box (exact width, placement, and content styling) */
.doctor-card-info-box {
  position: absolute;
  bottom: -70px; /* Shims the box 70px below the image frame (half on, half off) */
  right: 0; /* Aligned to bottom-right */
  width: 82%; /* Leaves 18% space on the left side */
  background-color: #013c88; /* Brand Navy Blue */
  padding: 24px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Separates container from background photo */
  border-radius: 0px; /* Sharp corners */
}

.doctor-card-info-box .stethoscope-icon {
  font-size: 2.2rem; /* Large white outline icon */
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
}

.doctor-card-info-box .doctor-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.doctor-card-info-box .doctor-qual {
  font-family: var(--font-body);
  font-size: 14px;

  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 992px) {
  .about-doctor-card {
    height: 270px;
    margin-bottom: 90px;
  }
  .doctor-card-info-box {
    width: 85%;
    bottom: -65px;
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .about-doctor-card {
    height: 290px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
  }
}

/* ==========================================================================
   FAQ Page Hero Banner & Breadcrumbs
   ========================================================================== */
.faq-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/faq_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.faq-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.faq-breadcrumb-bar {
  background-color: #039e8f; /* Teal Color */
  padding: 16px 24px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 162, 148, 0.1);
}

.faq-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.faq-breadcrumb-bar a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.faq-breadcrumb-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.faq-breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.faq-breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive banner */
@media (max-width: 992px) {
  .faq-hero-banner {
    height: 280px;
    padding-top: 80px; /* Offset smaller mobile header */
  }

  .faq-banner-title {
    font-size: 34px;
  }

  .faq-breadcrumb-bar {
    padding: 14px 16px;
  }
}

@media (max-width: 576px) {
  .faq-hero-banner {
    height: 230px;
  }

  .faq-banner-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .faq-breadcrumb-bar {
    font-size: 14px;
    padding: 12px 16px;
  }
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-grey);
}

.faq-accordion-container {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 15px;
}

.faq-accordion-item {
  margin-bottom: 15px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-accordion-header {
  background-color: #013c88; /* Navy Blue requested */
  color: #ffffff;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  transition: background-color 0.3s ease;
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-accordion-header:hover {
  background-color: #012e69; /* Slightly darker hover state */
}

.faq-accordion-header i {
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* Caret rotation active state */
.faq-accordion-header.active i {
  transform: rotate(90deg);
}

.faq-accordion-body {
  background-color: #ffffff;
  border-left: 3px solid #013c88;
  border-right: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
}

.faq-accordion-content {
  padding: 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #334155;
  line-height: 1.6;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-accordion-header {
    padding: 16px 20px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .faq-accordion-content {
    padding: 18px 20px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Contact Page Hero Banner & Breadcrumbs
   ========================================================================== */
.contact-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/contact_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.contact-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.contact-breadcrumb-bar {
  background-color: #039e8f; /* Teal Color */
  padding: 16px 24px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 162, 148, 0.1);
}

.contact-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.contact-breadcrumb-bar a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.contact-breadcrumb-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.contact-breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.contact-breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive banner */
@media (max-width: 992px) {
  .contact-hero-banner {
    height: 280px;
    padding-top: 80px; /* Offset smaller mobile header */
  }

  .contact-banner-title {
    font-size: 34px;
  }

  .contact-breadcrumb-bar {
    padding: 14px 16px;
  }
}

@media (max-width: 576px) {
  .contact-hero-banner {
    height: 230px;
  }

  .contact-banner-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .contact-breadcrumb-bar {
    font-size: 14px;
    padding: 12px 16px;
  }
}

/* ==========================================================================
   Contact Page Content Section
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background-color: var(--light-grey);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Subheadings with flexible right lines */
.contact-subheading {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #112a8b; /* Navy */
  margin-bottom: 25px;
  margin-top: 35px;
  text-transform: capitalize;
}

.contact-subheading::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e2e8f0;
  margin-left: 15px;
}

.contact-subheading:first-of-type {
  margin-top: 0;
}

/* Left column details list */
.contact-info-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-info-icon-box {
  width: 44px;
  height: 44px;
  border: 2px solid #00a294; /* Teal outline box */
  border-radius: 8px; /* Rounded corners outline square */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a294;
  font-size: 1.25rem;
  flex-shrink: 0;
  background-color: transparent;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon-box {
  background-color: #00a294;
  color: #ffffff;
  transform: scale(1.05);
}

.contact-info-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  padding-top: 2px;
}

.contact-info-text a {
  color: #000;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #00a294;
}

/* Social icons underneath Follow Us */
.contact-social-list {
  display: flex;
  gap: 15px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.contact-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.contact-social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  color: #ffffff;
}

.contact-social-btn.facebook {
  background-color: #3b5998;
}

.contact-social-btn.youtube {
  background-color: #ff0000;
}

.contact-social-btn.instagram {
  background-color: #1c1c1c; /* Dark black background match */
}

/* Map widget */
.contact-map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #cbd5e1;
  margin-bottom: 5px;
}

.contact-map-container iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
}

/* Form Card Design (Right Column) */
.contact-form-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  border-top: 4px solid #112a8b; /* Blue border top outline */
  padding: 45px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: #00a294; /* Teal text header */
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: #ffffff;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.contact-form-input:focus {
  outline: none;
  border-color: #00a294; /* Teal outline focus */
  box-shadow: 0 0 0 3px rgba(0, 162, 148, 0.15);
}

.contact-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-input::placeholder {
  color: #94a3b8;
}

.contact-submit-btn {
  background-color: #0062cc; /* Blue background match */
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #0051ab;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 98, 204, 0.25);
}

/* Responsive columns layout stack styling */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 30px 25px;
    margin-top: 40px;
  }

  .contact-form-title {
    font-size: 1.45rem;
    margin-bottom: 25px;
  }
}

/* ==========================================================================
   Nested Services Submenu
   ========================================================================== */
.dropdown-menu li {
  position: relative;
}

/* Hover style on main dropdown items */
.dropdown-menu li:hover > a {
  background-color: #013c88 !important; /* Navy blue background */
  color: #ffffff !important; /* White text */
}

.dropdown-menu li:hover > a .dropdown-plus {
  color: #ffffff !important; /* White plus sign */
}

/* Submenu dropdown container */
.submenu-menu {
  display: none;
  position: absolute;
  top: -15px; /* Align to top of parent padding */
  left: 100%;
  background-color: #f1f5f9; /* Same grey background for bands */
  min-width: 290px;
  border-radius: 0px; /* Sharp corners */
  border: 1.5px solid #112a8b; /* Blue outline border */
  padding: 15px 0; /* Grey bands top and bottom */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1010;
}

/* Display submenu on parent li hover */
.dropdown-menu li:hover > .submenu-menu {
  display: block !important;
}

/* Submenu item links */
.submenu-menu a {
  display: block;
  background-color: #ffffff; /* White background for list options */
  padding: 12px 24px !important;
  font-family: var(--font-heading);
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #00a294 !important; /* Teal text */
  border-bottom: 1.5px solid #f1f5f9 !important;
  text-align: left;
  transition: all 0.3s ease;
}

.submenu-menu li:last-child a {
  border-bottom: none !important;
}

/* Hover active state for submenu links */
.submenu-menu a:hover {
  background-color: #013c88 !important; /* Dark navy highlight */
  color: #ffffff !important; /* White text */
}

/* Mobile responsive overrides */
@media (max-width: 992px) {
  .dropdown-menu li:hover > a {
    background-color: transparent !important;
    color: var(--text-color) !important;
  }

  .dropdown-menu li:hover > a .dropdown-plus {
    color: var(--text-color) !important;
  }

  .submenu-menu {
    display: block !important; /* Always show submenus inside mobile dropdown */
    position: static;
    border: none !important;
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none;
    margin-left: 20px; /* Indentation */
    margin-bottom: 10px;
    min-width: unset;
  }

  .submenu-menu a {
    display: block;
    background-color: transparent !important;
    padding: 6px 0 !important;
    border-bottom: none !important;
    color: #64748b !important; /* Softer text color for submenus on mobile */
    font-size: 0.85rem !important;
    font-weight: 500 !important;
  }

  .submenu-menu a:hover {
    color: var(--primary-teal) !important;
    background-color: transparent !important;
  }
}

/* ==========================================================================
   Braces For Kids Page Styles
   ========================================================================== */
.braces-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/braces_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.braces-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.braces-banner-title {
  font-family: var(--font-heading);
  font-size: 32 px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.braces-breadcrumb-bar {
  background-color: #00a294; /* Teal Color */
  padding: 14px 24px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.braces-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.braces-breadcrumb-bar a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.braces-breadcrumb-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.braces-breadcrumb-separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.braces-breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* Custom Card Component */
.braces-card {
  padding: 40px 30px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.braces-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.braces-card.bg-teal {
  background-color: #00a294;
  color: #ffffff;
}

.braces-card.bg-blue {
  background-color: #112a8b;
  color: #ffffff;
}

.braces-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.braces-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.braces-card-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 0;
}

/* Booking Plan Section */
.braces-plan-section {
  text-align: center;
  padding: 85px 150px;
}

.braces-plan-header {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.braces-plan-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.braces-cta-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 1.5px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.braces-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #00a294;
  color: #00a294;
  background-color: transparent;
  padding: 12px 35px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 162, 148, 0.05);
  transition: all 0.3s ease;
}

.braces-cta-btn:hover {
  background-color: #00a294;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 162, 148, 0.25);
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .braces-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .braces-banner-title {
    font-size: 30px;
  }
  .braces-section {
    padding: 60px 0;
  }
  .braces-title {
    font-size: 24px;
  }
  .braces-img-wrapper {
    margin-top: 40px;
  }
  .braces-img-wrapper.girl-arched {
    border-top-right-radius: 80px;
  }
}

@media (max-width: 576px) {
  .braces-hero-banner {
    height: 230px;
  }
  .braces-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .braces-title {
    font-size: 20px;
  }
  .braces-card {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   Adult Orthodontic Page Styles
   ========================================================================== */
.adult-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/adult_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.adult-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.adult-banner-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.braces-card-full {
  padding: 35px 50px;
  width: 100%;
}

@media (max-width: 992px) {
  .adult-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .adult-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .braces-card-full {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .adult-hero-banner {
    height: 230px;
  }
  .adult-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Invisalign Page Styles
   ========================================================================== */
.invisalign-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/invisalign_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.invisalign-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.invisalign-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .invisalign-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .invisalign-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .invisalign-hero-banner {
    height: 230px;
  }
  .invisalign-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Power Braces Page Styles
   ========================================================================== */
.power-braces-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/power_braces_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.power-braces-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.power-braces-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .power-braces-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .power-braces-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .power-braces-hero-banner {
    height: 230px;
  }
  .power-braces-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Invisible Braces Page Styles
   ========================================================================== */
.invisible-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/invisible_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.invisible-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.invisible-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .invisible-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .invisible-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .invisible-hero-banner {
    height: 230px;
  }
  .invisible-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Surgical Orthodontics Page Styles
   ========================================================================== */
.surgical-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/surgical_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.surgical-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.surgical-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .surgical-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .surgical-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .surgical-hero-banner {
    height: 230px;
  }
  .surgical-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Treatment for Jaw Joint and Clenching Page Styles
   ========================================================================== */
.tmj-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/tmj_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.tmj-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.tmj-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .tmj-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .tmj-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .tmj-hero-banner {
    height: 230px;
  }
  .tmj-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Infialign Braces Page Styles
   ========================================================================= */
.infialign-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/infialign_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.infialign-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.infialign-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .infialign-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .infialign-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .infialign-hero-banner {
    height: 230px;
  }
  .infialign-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Cosmetic Treatment With Braces Page Styles
   ========================================================================== */
.cosmetic-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/cosmetic_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cosmetic-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.cosmetic-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .cosmetic-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .cosmetic-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cosmetic-hero-banner {
    height: 230px;
  }
  .cosmetic-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Dental Veneers Page Styles
   ========================================================================== */
.veneers-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/veneers_banner_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.veneers-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.veneers-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .veneers-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .veneers-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .veneers-hero-banner {
    height: 230px;
  }
  .veneers-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Tooth-Colored Fillings Page Styles
   ========================================================================== */
.fillings-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/fillings_hero_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fillings-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45); /* Faded screen overlay */
  z-index: 1;
}

.fillings-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #112a8b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .fillings-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
  .fillings-banner-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .fillings-hero-banner {
    height: 230px;
  }
  .fillings-banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   Cosmetic Gum Therapy Banner
   ========================================================================== */
.gum-therapy-hero-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/gum_therapy_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.gum-therapy-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .gum-therapy-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .gum-therapy-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Teeth Whitening Banner
   ========================================================================== */
.whitening-hero-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/whitening_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.whitening-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .whitening-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .whitening-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Tooth Jewelry Banner
   ========================================================================== */
.jewelry-hero-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/jewelry_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.jewelry-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .jewelry-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .jewelry-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Discolored / Stained Teeth Banner
   ========================================================================== */
.discolored-hero-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/discolored_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.discolored-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .discolored-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .discolored-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Implants Surgeon Banner
   ========================================================================== */
.implants-hero-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/implants_hero_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.implants-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .implants-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .implants-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Kid Dentist Page Styles
   ========================================================================== */
.kid-dentist-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px; /* Offset fixed header */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/kid_dentist_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.kid-dentist-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .kid-dentist-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .kid-dentist-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Root Canal Page Styles
   ========================================================================== */
.root-canal-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/root_canal_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.root-canal-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .root-canal-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .root-canal-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Crown & Bridges Page Styles
   ========================================================================== */
.crown-bridges-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/crown_bridges_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.crown-bridges-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .crown-bridges-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .crown-bridges-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Full Mouth Rehabilitation Page Styles
   ========================================================================== */
.rehab-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/rehab_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.rehab-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .rehab-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .rehab-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Specialized Gum Therapy Page Styles
   ========================================================================== */
.gum-therapy-specialized-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/gum_therapy_specialized_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.gum-therapy-specialized-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .gum-therapy-specialized-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .gum-therapy-specialized-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Sensitive Teeth Page Styles
   ========================================================================== */
.sensitive-teeth-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/sensitive_teeth_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sensitive-teeth-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .sensitive-teeth-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .sensitive-teeth-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Wisdom Tooth Removal Page Styles
   ========================================================================== */
.wisdom-tooth-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/wisdom_tooth_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.wisdom-tooth-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .wisdom-tooth-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .wisdom-tooth-hero-banner {
    height: 230px;
  }
}

/* ==========================================================================
   Dentures Page Styles
   ========================================================================== */
.dentures-hero-banner {
  position: relative;
  height: 340px;
  padding-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/dentures_banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.dentures-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

@media (max-width: 992px) {
  .dentures-hero-banner {
    height: 280px;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .dentures-hero-banner {
    height: 230px;
  }
}
