.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("/assets/banner4.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  /* margin-top: 80px; */
}

/* gallery.css */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.gallery-item {
  margin: 10px;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  border: 10px solid gray;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
