.gallery_section {
  background: #f8f9fb;
}

.gallery_section .gallery_title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 10px;
}

.gallery_section .gallery_subtitle {
  color: #6c757d;
  font-size: 16px;
}

.gallery_section .gallery_card {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gallery_section .gallery_img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.gallery_section .gallery_card:hover .gallery_img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
 .gallery_section .gallery_img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .gallery_section .gallery_title {
    font-size: 28px;
  }

  .gallery_section .gallery_img {
    height: 200px;
  }
}