.hospital-section {
    padding: 3rem 0;
}

.hospital-title {
    font-weight: bold;
    color: #0f766e; /* teal-700 */
    font-size: 1rem;
}

.hospital-subtitle {
    font-weight: 800;
    font-size: 2.5rem;
    color: #111827; /* gray-900 */
}

/* .hospital-card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
} */

.hospital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center; /* Center-align the content inside the card */
  display: flex; /* Use flexbox for alignment */
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transition */
}

.card:hover {
  transform: translateY(-10px); /* Move the card slightly upward on hover */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.card img {
  width: 50%; /* Reduce the width of the image */
  height: auto; /* Maintain the aspect ratio */
  object-fit: cover; /* Ensure the image scales properly */
  border-radius: 10px;
  margin-bottom: 15px;
}



.hospital-card .card-body {
    padding: 1rem;
}

.hospital-card .card-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.hospital-card .card-text {
    color: #6b7280; /* gray-500 */
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.hospital-recommendation {
    font-size: 0.9rem;
    color: #10b981; /* green-500 */
    font-weight: 600;
    display: flex;
    align-items: center;
}

.hospital-recommendation i {
    margin-right: 5px;
    font-size: 1rem;
}
