    .testimonial-section * {
      font-family: "Inter", Sans-serif !important;
    }


.testimonial-section .section-heading {
      text-align: center;
      padding: 0 20px 40px;
    }
 
    .testimonial-section .section-heading h2 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
    }
 
    .testimonial-section .section-heading p {
      font-size: 18px;
      font-weight: 400;
      max-width: 600px;
      margin: auto;
      color: #ccc;
    }
 
    .testimonial-section .slider-wrapper {
      overflow: hidden;
      max-width: 100%;
      position: relative;
      cursor: grab;
    }
 
    .testimonial-section .slider-track {
      display: flex;
      gap: 24px;
      animation: scroll-left linear infinite;
      animation-play-state: running;
    }
 
    .slider-wrapper.dragging {
      cursor: grabbing;
    }
 
 
    .testimonial-section .slide {
      position: relative;
      margin: 0 0;
      overflow: hidden;
      flex-shrink: 0;
      cursor: pointer;
      transition: transform 0.5s ease;
      border: 1px solid #FFFFFF33;
      width: 380px;
      height: 500px;
      border-radius: 12px;
      border-width: 1px;
    }
 
    .testimonial-section .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* filter: grayscale(100%); */
      transition: transform 0.4s ease;
      /* filter: blur(3px) brightness(0.8) saturate(1.2) sepia(0.3); */
    }
     
.testimonial-section .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    height: 304px;
    display: flex;
    backdrop-filter: blur(1.1px);
    -webkit-backdrop-filter: blur(1.1px);
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,     /* Light blur top */
    rgba(0, 0, 0, 0.1) 25%,    
    rgba(0, 0, 0, 0.25) 45%,    
    rgba(0, 0, 0, 0.5) 60%,    
    rgba(0, 0, 0, 0.8) 85%,     /* Heavy blur bottom */
    rgba(0, 0, 0, 0.9) 100%
  );
    justify-content: start;
    align-items: start;
    padding: 60px 24px 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    text-align: left;
    pointer-events: none;
    overflow: hidden;
}
 
 
    .testimonial-section .slide:hover .overlay {
      opacity: 1;
    }
 
    .testimonial-section .quote {
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
 
    .testimonial-section .slide:hover .quote {
      opacity: 1;
      transform: translateY(0);
    }
 
    .testimonial-section .quote-icon {
      position: absolute;
      top: 20px;
      left: 10px;
      font-size: 30px;
      line-height: 1;
      font-style: normal;
      color: #ccc;
    }
 
    .testimonial-section .quote-icon img {
      width: 30px;
    }
 
    .testimonial-section .person {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 3;
    }
 
    .testimonial-section .name {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: #fff;
    margin-bottom: 8px;
    } 
 
    .testimonial-section .role {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
 
  .slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  .slider-track {
    display: flex;
    animation: scrollSlider linear infinite;
    will-change: transform;
  }
  @keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
 
    @media (max-width: 768px) {
      .testimonial-section .slide {
    width: 343px;
    height: auto;
}
	  
	  .testimonial-section .quote {
    font-size: 16px;
    opacity: 1 !important;
    transform: none !important;
}
	
	.testimonial-section .name {
    font-size: 18px;
}

.testimonial-section .overlay {
    height: 264px;
	opacity: 1 !important;
}
	}
/* 08-9-2025*/

.slider-track {
    display: flex;
    animation: scroll-left linear infinite;
    animation-play-state: running;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Half, because we duplicated content */
    }
}

/* 08-9-2025*/

.mobile-arrows {
      display: none;
    }
	
	@media (max-width: 768px) {
     /* .testimonial-section .slider-wrapper {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
      }
	  */
	  
/*
      .testimonial-section .slider-track {
    animation: none !important;
    gap: 0;
    transform: none !important;
}
*/
      .testimonial-section .slide {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
        margin: 0;
      }

      .mobile-arrows {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
      }

      .mobile-arrows button {
    background: rgba(255, 255, 255, 0.10);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.mobile-arrows button:hover {
	background: #F0374B !important;
}

.mobile-arrows button svg {
    width: 24px !important;
    height: 24px !important;
}

      .mobile-arrows button:active {
        background: #ddd;
      }
    }