@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    /* Base and font */
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff7f5;
      color: #0c0c3f;
      scroll-behavior: smooth;
    }

    /* Orange-Red Theme Colors */
    :root {
      --primary-color: #de3a2b;
      --primary-hover: #ffc816;
      --secondary-color: #de3a2b;
      --accent-color: #ffccbc;
      --text-dark: #0c0c3f;
      --text-light: #fff7f5;
    }

    /* Scrollbar for marquee textual banner */
    .marquee::-webkit-scrollbar {
      height: 6px;
    }
    .marquee::-webkit-scrollbar-thumb {
      background-color: var(--primary-color);
      border-radius: 10px;
    }

    /* Navbar fixed top and style */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background-color: white;
      z-index: 9999;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.3);
      transition: background-color 0.3s ease;
    }

    /* Top mini banner */
    .top-banner {
      font-size: 14px;
      background: #ff7043;
      color: white;
      padding: 0.35rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      letter-spacing: 0.02em;
      user-select: none;
    }
    .top-banner a {
      color: #fff9f4;
      font-weight: 600;
      transition: color 0.3s;
    }
    .top-banner a:hover {
      color: #ffe3db;
      text-decoration: underline;
    }

    /* Navbar container inside header */
    nav {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-color);
      font-weight: 700;
      font-size: 1.4rem;
      cursor: pointer;
      user-select: none;
    }
    .logo img {
      fill: var(--primary-color);
      width: 200px;
      height: 57px;
    }

    /* Nav menu - desktop */
    ul.nav-links {
      display: flex;
      gap: 1rem;
      align-items: center;
      list-style: none;
      font-weight: 600;
      font-size: 0.95rem;
    }
    ul.nav-links li {
      position: relative;
      cursor: pointer;
    }
    ul.nav-links li a {
      color: black;
      padding: 0.45rem 0.75rem;
      border-radius: 4px;
      transition: color 0.3s ease, background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
    }
    ul.nav-links li a:hover,
    ul.nav-links li.dropdown:hover > a {
      color: var(--primary-color);
      background-color: rgba(255, 87, 34, 0.1);
    }
    
    

    /* Dropdown menus */
