/* Gallery Section
.gallery {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ff5733;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  justify-content: center;
}

.gallery-grid img {
  width: 260px;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
}

.gallery-grid img:hover {
  transform: scale(1.05) rotateY(3deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

 Lightbox 
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.lightbox img:hover {
  transform: scale(1.02);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 1001;
}
.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.lightbox-btn.prev {
  left: 40px;
}
.lightbox-btn.next {
  right: 40px;
}


@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2.2rem;
  }
  .gallery-grid img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .gallery-grid img {
    height: 150px;
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
} */

/* ------------------------------
   Gallery Section
------------------------------ */
.gallery {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ff5733;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 15px;
}

.gallery-grid img {
  width: 242px;
  height: 242px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
}

.gallery-grid img:hover {
  transform: scale(1.05) rotateY(3deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ------------------------------
   Lightbox
------------------------------ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.lightbox img:hover {
  transform: scale(1.02);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 1001;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-btn.prev {
  left: 20px;
}

.lightbox-btn.next {
  right: 20px;
}

/* ------------------------------
   Responsive Gallery
------------------------------ */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
   .gallery-grid img {
    height: 228px;
    width: 305px;
}}