.hospital-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%; /* Make card fill the column */
}

.hospital-card:hover {
  transform: translateY(-8px);
}

.hospital-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hospital-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto; /* Allow content to grow and fill space */
}

.hospital-content h4 {
  font-size: 18px;
  color: #2665a7;
  margin-bottom: 6px;
}

.hospital-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  font-style: italic;
}

.hospital-location {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.hospital-features {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Make the button stick to the bottom */
.btn-view {
  margin-top: auto;
  align-self: center;
  padding: 8px 20px;
  background: #ca1d73;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-view:hover {
  background: #084298;
  color: #fff;
}

/* Optional: ensure swiper slide uses full height */
.swiper-slide {
  display: flex;
  height: 100%;
}


.swiper-button-next::after {
    content: '›'; /* Right arrow */
    font-size: 22px;
    color: #ca1d73;
}

.swiper-button-prev::after {
    content: '‹'; /* Left arrow */
    font-size: 22px;
    color: #ca1d73;
}


.elementor-element, .elementor-lightbox
 {
     swiper-navigation-size:18px !important;
 }












