  /* Floating slider popup at bottom */
  .slider-popup {
    position: fixed;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 9999999;
    overflow: hidden;
    transition: bottom 0.5s ease-in-out;
    padding:1px;
  }

  .slider-popup.show {
    bottom: 20px;
  }

  .slider-popup.hide {
    bottom: -400px;
  }

  .slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  }

  .slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    text-align: center;
  }

  .customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .testimonial-video {
    width: 100%;
    max-height: 250px;
    margin-top: 10px;
    border-radius: 10px;
    background: #000;
  }

  .slide h4 {
    margin: 10px 0 5px;
  }

  .slide p {
    margin: 0 0 10px;
    font-style: italic;
    color: #555;
  }

  /* Navigation Arrows */
 
  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }

  /* Dots */
  .dots {
    text-align: center;
    margin: 10px 0 15px 0;
  }

  .dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
  }

  .dot.active {
    background-color: #ff5722;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
    color: #333;
    background: none;
    z-index: 1000;
  }

  /* Minimized bar */
  .minimized-bar {
    position: fixed;
    bottom: -60px; /* start off-screen */
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #ff5722;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: bottom 0.5s ease-in-out;
    z-index: 998;
    font-weight: bold;
    font-size: 16px;
  }

  .minimized-bar.show {
    bottom: 20px; /* slide into view */
  }

  /* Icon inside minimized bar */
  .minimized-bar i {
    font-style: normal; /* can use emoji or font icon */
    font-size: 20px;
  }

  @media(max-width:600px){
    .testimonial-video {
      max-height: 180px;
    }
    .arrow {
      font-size: 20px;
    }
    .close-btn {
      font-size: 20px;
      padding: 2px 6px;
    }
    .minimized-bar {
      width: 180px;
      font-size: 14px;
      padding: 8px 10px;
    }
    .minimized-bar i {
      font-size: 18px;
    }
  }