
    .slick-slide {
      margin: 0 10px;

    }

    .slick-track {
      display: flex !important;
      justify-content: center;
      align-items: center;
    }

    section {
      /* padding: 0 100px;
      padding-top: 50px; */
    }

    .slick-prev:before,
    .slick-next:before {
      color: #000 !important;
    }

    .slick-dots{
        position: unset !important;
    }

    /* Centering each slick slide */
    .slick-slide {
      display: flex !important;
      justify-content: center;
      align-items: center;
      height: 100%;
      box-sizing: border-box;
    }

    /* Ensure images are responsive and centered */
    .multiple-items img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: auto;
      max-width: 100%;
      height: auto;
    }

    /* Make the slick-track flex for vertical alignment */
    .slick-track {
      display: flex !important;
      align-items: center;
    }

    .carousel-inner {
      cursor: pointer;
    }

    /* Lightbox Modal Styling */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    .lightbox.show {
      visibility: visible;
      opacity: 1;
      display: flex;
    }

    .lightbox-content {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
      position: relative;
    }

    /* Buttons for next, prev, and close */
    .close,
    .next,
    .prev {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 36px;
      font-weight: bold;
      color: white;
      cursor: pointer;
      z-index: 2;
    }

    .close {
      top: 10px;
      right: 25px;
    }

    .next {
      right: 10px;
    }

    .prev {
      left: 10px;
    }

    /* Hover effect for buttons */
    .close:hover,
    .next:hover,
    .prev:hover {
      color: #ccc;
    }

    /* Slick Slider Styling */
    .your-slider img {
      width: 100%;
      height: auto;
    }

    

    /* Make slider images responsive on mobile */
    @media screen and (max-width: 768px) {
      .multiple-items img {
        width: 90%;
        /* Make image slightly wider on mobile */
        height: auto;
        /* Maintain aspect ratio */
        object-fit: contain;
        /* Show the full image */
        margin: 0 auto;
        /* Center the image */
      }
    }
