.testimonial-wrapper {
    max-width: 100%;
    margin: auto;
    position: relative;
  }
  
  .testimonial-slider {
    margin-bottom: 60px;
  }
  .testimonial-slider .slick-track {
    display: flex !important;
  }
  .testimonial-slider .slick-slide {
    display: flex;
    height: auto;
  }
  
  .testimonial-card {
    width: 504px;
    height: 313px;
    padding: 30px;
    border-radius: 0px;
    margin: 0 15px;
    color: #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-color: transparent;
    border: 1px solid transparent;
    overflow: hidden;
    background-clip: padding-box;
    z-index: 1;
    background: radial-gradient(
      circle at 8% 0%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0) 100%
  );
  }
  
  .testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background:
      radial-gradient(94.31% 66.31% at -53.25% 10.23%, #ffffff 0%, rgba(255, 255, 255, 0.06) 100%),
      radial-gradient(86.84% 30.42% at 129.28% 66.93%, #e92a6e 0%, rgba(238, 45, 125, 0) 100%),
      radial-gradient(41.06% 41.06% at 51.09% -22.85%, #000000 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
  }
  
  .testimonial-card:hover {
    box-shadow: 0 0 30px rgba(255, 0, 100, 0.1);
  }
  
  .inner-testimonial-card {
    display: flex;
    gap: 15px;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: auto;
  }
  
  .testimonial-quote {
    width: 15px;
    height: 15px;
    margin-bottom: 10px;
  }
  
  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #bbb;
  }
  
  .testimonial-author {
    margin-top: 20px;
  }
  
  .testimonial-author strong {
    font-size: 16px;
    color: #fff;
  }
  
  .testimonial-author span {
    font-size: 14px;
    color: #ccc;
  }
  
  .slick-dots,
  .slick-prev,
  .slick-next {
    bottom: -65px;
  }
  
  .slick-dots {
    text-align: center;
    position: absolute;
    width: 100%;
  }
  
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 100%;
    transform: translateY(0);
    background: #fff !important;
    color: #000;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 5;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 15px 9px !important;
  }
    
  .slick-prev:before,
  .slick-next:before {
    content: none !important;
  }
  
  .slick-dots li {
    margin: 0 4px;
  }
  
  .slick-dots li button {
    padding: 0;
  }
  
  .slick-dots li button:before {
    content: '';
    display: block;
    width: 6px;
    height: 4px;
    background-color: #aaa;
    border-radius: 2px;
    opacity: 0.4;
    transition: all 0.3s ease;
  }
  
  .slick-dots li.slick-active button:before {
    width: 24px;
    background-color: #fff;
    opacity: 1;
  }

  .slick-prev, .slick-next{
    top: 110%;
    border: none !important;
    padding: 14px 20px 14px 20px !important;
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      margin: 0 10px;
    }
  
    .slick-prev,
    .slick-next {
      display: none !important;
    }
  }
  