/* 
Table content */
/* Index 
about 
services
gallery
contact */


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.Container {
  max-width: 1200px;
  margin: auto;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body,
html {
  overflow-x: hidden;
}

/* navbar */
/* ================= NAVBAR FIX ================= */
.navbar {
  padding: 0.8rem 1rem;
  background-color: #fff;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  object-fit: cover;
}

.nav-link {
  color: #000000 !important;
  font-size: 2em;
  font-weight: bold;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2DA026 !important;
}

/* ===== Dropdown Menu ===== */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.dropdown-item {
  color: #333;
  font-weight: 500;
  padding: 10px 20px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover / Focus / Active states */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: #3CB878 !important;
  /* theme green */
  color: #ffffff !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 10px 0;
    border-radius: 8px;
  }

  .nav-link {
    margin: 10px 0;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    box-shadow: none;
    text-align: center;
  }

  .dropdown-item {
    padding: 10px;
  }

  .navbar-brand img {
    height: 40px;
  }
}

/* hero section */
.hero-section {
  background: linear-gradient(rgba(25, 231, 125, 0.8), rgba(19, 209, 114, 0.9)), url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
}

/* 📱 Responsive adjustments */
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding: 80px 0;
  }

  .carousel-item {
    margin-top: 20px;
  }

  .hero-section .row {
    flex-direction: column-reverse;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-section .carousel-inner img {
    height: 320px;
  }

  .hero-section .d-flex {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 0.95rem;
  }

  .hero-section .carousel-inner img {
    height: 250px;
  }

  .hero-section .btn {
    width: 100%;
    font-size: 0.95rem;
  }
}


/* ===== Banner Section (Solid Background) ===== */
.banner-section {
  background: linear-gradient(135deg, #47C940, #2C8D5E);
  max-width: 100%;
  color: #fff;
  margin-bottom: auto;
  padding: 120px 20px 100px;
  text-align: center;
  position: relative;
}



.banner-overlay h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  justify-content: center;
}

.breadcrumb-item a {
  color: #fff;
}

.breadcrumb-item.active {
  color: #d9f6de;
}

/* ===== Intro Section (below banner) ===== */
.banner-intro img {
  width: 100%;
  border-radius: 10px;
}

.banner-intro h2 {
  color: #222;
}

.banner-intro p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.banner-intro .btn {
  background-color: #3cb0b8;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s ease;
}

.banner-intro .btn:hover {
  background-color: #2c8d5e;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-section {
    padding: 100px 20px 80px;
  }

  .banner-overlay h1 {
    font-size: 1.8rem;
  }
}



/* About Us Section */
#about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* stack image + text neatly */
  text-align: center;
  margin-bottom: -40px;
  padding: 50px 50px;
  background-color: #dfdedca9;
  max-width: fit-content;
}

/* #about .about-text {
    max-width: 900px;
    margin-top: 30px;
} */

/* Underline only under “About Us” text */
#about h2 {
  display: inline-block;
  position: relative;
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #222;
}

#about h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 200px;
  /* underline width */
  height: 4px;
  background-color: #000;
  /* theme color */
  border-radius: 2px;
}

/* Image styling */
#about img {
  display: block;
  margin: 0 auto;
  height: 400px;
}

/* Why Choose Us Section */
.why-choose-section {
  background-color: #ffefcf;
  color: #222;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #2da026;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.why-choose-section p {
  font-size: 14px;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 40px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.why-list li {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.why-list i {
  margin-right: 8px;
  color: #2DA026;
  font-size: 1.2rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .why-list li {
    font-size: 0.95rem;
  }
}




/* services */
.services {
  text-align: center;
  padding: 80px 20px;
  background-color: #F9FAFB;
  margin-top: -50px;


}

.services h2 {
  display: inline-block;
  position: relative;
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #222;
}

/* Centered Underline Fix */
.services h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  /* small gap below text */
  transform: translateX(-50%);
  width: 180px;
  /* underline width */
  height: 4px;
  background-color: #000;
  /* theme color */
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  transition: all 0.5s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transform-origin: center;
  position: relative;
}

.card img {
  width: 100%;
  max-width: 370px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 10px;
}

.card h3 {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 15px;
}

.card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Hover Animation */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
}

.card:hover::after {
  opacity: 1;
  box-shadow: 0 0 12px 2px rgba(126, 76, 18, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .services {
    padding: 60px 15px;
  }

  .services h2 {
    font-size: 2em;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .card {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.8em;
  }

  .services-grid {
    gap: 20px;
  }
}



/* Our Vision Section */
#vision {
  background-color: #fff;
  padding: 80px 20px;
}

.vision-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  /* responsive layout */
}

