
  .doctor-profile-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
  }

  .doctor-profile-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 100px;
  }

  .doctor-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  .doctor-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid #CC3366;
  }

  .doctor-profile-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a3365;
  }

  .doctor-qualification {
    font-size: 12px;
    color: #CC3366;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .doctor-profile-card p {
    font-size: 13px;
    color: #0a3365;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .consult-btn {
    display: inline-block;
    background-color: #CC3366;
    border: 2px solid #CC3366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
  }

  .consult-btn:hover {
    transform: scale(1.05);
    background-color: #AF3333;
    color: #fff;
  }

  .viewmorebutton {
    display: inline-block;
    color: #fff;
    background-color: #CC3366;
    border: 2px solid #CC3366;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 30px;
  }

  .viewmorebutton:hover {
    background-color: #AF3333;
    color: #fff;
  }

  @media (max-width: 1024px) {
    .doctor-profile-card {
      flex: 1 1 calc(50% - 20px);
    }
  }

  @media (max-width: 768px) {
    .doctor-profile-card {
      flex: 1 1 100%;
    }
  }


  
.pricing-boxes {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: nowrap;
}

.plan-mini {
  width: 30%;
  max-width: 240px;   /* âœ… helps make perfect square look */
  background: #fff;
  border: 1px solid #c6d8e6;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* âœ… evenly spaced content */
  padding-bottom: 10px;
}

.plan-mini h4 {
  background: #c6d8e6;
  padding: 12px;
  margin: 0;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}

.plan-mini ul {
  padding: 10px 15px;
  margin: 0;
  list-style: none;
}

.plan-mini ul li {
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

.plan-mini ul li:last-child {
  border-bottom: none;
}

/* Icons colors */
.plan-mini i.fa-check { color: #22aa22; }
.plan-mini i.fa-times { color: #ff0000; }
.plan-mini i.fa-plus { color: #0033cc; }

/* âœ… Mobile Responsive */
@media(max-width: 780px) {
  .pricing-boxes { flex-wrap: wrap; }
  .plan-mini { width: 48%; min-height: 220px; }
}
@media(max-width: 480px) {
  .plan-mini { width: 100%; min-height: 200px; }
}
















.services-container {
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
    margin: 20px 0;
    border-radius: 8px;
}



.steps-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 10px 0;

}

.step {
  text-align: center;
  width: 18%;
  position: relative;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #e9f5ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px;
  position: relative;
}

.icon-circle:after {
  content: "";
  width: 78px;
  height: 78px;
  border: 1.5px dashed #b8d7ef;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  pointer-events: none;
}

.steps-inline .step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30%;
  top: 38%;
  width: 50px;
  border-top: 1px dotted #91c4e9;
}

.icon-circle i {
  font-size: 28px;
  color: #0077b6;
  line-height: 1;
}

/* fallback if FA not available: use simple emoji */
.icon-fallback {
  font-size: 26px;
}

.step p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #002b49;
  margin: 0;
}

/* responsive tweaks */
@media (max-width: 780px) {
  .steps-inline { gap: 8px; }
  .step { width: 19%; }
}
@media (max-width: 480px) {
  .steps-inline { flex-wrap: wrap; }
  .step { width: 48%; margin-bottom: 12px; }
}



  
.hospitals-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
.hospitals-wrapper h2 {
  color: #c36;
  text-align: center;
  width: 100%;
}
.hospital-content h3 {
  color: #c36;  
}
.hospital-card {
  background: #fff;
  border-radius: 12px;
  width: 48%;
  border: 1px solid #e4e4e4;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.hospital-card img {
  width: 100%;
  height: 150px;
  object-fit: cover; /* fills without distortion */
  display: block;
}

.hospital-content {
  padding: 12px 15px;
}

.hospital-content h3 {
  font-size: 17px;
  color: #005596;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.2;
}

.hospital-content p {
  font-size: 13px;
  margin: 3px 0;
}

.btn-wrap {
  display: flex;
  justify-content: center; /* Center the buttons */
  margin-top: 10px;
  gap: 8px;
}

.btn-red, .btn-green {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-red { background: #c36; color: #fff; }

/* Commenting out WhatsApp button
.btn-green {
  display: none; 
}
*/

@media(max-width:768px) {
  .hospital-card {
  width: 100%;
  }
}


.guide-link {
    display: inline-block;
    color: #fff;
    background-color: #000066;
    border: 2px solid #000066;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.viewmorebutoon {
    display: inline-block;
    color: #fff;
    background-color: #c36;
    border: 2px solid #c36;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 30px;
}

.viewmorebutoon:hover {
    background-color: #c36;
    color: #fff;
}

.hospital-content h3 {
  color: #c36;
}