* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  /* Gallery Animation Styles */
  .gallery-row {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease-out;
  }
  
  .gallery-row.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Individual image animation with staggered delay */
  .gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease-out;
  }
  
  .gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Staggered animation delays for images within each row */
  .gallery-item:nth-child(1).animate {
    transition-delay: 0.1s;
  }
  
  .gallery-item:nth-child(2).animate {
    transition-delay: 0.2s;
  }
  
  .gallery-item:nth-child(3).animate {
    transition-delay: 0.3s;
  }
  
  .gallery-item:nth-child(4).animate {
    transition-delay: 0.4s;
  }
  
  /* Responsive animation adjustments */
  @media (max-width: 768px) {
    .gallery-row {
      transform: translateY(30px);
    }
    
    .gallery-item {
      transform: translateY(20px);
      transition-duration: 0.25s;
    }
  }

 
    .lb-data .lb-caption {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  .lb-data .lb-number {
    font-size: 12px;
    color: #ccc;
    padding: 5px 0;
  }
  .lb-nav a.lb-prev,
  .lb-nav a.lb-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  .lb-nav a.lb-prev:hover,
  .lb-nav a.lb-next:hover {
    opacity: 1;
  }

 
  .lb-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }

  .lb-close:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.1) !important;
  }

  .lb-close::before {
    content: "×" !important;
    color: white !important;
    font-size: 24px !important;
    font-weight: bold !important;
    line-height: 1 !important;
  }

 
  @media (max-width: 1023px) {
    .lb-outerContainer {
      margin-top: 161px !important;
    }
  }

 
  