/* Image Slider */
.custom-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
  }
  
  .custom-slides {
    display: flex;
    transition: transform 1s ease-in-out;
  }
  
  .custom-slide {
    min-width: 100%;
    overflow: hidden;
  }
  
  .custom-slide img {
    width: 100%;
    height: auto;
  }
  
  .custom-prev, .custom-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: rgba(129, 129, 129, 0.5);
    color: white;
    z-index: 1000;
  }
  
  .custom-prev {
    left: 0;
  }
  
  .custom-next {
    right: 0;
  }
  
  
  
  
    .gallery {
      display: flex;
      flex-wrap: wrap;
    }
    
    .gallery-item {
      cursor: pointer;
    }
    
    .popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 9999;
    }
    
    .popup-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    .popup-content img {
      max-width: 90%;
      max-height: 90%;
    }
    
    .close {
      position: absolute;
      top: 10px;
      right: 10px;
      color: white;
      font-size: 30px;
      cursor: pointer;
    }
  
    @media (max-width: 575px) {
      .popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
      }
      
      .popup-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      
      .popup-content img {
        max-width: 450px;
        max-height: 100%;
      }
      
      .close {
        position: absolute;
        top: -50px;
        right: 20px;
        color: white;
        font-size: 30px;
        cursor: pointer;
      }
    }