/* SECTION */
.hospital-section{
  padding:70px 20px;
  background:#f8fafc;
}

.hospital-section h2{
  text-align:center;
  font-size:32px;
  font-weight:600;
  margin-bottom:45px;
  color:#0f172a;
}

/* GRID */
.hospital-grid{
  max-width:1270px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.hospital-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  transition:0.3s;
}
.hospital-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.hospital-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* BODY */
.hospital-body{
  padding:22px;
}

.hospital-body h3{
  font-size:1.25rem;
  font-weight:600;
  color:#0f172a;
  margin-bottom:6px;
}

.hospital-body p{
  font-size:14px;
  color:#475569;
  margin-bottom:14px;
  line-height:1.6;
}

/* UL FIXED */
.features{
  list-style:none;
  margin:0 0 18px 0;
  padding:0;
}

.features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:#334155;
  margin-bottom:8px;
  line-height:1.5;
}

/* ✔ ICON */
.features li::before{
  content:"✔";
  color:#22c55e;
  font-weight:700;
  flex-shrink:0;
  margin-top:2px;
}


/* BUTTONS */
.btn-group{
  display:flex;
}

.btn{
  flex:1;
  padding:11px;
  border-radius:10px;
  font-size:14px;
  font-weight:500;
  text-align:center;
  text-decoration:none;
  transition:0.25s;
}

/* View Profile */
.btn-profile{
  border:2px solid #06b6d4;
  color:#06b6d4;
  background:#fff;
}
.btn-profile:hover{
  background:#06b6d4;
  color:#fff;
}

/* Book Appointment */
.btn-book{
  background:#06b6d4;
  border:2px solid #06b6d4;
  color:#fff;
}
.btn-book:hover{
  background:#0891b2;
  border-color:#0891b2;
}/* Book Appointment */
.btn-book{
  background:#06b6d4;
  border:2px solid #06b6d4;
  color:#fff;
}   color: #048399;
}

/* RESPONSIVE */
@media(max-width:992px){
  .hospital-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:576px){
  .hospital-grid{grid-template-columns:1fr;}
}