.vision-image {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.vision-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vision-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.vision-text .herb-icon {
  width: 80px;
  margin-bottom: 15px;
}

.vision-text h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.vision-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 4px;
  background-color: #000000;
  border-radius: 2px;
}

.vision-text p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.8;
}

/* Responsive tweak: stack vertically on small screens */
@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
  }

  .vision-image,
  .vision-text {
    text-align: center;
  }

  .vision-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .vision-text h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
}


/* ============================
   Our Mission Section Styles
   ============================ */
#mission {
  background-color: #f8f8f8;
  padding: 80px 20px;
}

.mission-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Text Section */
.mission-text {
  flex: 1;
  min-width: 320px;
}

/* Herb icon above heading */
.mission-text .herb-icon {
  width: 60px;
  margin-bottom: 15px;
}

/* Mission heading */
.mission-text h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.mission-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 4px;
  background-color: #000000;
  border-radius: 2px;
}

/* Intro paragraph */
.mission-text .intro {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Mission bullet points */
.mission-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mission-points li {
  font-size: 1.05em;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.mission-points li strong {
  color: #7e4c12;
}

/* Closing paragraph */
.mission-text .closing {
  font-size: 1.1em;
  color: #444;
  line-height: 1.8;
  margin-top: 15px;
}

/* Right Image Section */
.mission-image {
  flex: 1;
  text-align: right;
  min-width: 300px;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -20px;
  }

  .mission-text h2 {
    font-size: 2rem;
  }

  .mission-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .mission-image {
    text-align: center;
    margin-top: 20px;
  }

  .mission-image img {
    max-width: 90%;
    margin-top: 20px;
  }
}


/* --------------------------
   OUR EXPERT MEDICAL TEAM
--------------------------- */
#team {
  background-color: #E6F4F1;
  text-align: center;
  padding: 80px 20px;
}

/* === HEADING === */
#team .team-title {
  display: inline-block;
  position: relative;
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  margin-top: -50px;
}

/* === CENTERED UNDERLINE === */
#team .team-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 550px;
  /* desktop underline width */
  height: 4px;
  background-color: #030200;
  border-radius: 2px;
}

/* === SUBTITLE === */
#team .team-subtitle {
  color: #000000;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1em;
  line-height: 1.6;
}

/* === TEAM GRID === */
.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* === TEAM CARD === */
.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* === DOCTOR IMAGE CIRCLE === */
.doctor-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.doctor-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CARD TEXT === */
.team-card h4 {
  font-size: 1.3em;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card .specialty {
  color: #2DA026;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.team-card ul li {
  font-size: 0.95em;
}

/* === RESPONSIVE DESIGN === */

/* Tablet: 2 cards per row */
@media (max-width: 992px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -60px;
  }
  

  #team .team-title {
    font-size: 2.3em;
  }

  #team .team-title::after {
    width: 250px;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
  .team-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #team .team-title {
    font-size: 1.8em;
    margin-top: -50px;
  }

  #team .team-title::after {
    width: 250px;
    /* smaller underline */
    height: 4px;
  }

  #team .team-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
}

/* Small Mobile: even smaller underline */
@media (max-width: 420px) {
  #team .team-title {
    font-size: 1.6em;
  }

  #team .team-title::after {
    width: 320px;
    height: 2.5px;
  }
}



/* gallert */
/* === OUR GALLERY SECTION === */
#gallery {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Heading */
#gallery .section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
  margin-top: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Centered underline below heading */
#gallery .section-title::after {
  content: "";
  display: block;
  width: 250px;
  height: 4px;
  background-color: #000000;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Responsive Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
  margin: 0 30px;
}

/* Uniform Image Styling */
.gallery-item {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* === MEDIA QUERIES === */

/* Tablets */
@media (max-width: 992px) {
  #gallery {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .gallery-grid {
    margin: 0 20px;
    gap: 20px;
  }

  #gallery .section-title {
    font-size: 1.8rem;
  }
}

/* Mobile (2 images per row) */
@media (max-width: 576px) {
  #gallery {
    padding-top: 120px;
    /* ✅ Adjusted for fixed navbar */
    padding-bottom: 40px;
    margin-top: 25px;
    /* ✅ Removed large gap */
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* ✅ Two images per row */
    margin: 0 15px;
    gap: 15px;
  }

  #gallery .section-title {
    font-size: 1.6rem;
    margin-top: 0;
    /* ✅ Keeps heading close to content */
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #gallery .section-title::after {
    width: 80px;
    margin: 10px auto 0;
    /* ✅ Keeps underline centered */
  }
}


