/* ===== GALLERY HERO ===== */
.gallery-banner {
  background: url('../img/g5.png') center/cover no-repeat;
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.gallery-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #00eaff;
  text-shadow: 0 0 20px #00eaff, 0 0 40px #007bff;
}

.banner-content p {
  color: #b8c5d1;
  margin-top: 10px;
}

/* ===== GALLERY GRID ===== */
.gallery-section {
  background: #02080d;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.gallery-section h2 {
  font-size: 2rem;
  color: #00eaff;
  text-shadow: 0 0 20px #00eaff;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* ===== CTA SECTION (Match Services Page Style) ===== */
.cta-section {
  background: linear-gradient(90deg, #007bff, #00eaff);
  text-align: center;
  color: #000;
  padding: 80px 20px;
  position: relative;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

/* CTA Button same as services page */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.cta-btn:hover {
  background-color: #fff;
  color: #007bff;
  transform: scale(1.05);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}


/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

.lightbox .close-lightbox,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #00eaff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.lightbox .close-lightbox {
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}

/* ===== FOOTER FIX ===== */
footer {
  background: #050c11;
  color: #ccc;
  text-align: center;
  padding: 40px 20px 10px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-info p {
  margin: 5px 0;
  color: #b8c5d1;
}

.footer-social a {
  color: #00eaff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #0d1b21;
  margin-top: 15px;
  padding-top: 15px;
  color: #888;
  font-size: 0.9rem;
}
/* ===== LIGHTBOX (With Fade Animation) ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox.show img {
  opacity: 1;
  transform: scale(1);
}

/* Controls */
.lightbox .close-lightbox,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #00eaff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transition: color 0.3s ease;
}

.lightbox .close-lightbox:hover,
.lightbox .prev:hover,
.lightbox .next:hover {
  color: #fff;
}

.lightbox .close-lightbox {
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}
