.testimonials-section {
  .container {
    max-width: 1400px;
  }

  .testimonials-title {
    margin-bottom: 50px;
  }

  .testimonial-card {
    background: transparent;
    border-radius: 6px;
    border: 3px solid #ef32af;
    box-shadow: 0 29px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    position: relative;
    height: 450px;
    min-height: 400px;

    .testimonial-quote {
      color: white;
      font-size: 18px;
      line-height: 28px;
    }

    .testimonial-author {
      color: white;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .testimonial-company {
      font-size: 14px;
      color: white;
      font-weight: 700;
    }
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      background: var(--purple);
      transform: scale(1.1);
    }

    &:disabled {
      background: var(--light-gray);
      color: var(--dark-gray);
      cursor: not-allowed;
      transform: none;
    }
  }

  .testimonial-slider {
    .slick-slide {
      outline: none;

      img {
        display: inline;
        height: auto;
        width: auto;
      }
    }

    .slick-track {
      display: flex;
      align-items: stretch;
    }
  }

  @media (max-width: 991px) {
    .testimonials-title {
      font-size: 38px;
      line-height: 40px;
    }

    .testimonial-card {
      height: 340px;
      min-height: 300px;
      padding: 30px 20px;

      .testimonial-quote {
        font-size: 16px;
      }
    }
  }
}
