.slider-wrapper {

    align-items: flex-start;
    min-height: 230px;
    max-height: 15vh;
    margin-top: 30px;
    margin-bottom: 10px;
	border-radius: 26px;
  }
  
   @media only screen and (max-width: 640px) {
   .slider-wrapper {
    min-height: 230px;
    max-height: 50vh;
   }
   }
  
  .reviews-container {

    background: rgba(180, 180, 180, 0.2);
    
    position: relative;
    width: 90%;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    touch-action: pan-y;
    border-radius: 26px;
    padding: 20px;

    
  }
  
  @media only screen and (max-width: 640px) {
  .reviews-container {
  width: 85%;
  }
  }

  .slides-wrapper {
    position: relative;



  }

  .fade-div {
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    color: black;
    font-size: 25px !important;
    position: absolute;
    top: 0;
    left: 0;
    

    
    
  }

  .fade-div.active {
    opacity: 1;
    position: relative; /* active slide adjusts container height */
  }

  /* Move dots on top */
  .dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 0px;
    position: relative;
    z-index: 10; /* Ensure dots are clickable on top */
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(180, 50, 50, 0.2);
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot.active {
    background: rgba(180, 50, 50, 0.8);;
  }