/* Dropdown menus */
ul.submenu {
  position: absolute;
  top: 2.7rem;
  left: 0;
  background: var(--text-dark);
  border-radius: 6px;
  padding: 0.5rem 0;
  min-width: 150px;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

/* Correct hover: target the li.dropdown */
li.dropdown:hover > ul.submenu {
  opacity: 1;
  pointer-events: auto;
}

/* Submenu items */
ul.submenu li {
  padding: 0.35rem 1rem;
}

ul.submenu li a {
  color: Black;
  font-weight: 500;
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
}

ul.submenu li a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 4px;
}


    /* Right side buttons */
    .right-btns {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-weight: 500;
      font-size: 0.9rem;
      color: white;
    }
    .make-appointment-btn {
      background-color: var(--primary-color);
      padding: 0.55rem 1.25rem;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.95rem;
      color: white;
      box-shadow: 0 3px 8px rgb(255 87 34 / 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      transition: background-color 0.3s ease;
      border: none;
    }
    .make-appointment-btn:hover {
      color: black;
      /* background-color: var(--primary-hover); */
      background-color: #ffc816; 
      box-shadow: 0 5px 15px rgb(230 74 25 / 0.8);
    }
    .make-appointment-btn svg {
      width: 20px;
      height: 20px;
      stroke: white;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Hamburger menu for mobile */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      height: 22px;
      width: 28px;
      cursor: pointer;
      z-index: 99999;
    }
    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: black;
      border-radius: 2px;
      transition: all 0.3s ease-in-out;
    }
    /* Hamburger active state */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background-color: white;
      padding: 2.5rem 2rem;
      display: none;
      flex-direction: column;
      justify-content: start;
      gap: 1.5rem;
      z-index: 9998;
      overflow-y: auto;
    }
    .mobile-menu.active {
      display: flex;
    }
    .mobile-menu ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .mobile-menu ul li {
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255 255 255 / 0.1);
      font-weight: 600;
      font-size: 1.2rem;
      color: black;
      cursor: pointer;
      position: relative;
    }
    .mobile-menu ul li a {
      color: black;
      text-decoration: none;
      display: inline-block;
      width: 100%;
    }
    .mobile-menu ul li:hover {
      color: var(--primary-color);
    }
    .mobile-menu ul li ul.submenu-mobile {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      padding-left: 1rem;
      font-weight: 500;
      font-size: 1rem;
      background-color: rgba(255 87 34 / 0.1);
      border-radius: 5px;
      margin-top: 4px;
    }
    .mobile-menu ul li ul.submenu-mobile.open {
      max-height: 400px;
      margin-bottom: 1rem;
    }
    .mobile-menu ul li ul.submenu-mobile li {
      padding: 0.5rem 0;
      border-bottom: none;
      color: white;
    }
    .mobile-menu ul li ul.submenu-mobile li a:hover {
      color: var(--primary-color);
    }

    /* Hero section with background */
    .hero-section {
      padding-top: 110px; /* header height + margin */
      position: relative;
      background: url(images/hero.webp);
      background-size: cover;
      min-height: 520px;
    }
    .hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: url("https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/d7cd9e9b-1e47-43af-9381-98d9a26b7382.png") center/cover no-repeat;
      opacity: 0.12;
      pointer-events: none;
      z-index: 1;
    }
    .hero-content {
      position: relative;
      max-width: 1100px;
      margin: auto;
      padding: 3rem 1.5rem;
      text-align: center;
      color: var(--primary-color);
      z-index: 2;
    }
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--primary-color);
      line-height: 1.2;
    }
    .hero-content p {
      font-size: 1.15rem;
      color: #6e4a39;
      max-width: 650px;
      margin: 0 auto 2rem auto;
      text-shadow: 0 0 5px rgba(255 87 34 / 0.3);
    }
    .hero-button-group {
      display: inline-flex;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgb(255 136 77 / 0.3);
      margin-bottom: 2rem;
      gap: 5px;
      background: transparent;
    }
    .hero-button-group button {
      border: none;
      padding: 0.75rem 1.75rem;
      cursor: pointer;
      font-weight: 700;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-size: 1rem;
      border-radius: 0;
    }
    .hero-button-group button.doctors {
      background-color: var(--primary-color);
      color: white;
    }
    .hero-button-group button.hospitals {
      background: transparent;
      color: var(--primary-color);
      border: 1.5px solid var(--primary-color);
      border-top-right-radius: 12px;
    }
    .hero-button-group button:hover {
      background-color: var(--primary-hover);
      color: black;
      border-color: var(--primary-hover);
      box-shadow: 0 8px 18px rgb(230 74 25 / 0.5);
    }

    /* Search form below hero */
    .search-form {
      max-width: 1100px;
      background-color: white;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgb(255 136 77 / 0.25);
      margin-top: -40px;
      position: relative;
      z-index: 3;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .select-group {
      flex-grow: 1;
      min-width: 120px;
    }
    select {
      width: 100%;
      padding: 0.6rem 1rem;
      font-size: 1rem;
      border-radius: 8px;
      border: 1.5px solid #ddd;
      cursor: pointer;
      transition: border-color 0.3s ease;
      appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%23777" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 16px;
    }

    select:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 8px var(--primary-color);
    }
    .btn-search {
      background-color: var(--primary-color);
      color: white;
      font-weight: 700;
      padding: 0.65rem 1.6rem;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 5px 18px rgb(255 87 34 / 0.6);
      transition: background-color 0.3s ease;
      white-space: nowrap;
    }
    .btn-search:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 6px 25px rgb(230 74 25 / 0.8);
      color: black;
    }

    /* Group highlights section - pastel blocks */
    .highlights {
      max-width: 1100px;
      margin: 3rem auto 4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      justify-content: center;
      padding: 0 1rem;
    }
    .highlight-card {
      background-color: white;
      border-radius: 16px;
      flex: 1 1 280px;
      padding: 2rem 1.5rem;
      box-shadow: 0 6px 18px rgb(255 136 77 / 0.15);
      transition: box-shadow 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .highlight-card:hover {
      box-shadow: 0 8px 28px rgb(255 87 34 / 0.45);
    }
    .highlight-icon {
      background-color: var(--accent-color);
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--primary-color);
      margin-bottom: 0.75rem;
      box-shadow: 0 3px 12px rgb(255 136 77 / 0.3);
      flex-shrink: 0;
    }
    .highlight-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary-color);
    }
    .highlight-card p {
      font-size: 0.95rem;
      color: #58361b;
      flex-grow: 1;
    }
    .highlight-card a {
      font-weight: 600;
      color: var(--primary-color);
      align-self: flex-start;
      transition: color 0.3s ease;
      text-decoration: none;
      font-size: 0.95rem;
    }
    .highlight-card a:hover {
      color: black;
    }

    /* About section */
    .about-section {
      max-width: 1100px;
      margin: 3rem auto 5rem;
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      padding: 0 1rem;
      align-items: center;
      justify-content: center;
    }
    .about-image {
      flex: 1 1 300px;
      max-width: 320px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgb(255 136 77 / 0.25);
      overflow: hidden;
      user-select: none;
      cursor: default;
      transition: transform 0.35s;
    }
    .about-image:hover {
      transform: scale(1.03);
    }
    .about-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 3 / 4;
    }
    .about-content {
      flex: 2 1 520px;
      min-width: 280px;
    }
    .about-content .title {
      font-weight: 600;
      font-size: 14px;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.25rem;
      user-select: none;
    }
    .about-content h2 {
      font-weight: 800;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      line-height: 1.18;
      color: var(--text-dark);
    }
    .about-content p {
      font-weight: 400;
      font-size: 1rem;
      color: #6d4a3e;
      margin-bottom: 1.75rem;
      max-width: 520px;
      line-height: 1.5;
    }
    .about-list {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      max-width: 540px;
      margin-bottom: 2rem;
    }
    .about-list-item {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      flex: 1 1 240px;
    }
    .about-list-item svg {
      stroke: var(--primary-color);
      stroke-width: 2.8;
      stroke-linejoin: round;
      stroke-linecap: round;
      stroke-width: 1.8;
      min-width: 30px;
      min-height: 30px;
      filter: drop-shadow(0 1px 1px var(--primary-color));
      user-select: none;
    }
    .about-list-item span {
      font-weight: 600;
      color: var(--text-dark);
      font-size: 1rem;
      user-select: none;
    }
    .about-buttons {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn-primary {
      background-color: var(--primary-color);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      box-shadow: 0 5px 20px rgb(255 87 34 / 0.5);
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      user-select: none;
    }
    .btn-primary:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 5px 28px rgb(230 74 25 / 0.75);
      color: black;
    }
    .btn-primary svg {
      stroke: white;
      stroke-width: 2.2;
      width: 22px;
      height: 22px;
    }
    .contact-info {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-weight: 600;
      color: var(--primary-color);
      font-size: 1rem;
      min-width: 170px;
      user-select: none;
    }
    .contact-info svg {
      stroke: var(--primary-color);
      width: 24px;
      height: 24px;
      stroke-width: 1.8;
    }

    /* Statistical numbers section */
    .stats-section {
      background-color: var(--accent-color);
      padding: 3rem 1.5rem 4rem;
      margin: 0 auto 6rem;
      max-width: 1100px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgb(255 136 77 / 0.35);
      user-select: none;
    }
    .stats-grid {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .stat-box {
      background-color: white;
      border-radius: 14px;
      flex: 1 1 150px;
      padding: 2rem 1rem;
      box-shadow: 0 6px 18px rgb(255 136 77 / 0.25);
      text-align: center;
      transition: box-shadow 0.3s ease;
      cursor: default;
    }
    .stat-box:hover {
      box-shadow: 0 7px 22px rgb(255 87 34 / 0.5);
    }
    .stat-icon {
      margin-bottom: 1rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      color: var(--primary-color);
    }
    .stat-icon svg {
      width: 44px;
      height: 44px;
      stroke-width: 1.8;
      stroke: var(--primary-color);
    }
    .stat-number {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 0.25rem;
      user-select: text;
    }
    .stat-label {
      font-size: 1rem;
      font-weight: 700;
      color: #582f19;
      user-select: text;
    }

    /* Categories carousel */
    /* Categories carousel */
.categories-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  position: relative;
}

