.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

/* 🔥 Title + Description */
.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 16px;
  color: #666;
}

/* underline */
.gallery-header h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background:#0052d4;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* Slider */
.gallery-container {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.gallery-item {
  min-width: calc(100% / 3 - 13.33px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-item {
    min-width: calc(100% / 2 - 10px);
  }
}

@media (max-width: 600px) {
  .gallery-item {
    min-width: 100%;
  }
}