/* Gallery Section Styling */
.gallery-section {
  padding: 60px 20px;
  background-color: #000;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-container img {
  width: 260px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .gallery-container img {
    width: 90%;
    height: auto;
  }
}
