@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;
    }

container {
    width: 80%;
}
my-2 {
    margin-top: 0rem;
    margin-bottom: 0.5rem;
}

    /* Orange-Red Theme Colors */
    :root {
      --primary-color: #de3a2b;
      --primary-hover: #ffc816;
      --secondary-color: #de3a2b;
      --accent-color: #f3afaf;
      --text-dark: #0c0c3f;
      --text-light: #fff7f5;
      --abc-light: #e5dedc
    }

    /* 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;
    }
    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 */
    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;
    }
    ul.dropdown:hover ul.submenu {
      opacity: 1;
      pointer-events: auto;
    }
    ul.submenu li {
      padding: 0.35rem 1rem;
    }
    ul.submenu li a {
      color: white;
      font-weight: 500;
      display: block;
      font-size: 0.9rem;
    }
    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;
    }
    .make-appointment-btn:hover {
      color: black;
      background-color: var(--primary-hover);
      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);
    }



 /* Fullscreen Carousel */
    
.fullscreen-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}



:root {
      --primary-color: #f44336;
      --primary-hover: #ff7043;
    }
    /* Your provided CSS */
    .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;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgb(255 136 77 / 0.3);
      margin-bottom: 2rem;
    }
    .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);
    }
    .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);
    }

    .hero-button-group button[aria-selected="true"] {
      background-color: var(--primary-color);
      color: white;
      border-color: var(--primary-color);
      box-shadow: none;
    }
    .hero-button-group button[aria-selected="false"] {
      background-color: transparent;
      color: var(--primary-color);
      border: 1.5px solid var(--primary-color);
      box-shadow: none;
    }

    /* 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;
    }


    /* Highlights section */
.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: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-card:hover {
  transform: translateY(-5px);
  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;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.highlight-card a:hover {
  color: black;
}

.highlight-card a::after {
  content: "→";
  transition: transform 0.3s ease;
}

.highlight-card a:hover::after {
  transform: translateX(3px);
}

/* Appointment Modal */
.appointment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.appointment-modal-content {
  position: relative;
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 25px rgb(255 136 77 / 0.35);
}

.appointment-modal h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.close-appointment-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-appointment-modal:hover {
  background-color: var(--primary-hover);
  transform: rotate(90deg);
}

.close-appointment-modal svg {
  width: 20px;
  height: 20px;
}

/* Appointment Form */
.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 20px rgb(255 87 34 / 0.5);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 5px 28px rgb(230 74 25 / 0.75);
  color: black;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .appointment-modal-content {
    padding: 1.8rem;
  }
  
  .highlight-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .appointment-modal-content {
    padding: 1.5rem;
    width: 95%;
  }
  
  .appointment-modal h3 {
    font-size: 1.3rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.9rem;
  }
}

    /* 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 img {
      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;
    }



    /* Top Searched Specialities Section */
.specialities-section {
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
  position: relative;
}

.specialities-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-padding-left: 1rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

.specialities-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.speciality-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
  flex: 0 0 220px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.speciality-card:hover {
  box-shadow: 0 8px 28px rgb(255 87 34 / 0.5);
  transform: translateY(-5px);
}

