.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 20px;
}

.custom-gallery img {
  min-width: 30rem;
  max-width: 30rem;
  height: 20rem;
  cursor: pointer;
  transition: transform 0.4s;
  margin-top: 1rem;
}

.custom-gallery img:hover {
  /* transform: scale(1.1); */
  filter: brightness(40%);
}

.custom-lightbox {
  z-index: 999 !important;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.custom-lightbox img {
  z-index: 999 !important;
  max-width: 90%;
  max-height: 90%;
  border: 2px solid orange;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.custom-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .custom-gallery img {
    min-width: 100%;
  }
}
