/* Gallery Section */
.gallery-section {
  background-color: var(--lightbg);
  padding: 100px 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--plainclr);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay h5 {
  color: var(--plainclr);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.modal-header .close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeprimaryclr);
  color: var(--plainclr);
  border: 0;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.modal-header .close-btn:hover {
  background: var(--themesecondaryclr);
  color: var(--plainclr);
  transform: scale(1.1);
}/*# sourceMappingURL=gallery.css.map */