
    /* ===== GALLERY PAGE STYLES ===== */
    body {
      background: #000000;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
    }

    /* ===== GALLERY SECTION ===== */
    .gallery-section {
      position: relative;
      padding: 4rem 0;
      background: #000000;
      overflow: hidden;
      margin-top:80px;
    }

    .gallery-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
      z-index: 0;
    }

    .gallery-section .container {
      position: relative;
      z-index: 10;
    }

    /* MASONRY GRID */
    .gallery-grid {
      column-count: 4;
      column-gap: 20px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 20px;
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 15px;
      background: #111;
      transition: all 0.4s ease;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Apply overlay ONLY to normal images */
.gallery-item:not(.youtube-video)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:not(.youtube-video):hover::before {
  opacity: 1;
}
    /* Zoom/Play icon */
    .gallery-item-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff6b35;
      font-size: 1.5rem;
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 2;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 107, 53, 0.3);
    }

    .gallery-item:hover .gallery-item-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    
    /* Lightbox Popup */
    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .lightbox-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox-container {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      transform: scale(0.95);
      transition: transform 0.3s ease;
    }

    .lightbox-overlay.active .lightbox-container {
      transform: scale(1);
    }

    .lightbox-image-wrapper {
      max-width: 90vw;
      max-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-container img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .lightbox-container iframe {
      width: 800px;
      height: 450px;
      border: none;
      border-radius: 10px;
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: transparent;
      border: none;
      color: white;
      font-size: 30px;
      cursor: pointer;
      transition: color 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .lightbox-close:hover {
      color: #ff6b35;
    }

    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
      backdrop-filter: blur(5px);
    }

    .lightbox-prev {
      left: -70px;
    }

    .lightbox-next {
      right: -70px;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: #ff6b35;
      color: #000000;
    }

    .lightbox-footer {
      position: absolute;
      bottom: -40px;
      left: 0;
      right: 0;
      text-align: center;
    }

    .lightbox-counter {
      color: #b0b0b0;
      font-size: 0.9rem;
      font-family: 'Montserrat', sans-serif;
      display: inline-block;
      padding: 5px 15px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 20px;
      backdrop-filter: blur(5px);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .gallery-grid { column-count: 3; }
    }

    @media (max-width: 992px) {
      .gallery-grid { column-count: 2; }
      .lightbox-prev { left: -50px; }
      .lightbox-next { right: -50px; }
      .lightbox-container iframe { width: 100%; height: auto; min-height: 300px; }
    }

    @media (max-width: 768px) {
      .gallery-section { padding: 4rem 0; }
      .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 20px; }
      .lightbox-prev { left: -40px; }
      .lightbox-next { right: -40px; }
    }

    @media (max-width: 576px) {
      .gallery-grid { column-count: 1; }
      .lightbox-prev { left: 15px; top: auto; bottom: 20px; transform: none; }
      .lightbox-next { right: 15px; top: auto; bottom: 20px; transform: none; }
      .lightbox-close { top: 15px; right: 15px; }
      .lightbox-footer { bottom: -35px; }
      .lightbox-container iframe { min-height: 250px; }
    }
    /* YouTube Play Button - Always Visible Red Play Button */
.gallery-item.youtube-video {
  position: relative;
}

/* Red circle */
/* Red YouTube button (rounded rectangle) */
/* Red button */
.gallery-item.youtube-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 60px;
  background: #ff0000;
  border-radius: 20px;
  z-index: 10;
}

/* White triangle (ALWAYS visible) */
.gallery-item.youtube-video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 11;
}