/* === CONTACT SECTION === */
.contact-section {
  background-color: #f8fafc;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #00c48c;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 50px;
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 340px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  background-color: #e8f0ff;
  color: #2DA026;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: #2DA026;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: #333;
  margin: 5px 0;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Button Colors */
.call-btn {
  background-color: #0066ff;
}

.book-btn {
  background-color: #00c48c;
}

.message-btn {
  background-color: #0066ff;
}

.btn:hover {
  opacity: 0.9;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 30px 20px;
  }
}

/* Emergency Section */
.emergency-section {
  background-color: #fff7f7;
  padding: 70px 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-underline {
  width: 120px;
  height: 4px;
  background-color: #3cb878;
  border: none;
  margin: 0 auto 20px;
  display: block;
}

.section-subtext {
  font-size: 1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 10px;
}

/* Layout */
.emergency-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.emergency-left,
.emergency-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.emergency-left h4,
.emergency-right h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}

.emergency-left ul,
.emergency-right ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.patient-portal-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.patient-portal-card h5 {
  color: #000000;
  font-weight: 700;
}

.portal-btn {
  display: inline-block;
  background-color: #3cb878;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 12px;
  transition: background-color 0.3s ease;
}

.portal-btn:hover {
  background-color: #2f8f62;
}

/* Responsive */
@media (max-width: 768px) {
  .emergency-content {
    flex-direction: column;
  }
}


/* contact section */
/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.contact-heading {
  text-align: center;
  margin-bottom: 30px;
}

.contact-heading h2 {
  display: inline-block;
  position: relative;
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #222;
}


.underline {
  width: 100pxpx;
  height: 4px;
  background-color: #000;
  /* primary green */
  margin: 0 auto;
  border-radius: 2px;

}

/* Contact Card */
.contact-card {
  background: #c9c9c9;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333333;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2b1b04;
}

.checkbox-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.btn-submit {
  background-color: #2DA026;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #381d03;
}



/* === CONTACT SECTION === */
.contact-section {
  background-color: #f8fafc;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 4px;
  background-color: #000000;
  bottom: -10px;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 340px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  background-color: #e8f0ff;
  color: #0066ff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: #0066ff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: #333;
  margin: 5px 0;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Button Colors */
.call-btn {
  background-color: #0066ff;
}

.book-btn {
  background-color: #00c48c;
}

.message-btn {
  background-color: #0066ff;
}

.btn:hover {
  opacity: 0.9;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 30px 20px;
  }
}


/* Emergency Section Styling */
.emergency-section {
  background-color: #fff7f7;
  padding: 60px 0;
}

.section-title {
  color: #e63946;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-underline {
  width: 350px;
  height: 3px;
  background-color: #3cb878;
  border: none;
  margin: 0 auto 40px;
}

.emergency-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.emergency-left,
.emergency-right {
  flex: 1;
  min-width: 300px;
}

.emergency-left h4,
.emergency-right h4 {
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.emergency-left ul,
.emergency-right ul {
  margin-left: 20px;
}

.patient-portal-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.portal-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.portal-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .emergency-content {
    flex-direction: column;
  }
}


/* ============================
   WHY CHOOSE OUR OPD SECTION
   ============================ */
.why-choose-opd {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.why-choose-opd .container {
  max-width: 1100px;
  margin: auto;
}

.why-choose-opd h2 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.why-choose-opd h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: #000000;
  border-radius: 2px;
}

/* Grid layout */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

/* Each item box */
.choose-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Icons */
.choose-item i {
  font-size: 2.3em;
  margin-bottom: 15px;
  color: #2DA026;
  transition: color 0.3s ease;
}

.choose-item:hover i {
  color: #E63946;
}

/* Text */
.choose-item p {
  font-size: 1.05em;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-opd h2 {
    font-size: 2em;
  }
}





/* Footer Section */
.footer {
  background-color: #0f2d46;
  color: #fff;
  padding: 60px 0 20px;
}

.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}


.footer h5 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #2DA026;
}

.footer p,
.footer a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer a:hover {
  color: #2DA026;
}

.footer .social-icons i {
  margin-right: 12px;
  font-size: 18px;
  color: #2DA026;
  transition: 0.3s;
}

.footer .social-icons i:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-gallery img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
  margin: 5px;
}

.footer-bottom {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer .footer-logo img {
  width: 100%;
  height: auto;
  margin-left: -22px;
  padding: 15px;
  /* margin: auto; */
}

.footer_buttom {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  color: #fff;
}

/* Floating Buttons */
.scroll-top,
.whatsapp-float {
  position: fixed;
  right: 25px;
  background: #2DA026;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-top {
  bottom: 90px;
}

.whatsapp-float {
  bottom: 25px;
}

.scroll-top:hover,
.whatsapp-float:hover {
  background: #2DA026;
  color: #fff;
}