.gallery-section{
  margin-top: 60px;
  padding: 30px;
}.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 80px 40px;
}

.gallery-image {
  width: 100%; 
  height: 250px;          /* 🔥 FIX HEIGHT */
  object-fit: cover;      /* 🔥 PREVENT STRETCH */
  border-radius: 10px;
}

.gallery-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.view-more-btn {
  padding: 12px 25px;
  border: none;
  background-color: rgb(255, 10, 92);
  color: white;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 10, 92, 0.3);
}
/* TABLET */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 0px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-image {
    height: 150px;
  }
}