	        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            padding: 20px;
            max-width: 1200px;
            width: 100%;
        }

        .gallery img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.2s ease-in-out;
        }

        .gallery img:hover {
            transform: scale(1.05);
        }	
		            .gallery-item {
            text-align: center;
            }

            .gallery-item p {
            margin: 5px 0 0;
            font-size: 14px;
            color: #333;
            }

.slider-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-image {
  max-width: 90%;
  max-height: 70vh;
  object-fit: contain;
}
            .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            }
.prev, .next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  background: rgba(255,255,255,0.3);
  border: none;
  color: white;
}

            .prev {
            left: 20px;
            }

            .next {
            right: 20px;
            }

            .prev:hover, .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
            }
			/* Mobile-first gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item p {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  width: 100%;
  padding: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

/* Tablet */
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}