/* Section Styling */
.doctors-section {
  padding: 100px 0;
  background-color: #f4f7fc;
  /* Matches Mission/Vision for consistency */
}

.doctors-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Heading Styling */
.doctors-heading {
  text-align: center;
  margin-bottom: 60px;
}

.doctors-subtitle {
  color: #005ce6;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.doctors-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* Grid Layout for Doctor Cards */
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Two equal columns */
  gap: 40px;
}

/* Individual Doctor Card Styling */
.doctor-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  /* Important for containing the image */
  display: flex;
  flex-direction: column;
  /* Stacks image on top of info */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-10px);
}

.doctor-image img {
  width: 100%;
  height: auto;
  display: block;
  /* Removes bottom space under image */
}

.doctor-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Makes the info box fill the card height */
}

.doctor-info h3 {
  font-size: 26px;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.doctor-credentials {
  font-size: 15px;
  color: #005ce6;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.doctor-bio {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  flex-grow: 1;
  /* Pushes content below it downwards */
}

.specialties-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 10px 0;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.specialties-tags {
  display: flex;
  flex-wrap: wrap;
  /* Allows tags to wrap to the next line */
  gap: 8px;
  /* Space between tags */
}

.specialty-tag {
  background-color: #e9f2ff;
  color: #005ce6;
  padding: 6px 14px;
  border-radius: 20px;
  /* Creates the pill shape */
  font-size: 13px;
  font-weight: 500;
}

.doctor-profile-link {
  color: #005ce6;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  /* Pushes link to the bottom */
  transition: color 0.3s ease;
}

.doctor-profile-link:hover {
  color: #0045b3;
}

.doctor-profile-link i {
  margin-left: 5px;
}

/* Responsive Design for Mobile & Tablet */
@media (max-width: 992px) {
  .doctors-grid {
    grid-template-columns: 1fr;
    /* Stack cards on top of each other */
  }
}

@media (max-width: 768px) {
  .doctors-heading h2 {
    font-size: 34px;
    /* Adjust heading size for smaller screens */
  }
}

/* Section Styling */
.mission-vision-section {
  padding: 40px 0;
  background-color: #f4f7fc;
  /* A light, clean blue-gray background */
  font-family: sans-serif;
  /* Fallback font */
}

.mv-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Heading Styling */
.mv-heading {
  text-align: center;
  margin-bottom: 30px;
}

.mv-subtitle {
  color: #005ce6;
  /* A strong, professional blue from your site */
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.mv-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  /* Dark, readable text color */
  margin: 0;
}

/* Grid Layout for Cards */
.mv-grid {
  display: flex;
  gap: 30px;
  /* Space between the cards */
  align-items: stretch;
  /* Makes cards equal height */
}

/* Card Styling */
.mv-card {
  flex: 1;
  /* Each card takes up equal space */
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 92, 230, 0.15);
}

/* Icon Styling */
.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ed731cff;
  /* Main accent blue */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  flex-shrink: 0;
  /* Prevents icon from shrinking */
}

/* Card Content Styling */
.mv-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.mv-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .mv-grid {
    flex-direction: column;
    /* Stack cards on top of each other */
  }

  .mv-heading h2 {
    font-size: 34px;
    /* Adjust heading size for smaller screens */
  }

  .mission-vision-section {
    padding: 60px 0;
  }
}

.attractive-contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f4f7fc 0%, #e9ebf0 100%);
  position: relative;
  overflow: hidden;
}

.attractive-contact-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 92, 230, 0.08), transparent 70%);
  z-index: 1;
}

.attractive-contact-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.attractive-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Left Info Panel Styling */
.info-panel-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a2a4d;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.info-panel-title span {
  background: -webkit-linear-gradient(45deg, #005ce6, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-panel-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.highlight-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #005ce6;
  box-shadow: 0 5px 15px rgba(0, 92, 230, 0.1);
}

.highlight-text h4 {
  font-size: 18px;
  color: #1a2a4d;
  margin: 0 0 5px 0;
}

.highlight-text p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Right Form Card Styling */
.contact-form-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 48, 115, 0.15);
  position: relative;
}

.contact-form-card h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a4d;
  margin: 0 0 5px 0;
}

.contact-form-card p {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contact-form-card .form-group {
  margin-bottom: 20px;
}

.contact-form-card .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}

.contact-form-card .form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d9e0e7;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f9fafb;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form-card .form-group input:focus {
  outline: none;
  border-color: #005ce6;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 92, 230, 0.1);
}

.contact-form-card .form-row {
  display: flex;
  gap: 20px;
}

.contact-form-card .form-row .form-group {
  flex: 1;
}

.submit-button-attractive {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, #005ce6, #0084ff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(0, 92, 230, 0.2);
  transition: all 0.3s ease;
}

.submit-button-attractive:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 92, 230, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .attractive-contact-grid {
    grid-template-columns: 1fr; /* Stack columns */
  }
  .info-panel-title {
    font-size: 40px;
    text-align: center;
  }
  .info-panel-subtitle {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .contact-form-card .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form-card {
    padding: 25px;
  }
  .info-panel-title {
    font-size: 34px;
  }
  .attractive-contact-section {
    padding: 80px 0;
  }
}

/* testimonials CSS */

.testimonial-section-revamped {
      padding: 100px 0;
      background-color: #f4f7fc;
      position: relative;
    }

    .testimonial-container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .testimonial-heading {
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonial-subtitle {
      color: #005ce6;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 5px 0;
    }

    .testimonial-heading h2 {
      font-size: 42px;
      font-weight: 700;
      color: #222;
      margin: 0;
    }

    .testimonial-slider {
      padding-bottom: 50px; /* Space for pagination dots */
    }

    .testimonial-card {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      text-align: center;
      height: 100%; /* Important for consistent height in slider */
      box-sizing: border-box;
      position: relative;
    }

    .testimonial-card::before {
      content: '“';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 100px;
      font-weight: 800;
      color: #e9f2ff;
      z-index: 1;
      line-height: 1;
    }
    
    .testimonial-stars {
      color: #ffc107; /* A bright, gold star color */
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .testimonial-quote {
      font-size: 17px;
      font-style: italic;
      line-height: 1.7;
      color: #555;
      margin: 0 0 25px 0;
      position: relative;
      z-index: 2;
    }

    .testimonial-author {
      font-size: 16px;
      font-weight: 600;
      color: #222;
      position: relative;
      z-index: 2;
    }

    /* Swiper Pagination Dot Styling */
    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background-color: #ccc;
      opacity: 1;
      transition: background-color 0.3s ease;
    }

    .swiper-pagination-bullet-active {
      background-color: #005ce6;
    }