
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Poppins', sans-serif;
    }
    .slider-container {
      width: 100%;
      margin: 40px auto;
      padding: 30px 0;
      background: #fff;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
    }
    .slider-wrapper {
      position: relative;
      width: 100%;
    }
    .slider-inner {
      position: relative;
      width: 100%;
      transition: height 0.4s ease;
    }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 0;
      pointer-events: none;
    }
    .slide.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
      position: relative;
    }
    .image-container {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 10px;
    }
    .slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hover-zone {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
    }
    .image-container:hover .hover-zone {
      opacity: 1;
    }
    .hover-zone.left {
      left: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    }
    .hover-zone.right {
      right: 0;
      background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
    }
    .hover-zone i {
      color: white;
      font-size: 2em;
      cursor: pointer;
    }
    .magnify-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.3em;
      color: white;
      background: rgba(0, 0, 0, 0.6);
      padding: 8px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 3;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .image-container:hover .magnify-icon {
      opacity: 1;
    }
    .caption {
      text-align: left;
      margin-top: 15px;
      color: #333;
      padding: 0;
    }
    .bottom-navigation {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }
    .bottom-nav-button {
      background-color: #1B75BC;
      color: white;
      border: none;
      padding: 8px 15px;
      margin: 0 5px;
      border-radius: 5px;
      cursor: pointer;
      outline: none;
    }
    .bottom-counter {
      color: #555;
      margin: 0 10px;
      min-width: 60px;
      text-align: center;
    }
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }
    .lightbox.show {
      display: flex;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    }
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 2em;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
    }