.speciality-icon {
  width: 80px;
  height: 80px;
  background-color: var(--abc-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.speciality-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.speciality-card h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.speciality-card p {
  font-size: 0.9rem;
  color: #6d4a3e;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.speciality-card a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.speciality-card a:hover {
  color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .specialities-carousel {
    gap: 1rem;
    padding-left: 0.8rem;
  }
  
  .speciality-card {
    flex: 0 0 180px;
    padding: 1.2rem;
  }
  
  .speciality-icon {
    width: 60px;
    height: 60px;
  }
  
  .speciality-icon img {
    width: 30px;
    height: 30px;
  }
  
  .speciality-card h4 {
    font-size: 1rem;
  }
  
  .speciality-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .speciality-card {
    flex: 0 0 160px;
    padding: 1rem;
  }
  
  .speciality-icon {
    width: 50px;
    height: 50px;
  }
  
  .speciality-icon img {
    width: 25px;
    height: 25px;
  }
  
  .speciality-card h4 {
    font-size: 0.95rem;
  }
  
  .speciality-card p {
    font-size: 0.8rem;
  }
  
  .speciality-card a {
    font-size: 0.85rem;
  }
}

    /* 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;
  display: flex;
  flex-direction: column; /* stack stars and text vertically */
  align-items: center;    /* center horizontally */
  gap: 2px;               /* space between stars and text */
  margin: 0.5rem 0;
}

.testimonial-rating span:first-child {
  display: flex;
  gap: 4px;               /* space between stars */
}

.testimonial-rating span:last-child {
  font-size: 0.9rem;      /* smaller "5 stars" text */
  color: #555;
}
    .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;
    }


    /* Patient Stories Section */
.patient-stories-section {
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
  position: relative;
}

.stories-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.2rem;
  scroll-padding-left: 1rem;
  scroll-behavior: smooth;
}

.story-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-card:hover {
  box-shadow: 0 8px 28px rgb(255 87 34 / 0.5);
}

.story-video {
  position: relative;
  height: 180px;
  background-color: #fdf1e8;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.story-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-video img {
  transform: scale(1.07);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(222, 58, 43, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.play-button svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: transparent;
}

.story-card:hover .play-button {
  background-color: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.story-info {
  padding: 1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.story-info h4 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-color);
  line-height: 1.1;
  user-select: text;
}

.story-info p {
  font-size: 0.9rem;
  color: #444444;
  user-select: none;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.close-modal:hover {
  background-color: var(--primary-hover);
}

.close-modal svg {
  width: 20px;
  height: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stories-carousel {
    gap: 1rem;
    padding-left: 0.8rem;
  }
  
  .story-card {
    flex: 0 0 280px;
  }
  
  .modal-content {
    width: 95%;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .story-card {
    flex: 0 0 260px;
  }
  
  .story-video {
    height: 160px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button svg {
    width: 20px;
    height: 20px;
  }
}

    /* Footer */
    footer {
      background-color: rgba(0, 0, 0, 0.1);
      color: var(--text-light);
      padding: 3rem 1.5rem 2rem;
      border-radius: 1.5rem 1.5rem 0 0;
      user-select: none;
    }
    .footer-main {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-between;
      font-size: 0.9rem;
    }
  .footer-column {
      flex: 1 1 220px;
      min-width: 180px;
    }
    .footer-column a {
        color: #5f3b26;
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-column a:hover {
        background-color: #ffc816;
        color: black;
        padding-left: 5px;
    }

    .footer-logo {
      font-weight: 700;
      font-size: 1.6rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      gap: 0.7rem;
      user-select: none;
    }
    .footer-logo svg {
      fill: var(--primary-color);
      width: 30px;
      height: 30px;
      filter: drop-shadow(0 0 5px var(--primary-color));
    }
    .footer-desc {
      margin-bottom: 1.25rem;
      line-height: 1.5;
      color: black;
      max-width: 270px;
    }
    .footer-socials {
      display: flex;
      gap: 0.7rem;
    }
    .footer-socials a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      transition: background-color 0.3s ease;
      color: black;
      background-color: rgba(255 87 34 / 0.4);
    }
    .footer-socials a:hover {
      background-color: var(--primary-color);
      color: white;
    }
    .footer-links {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--primary-color);
      font-size: 1.1rem;
      user-select: none;
    }
    .footer-links-list,
    .footer-useful-links-list {
      list-style: none;
      padding-left: 0;
    }
    .footer-links-list li,
    .footer-useful-links-list li {
      padding: 0.4rem 0;
    }
    .footer-links-list li a,
    .footer-useful-links-list li a {
      color: black;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 500;
      font-size: 0.9rem;
    }
    .footer-links-list li a:hover,
    .footer-useful-links-list li a:hover {
      color: var(--primary-color);
      text-decoration: underline;
    }

    /* Contact info box in footer */
    .footer-contact-box {
      background-color: var(--accent-color);
      color: var(--text-dark);
      padding: 1.75rem 1.5rem;
      border-radius: 14px;
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.4;
      user-select: text;
      max-width: 280px;
    }
    .footer-contact-box h4 {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
      user-select: none;
    }
    .footer-contact-item {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .footer-contact-item img {
      stroke: var(--primary-color);
      width: 20px;
      height: 20px;
    }
    .footer-contact-item span {
      font-weight: 500;
      font-size: 0.9rem;
      color: #5f3b26;
      user-select: text;
    }


    /* Bottom footer text */
    .footer-bottom {
      max-width: 1100px;
      margin: 1.5rem auto 0;
      font-size: 0.85rem;
      text-align: center;
      color: black;
      user-select: none;
    }
    .footer-bottom a {
      color: black;
      font-weight: 600;
      margin-left: 6px;
      text-decoration: none;
    }
    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* Back to top arrow */
    #backToTop {
      position: fixed;
      bottom: 35px;
      right: 25px;
      width: 42px;
      height: 42px;
      background: var(--primary-color);
      border-radius: 50%;
      box-shadow: 0 8px 24px rgb(255 87 34 / 0.5);
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.3s ease;
      opacity: 0;
      z-index: 9999;
      user-select: none;
    }
    #backToTop.visible {
      opacity: 1;
    }
    
    #backToTop svg {
      stroke: white;
      stroke-width: 3;
      width: 22px;
      height: 22px;
    }

    /* 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 2rem auto;
      }
      .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;
      }
      .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%;
      }
    }

/* Force spacing for featured image + title on posts/pages */
.single-post .post-thumbnail img,
.page .page-thumbnail img {
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 30px !important;
    display: block !important;
}

.single-post h1,
.page h1 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
}

