.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 20px; /* <-- this adds vertical space */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}



