/*  
.flag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 36px;
    height: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hospital_cardimg h3 {
    position: absolute;
    top: 115px;
    z-index: 1;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
    left: 130px;
}

.specialties_card .hospital_cardbody h3 {
    margin-top: 0px;
}
.specialties_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(15, 39, 72, .08), 0 2px 4px rgba(15, 39, 72, .04);
    border-color: #347858;
}
.clinical_specialties .row [class*="col"] {
    margin-bottom: 24px;
}
.specialties_card .spec-icon {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eafdf4, #b3e4cc);
    color: #347858;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}
.specialties_card .spec-icon figure img {
    width: 48px;
    height: 48px;
    filter: invert(41%) sepia(13%) saturate(1435%) hue-rotate(101deg) brightness(97%) contrast(83%);
}
.specialties_card .spec-procedures {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.spec-procedures li {
    font-size: 12px;
    background: #cff1e0;
    color: #347858;
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 500;
     list-style: none;
}
.spec-savings {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}
.spec-savings strong {
    color: #36b39a;
    font-size: 22px;
    font-weight: 800;
}
.spec-savings span {
    font-size: 13px;
    color: #333333bd;
} */



/* ---------- GOOGLE REVIEWS ---------- */

/* .reviews-section { background: var(--soft); padding: 84px 0; }
.reviews-section.compact { padding: 56px 0; }
.reviews-section.compact .reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1080px;
}
.reviews-section.compact .reviews-head { margin-bottom: 32px; }
.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-rating-badge .g-logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.reviews-rating-badge .rating-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.reviews-rating-badge .rating-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}
.reviews-rating-badge .rating-count {
  font-size: 14px;
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.review-avatar.c1 { background: #1a73e8; }
.review-avatar.c2 { background: #34a853; }
.review-avatar.c3 { background: #ea4335; }
.review-avatar.c4 { background: #fbbc04; color: #4d3a00; }
.review-avatar.c5 { background: #9334e8; }
.review-avatar.c6 { background: #00897b; }
.review-avatar.c7 { background: #d81b60; }
.review-avatar.c8 { background: #6d4c41; }
.review-meta { flex: 1 1 auto; min-width: 0; }
.review-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.review-date {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.review-stars { color: #fbbc04; font-size: 14px; letter-spacing: 1px; line-height: 1; }
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  flex: 1 1 auto;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.review-footer .g-logo { width: 14px; height: 14px; }
.heading_sec.technology_heading_re {
    width: 100% !important;
    text-align: left;
    margin-bottom: 25px !important;
}

.accreditations .badge {
    display: inline-block;
    padding: 8px 16px;
    background: #185c3c;
    color: white;
    border-radius: 100px;
    font-size: 11.5px;
    letter-spacing: .12em;
    font-weight: 700;
    box-shadow: 0 4px 12px hsl(151.76deg 39.53% 33.73% / 40%);
} */

