.logo1 {
  width: 200px;
}

/* Make slick slides equal height */
.slick-track {
  display: flex !important;
}

/* Each slide should stretch */
.slick-slide {
  height: auto !important;
}

/* Service card full height */
.service-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Push button to bottom */
.service__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service__content .btn {
  margin-top: auto;
}
/* Testimonials Modern */
.testimonials-modern {
  background-color: #f9f9f9;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  margin: 15px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
}

.testimonial__quote::before {
  content: "“";
  font-size: 50px;
  color: #2d6cdf;
  position: absolute;
  top: -21px;
  left: -13px;
}

.testimonial__author h5 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #222;
}

.testimonial__author span {
  font-size: 14px;
  color: #2d6cdf;
}

.hospital-stats {
  position: relative;
}

/* Background image should be here */
.hospital-stats .overlay {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../imgs/homePg/homePg_slider2.jpg") center/cover no-repeat;

  padding: 90px 0;
}

/* Stat box */
.stat-box i {
  font-size: 45px;
  margin-bottom: 15px;
  color: #00d9a6;
}

.hospital-stats h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.hospital-stats p {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  color: #ffffff;
}

.service-card {
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  /* border: 2px solid; */

  margin-bottom: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 40px;
  color: #3cd6bf;
  margin-bottom: 15px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 0;
}

/* Gallery Section Styling */
.gallery {
  background: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 90px;
}

/* Space between slick slides */
.gallery .slick-slide {
  padding: 0 12px; /* gap between images */
}

/* Fix slick extra width issue */
.gallery .slick-list {
  margin: 0 -12px; /* same as slide padding */
}

/* Gallery Item Design */
.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease-in-out;
}

/* Image Styling */
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s ease;
}

/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Hover shadow effect */
.gallery-item:hover {
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.18);
}

/* Responsive height */
@media (max-width: 991px) {
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 180px;
  }
}
