.gallery-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-card {
  width: 300px;
  height: 200px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  /* bottom: 10px;
  left: 10px; */
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}