.hero-section {
  height: 600px;
}

.hero-left {
  flex: 1;
  min-width: 50%;
}

.location-info {
  margin-right: 60px;
}

.hero-left .cta-btn {
  width: auto;
  display: inline-flex;
  font-size: 16px;
  padding: 10px 25px;
  height: 50px;
  margin-right: 10px;
}

.section-title {
  margin-bottom: 30px;
  margin-inline: auto;
}

.slick-dots {
  display: none;
}
.doctor-sec-header {
  text-align: center;
  margin-bottom: 50px;
}
.feature-section {
  padding: 70px 0;
}
.feature-images .image-single img {
  width: 500px;
  height: 440px;
}
.feature-content {
  max-width: 100%;
}

.hero-left p {
  color: #636363;
  width: 100%;
}

.hero-left h1 {
  width: 320px;
}

.team-card {
  width: 270px;
}

.services-section .slider-btn.prev {
  background-color: #636363;
}
.single-clinic .hero-right-image img {
  width: 800px;
  max-width: 800px;
  border-radius: 0;
  margin-right: -100px;
}
.doctors-by-specialization .container {
  padding-inline: 20px;
}
@media (max-width: 991px) {
  .packages-section {
    padding-top: 0;
  }
}

.location-info__item:first-child {
  width: 100%;
}
/* =========================
   Doctor Gallery Section
========================= */

.doctor-gallery-section {
  background-size: 38%;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding: 60px 0 0px;
}

.doctor-gallery-section .container {
  max-width: 1366px;
  padding: 0 20px;
}

.gallery-left {
  min-height: 542px; /* Match your image height */
}

.doctor-gallery-wrap {
  display: grid;
  grid-template-columns: auto 58%;
  gap: 40px;
  align-items: flex-start;
}

/* RIGHT SLIDER */
.gallery-right {
  position: relative;
}

.gallery-slider {
  position: relative;
}

.gallery-slide {
  outline: none;
}

/* 2x2 GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 271px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Slick dots */
.gallery-slider .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  text-align: center;
  padding: 0;
  list-style: none;
}

.gallery-slider .slick-dots li {
  display: inline-block;
  margin: 0 4px;
  padding: 0;
}

.gallery-slider .slick-dots li button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  width: 12px;
  height: 12px;
  position: relative;
}

.gallery-slider .slick-dots li button:before {
  content: "●";
  font-size: 23px;
  color: #d9d9d9;
  opacity: 0.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 991px) {
  .doctor-gallery-section {
    background-size: cover;
    background-position: center;
  }

  .doctor-gallery-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-left {
    min-height: 300px;
  }

  .gallery-item img {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .doctor-gallery-section {
    padding: 40px 0;
  }

  .gallery-left {
    min-height: 250px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item img {
    height: auto;
  }
}