.single-post .post-content,
.page .page-content {
    padding-top: 15px !important;
    line-height: 1.7 !important;
}


    /* News and Events Section */
/* .news-events-section {
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.news-events-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.featured-news-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-news-card:hover {
  box-shadow: 0 8px 28px rgb(255 87 34 / 0.5);
}

.news-image {
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: black;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 0.95rem;
  color: #6d4a3e;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: black;
} */

/* Current News List */
/* .current-news-list {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
  padding: 1.5rem;
}

.list-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
}

.news-list-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
} */

/* Custom scrollbar */
/* .news-list-scroll::-webkit-scrollbar {
  width: 6px;
}

.news-list-scroll::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 10px;
}

.news-list-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

.news-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item .news-date {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.news-item .news-title {
  font-size: 1rem;
  margin-bottom: 0;
}

.news-item .news-title a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-item .news-title a:hover {
  color: var(--primary-color);
} */

/* Upcoming Events */
/* .upcoming-events {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgb(255 136 77 / 0.25);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.events-list {
  flex-grow: 1;
}

.event-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.event-item:last-child {
  border-bottom: none;
}

.event-date {
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.event-date .day {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.event-date .month {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
}

.event-info {
  flex-grow: 1;
}

.event-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-location {
  font-size: 0.85rem;
  color: #6d4a3e;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.event-location svg {
  stroke: var(--primary-color);
}

.view-all-events {
  margin-top: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.view-all-events:hover {
  color: black;
} */

/* Responsive Adjustments */
/* @media (max-width: 1024px) {
  .news-events-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .upcoming-events {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .news-events-container {
    grid-template-columns: 1fr;
  }
  
  .upcoming-events {
    grid-column: span 1;
  }
  
  .news-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .featured-news-card {
    flex-direction: column;
  }
  
  .news-list-scroll {
    max-height: 300px;
  }
}

 */

