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




	
  

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

.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: #d32f2f; color: #fff; }
.btn-green { background: #2e9b47; color: #fff; }

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

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