.categories-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.categories-header {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary-color);
  user-select: none;
  margin: 0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.categories-carousel {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding-bottom: 1rem;
}

.category-card {
  background-color: white;
  flex: 0 0 160px;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
  transition: all 0.3s ease;
  user-select: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  transform: scale(0.98);
  opacity: 0.9;
}

.category-card:hover {
  box-shadow: 0 7px 27px rgb(255 87 34 / 0.5);
  transform: scale(1);
  opacity: 1;
}

.category-card:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.category-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgb(255 87 34 / 0.4);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

/* different background colors */
.bg-primary-care { background-color: #f8bb3f; }
.bg-cardiology { background-color: #87c49b; }
.bg-mri { background-color: #ddace4; }
.bg-bloodtest { background-color: var(--primary-color); }
.bg-laboratory { background-color: #669ddc; }
.bg-posologist { background-color: #ddace4; }

.category-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  user-select: text;
  transition: color 0.3s ease;
}

.category-card:hover .category-name {
  color: var(--primary-color);
}

.category-listings {
  font-size: 0.85rem;
  color: #4b4b4f;
  user-select: none;
}

/* Carousel navigation */
.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: white;
  color: var(--primary-color);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .categories-header-container {
    margin-bottom: 1rem;
  }
  
  .carousel-nav {
    display: none;
  }
  
  .category-card {
    flex: 0 0 140px;
  }
}

    /* Hospitals section */
    .hospitals-section {
      max-width: 1100px;
      margin: 0 auto 5rem;
      padding: 0 1rem;
    }
    .section-header {
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--primary-color);
      user-select: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .section-header button {
      background-color: var(--primary-color);
      color: white;
      font-weight: 700;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgb(255 87 34 / 0.7);
      transition: background-color 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .section-header button:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 6px 20px rgb(230 74 25 / 0.9);
    }
    .section-header button svg {
      stroke: white;
      stroke-width: 3;
      width: 20px;
      height: 20px;
    }

    .hospitals-cards {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      padding-bottom: 1.2rem;
      scroll-padding-left: 1rem;
      scroll-behavior: smooth;
    }
    .hospital-card {
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
      flex: 0 0 280px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.3s ease;
      user-select: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .hospital-card:hover {
      box-shadow: 0 8px 28px rgb(255 87 34 / 0.5);
    }
    .hospital-image {
      position: relative;
      height: 170px;
      background-color: #fdf1e8;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      overflow: hidden;
    }
    .hospital-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
    }
    .hospital-card:hover .hospital-image img {
      transform: scale(1.07);
    }
    .hospital-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: var(--primary-color);
      color: white;
      padding: 0.3rem 0.8rem;
      font-size: 0.8rem;
      font-weight: 700;
      border-radius: 8px;
      text-transform: uppercase;
      user-select: none;
      box-shadow: 0 0 6px rgb(255 87 34 / 0.6);
    }
    .hospital-info {
      padding: 1rem 1.2rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      flex-grow: 1;
    }
    .hospital-rating {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: #ffb74d;
    }
    .hospital-rating svg {
      stroke: #ffb74d;
      stroke-width: 2;
      /* star icons */
      width: 16px;
      height: 16px;
    }
    .hospital-ratings-count {
      color: #777777;
      font-size: 0.85rem;
      font-weight: 600;
      user-select: none;
    }
    .hospital-name {
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--primary-color);
      line-height: 1.1;
      user-select: text;
    }
    .hospital-location, .hospital-doctors {
      font-size: 0.9rem;
      color: #444444;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      user-select: none;
    }
    .hospital-location svg, .hospital-doctors svg {
      stroke: var(--primary-color);
      width: 16px;
      height: 16px;
      stroke-width: 1.6;
    }
    .hospital-book {
      margin-top: auto;
      padding-top: 0.6rem;
      border-top: 1px solid #eee;
      display: flex;
      justify-content: flex-start;
      gap: 1rem;
      align-items: center;
    }
    .hospital-book a {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: underline;
      cursor: pointer;
      user-select: text;
      transition: color 0.3s ease;
    }
    .hospital-book a:hover {
      color: black;
    }

    /* FAQ / Accordion Section */
    .faq-section {
      max-width: 1100px;
      margin: 0 auto 4rem;
      padding: 0 1rem;
    }
    .faq-header {
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: var(--primary-color);
      user-select: none;
    }
    .accordion {
      border-radius: 10px;
      box-shadow: 0 6px 22px rgb(255 136 77 / 0.25);
      overflow: hidden;
      max-width: 700px;
      margin-bottom: 3rem;
      user-select: none;
    }
    .accordion-item {
      border-bottom: 2px solid #eee;
    }
    .accordion-item:last-child {
      border-bottom: none;
    }
    .accordion-header {
      cursor: pointer;
      padding: 1rem 1.25rem;
      font-weight: 600;
      font-size: 1.05rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--primary-color);
      user-select: none;
      background-color: #fff7f0;
      transition: background-color 0.3s ease;
    }
    .accordion-header:hover {
      background-color: #ffc816;
      color: black;
    }
    .accordion-header svg {
      width: 20px;
      height: 20px;
      stroke: var(--primary-color);
      stroke-width: 3;
      transition: transform 0.3s ease;
    }
    .accordion-header.active svg {
      transform: rotate(180deg);
    }
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.25rem;
      background-color: #fff9f6;
      font-weight: 400;
      font-size: 1rem;
      color: #7a4f2b;
      line-height: 1.4;
      transition: max-height 0.35s ease;
    }
    .accordion-body.open {
      padding: 1rem 1.25rem;
      max-height: 500px;
    }

    /* Testimonials */
    .testimonials-section {
      max-width: 1100px;
      margin: 0 auto 6rem;
      padding: 0 1rem;
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      user-select: none;
    }
    .testimonial-left {
      flex: 1 1 380px;
      border-radius: 16px;
      box-shadow: 0 6px 22px rgb(255 136 77 / 0.25);
      overflow: hidden;
      position: relative;
    }
    .testimonial-left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 16px;
      transition: transform 0.35s;
      cursor: default;
      user-select: none;
    }
    .testimonial-left img:hover {
      transform: scale(1.05);
    }

    .testimonial-right {
      flex: 1 1 600px;
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 6px 22px rgb(255 136 77 / 0.25);
      padding: 2rem 2rem 3rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      color: var(--primary-color);
    }
    .testimonial-title {
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      user-select: none;
    }
    .testimonial-text {
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.4;
      color: #7d4630;
      flex-grow: 1;
    }
    .testimonial-rating {
      color: #ffb74d;
      font-size: 1.15rem;
    }
    .testimonial-rating svg {
      stroke: #ffb74d;
      stroke-width: 2;
      width: 20px;
      height: 20px;
      user-select: none;
      vertical-align: middle;
    }
    .testimonial-author {
      display: flex;
      gap: 1.25rem;
      align-items: center;
      margin-top: 1rem;
    }
    .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      user-select: none;
      box-shadow: 0 0 7px rgb(255 87 34 / 0.5);
    }
    .author-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .author-info {
      display: flex;
      flex-direction: column;
      color: var(--primary-color);
      font-weight: 700;
      font-size: 1.05rem;
      user-select: text;
    }

    /* Doctors section */
    .doctors-section {
      max-width: 1100px;
      margin: 0 auto 6rem;
      padding: 0 1rem;
    }
    .doctors-header {
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--primary-color);
      user-select: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .doctors-cards {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      padding-bottom: 1.2rem;
      scroll-padding-left: 1rem;
      scroll-behavior: smooth;
    }
    .doctor-card {
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
      flex: 0 0 260px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.3s ease;
      user-select: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
    .doctor-card:hover {
      box-shadow: 0 8px 28px rgb(255 87 34 / 0.5);
    }
    .doctor-image {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      box-shadow: 0 4px 18px rgb(255 87 34 / 0.4);
      overflow: hidden;
      margin-bottom: 0.5rem;
    }
    .doctor-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select: none;
    }
    .doctor-info {
      flex-grow: 1;
    }
    .doctor-name {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--primary-color);
      user-select: text;
    }
    .doctor-specialty {
      font-size: 0.9rem;
      color: #894229;
      margin-bottom: 1rem;
      user-select: none;
    }
    .doctor-book-btn {
      padding: 0.5rem 1rem;
      border-radius: 12px;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      background-color: #ff6f40;
      color: white;
      cursor: pointer;
      box-shadow: 0 4px 18px rgb(255 87 34 / 0.5);
      transition: background-color 0.3s ease;
      align-self: flex-start;
      user-select: none;
    }
    .doctor-book-btn:hover {
      background-color:#ffc816;
      color: black;
      box-shadow: 0 5px 22px rgb(230 74 25 / 0.7);
    }
    .doctor-card-buttons {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
      .about-section {
        flex-direction: column;
      }
      .about-content {
        max-width: 100%;
      }
      .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
    @media (max-width: 768px) {
      /* Hide desktop nav links */
      ul.nav-links, .right-btns {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      /* Hero content font size smaller */
      .hero-content h1 {
        font-size: 1.9rem;
      }
      .hero-content p {
        font-size: 0.95rem;
      }
      .hero-button-group {
        flex-direction: column;
        width: 220px;
        margin: 1rem auto 2.9rem auto;
        background: transparent;
      }
      .hero-button-group button {
        width: 100%;
        border-radius: 12px !important;
        font-size: 1rem;
      }
      /* Search form */
      .search-form {
        flex-direction: column;
      }
      .select-group {
        min-width: 100%;
      }
      /* Highlights section */
      .highlights {
        flex-direction: column;
        max-width: 90%;
        margin: 2rem auto 3rem;
      }
      /* Categories section */
      .categories-carousel {
        gap: 1rem;
      }
      .category-card {
        flex: 1 0 120px;
      }
      /* Hospitals and Doctors horizontal carousels hide scrollbar */
      .hospitals-cards, .doctors-cards {
        padding-left: 0.8rem;
      }
      /* About section stack vertically */
      .about-section {
        padding: 0 1rem;
      }
    }
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.5rem;
      }
      .hero-button-group {
        max-width: 220px;
        gap: 5px;
        background: transparent;
      }
      .search-form {
        max-width: 95%;
      }
      .about-content h2 {
        font-size: 1.6rem;
      }
      .about-list {
        flex-direction: column;
      }
      .stat-box {
        flex: 1 1 100%;
        margin-bottom: 1rem;
      }
      .categories-section {
        margin-bottom: 3rem;
      }
      .doctors-cards, .hospitals-cards {
        gap: 1rem;
      }
      .doctor-book-btn {
        font-size: 0.9rem;
      }
      footer {
        text-align: center;
      }
      footer .footer-column{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      footer .footer-main {
        flex-direction: column;
        gap: 2.5rem;
      }
      footer .footer-contact-box {
        max-width: 100%;
      }
    }