
.gallery {
  padding: 20px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 0 18px #ccc;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

#lightbox img {
  max-width: 80%;
  max-height: 80%;
  margin-top: 5%;
  border-radius: 8px;
}

#close, #prev, #next {
  position: absolute;
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
}

#close {
  top: 15px;
  right: 35px;
}

#prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

#next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#close:hover, #prev:hover, #next:hover {
  color: #ff9800;
}
.gallery_banner{
    background-size: cover;
    background: url(../images/banner/common.jpeg)no-repeat;
    padding: 100px 0;
}
