.testimonials-section {
    font-family: Arial, sans-serif;
    background-color: white;
    padding: 60px 20px;
  }

  .testimonials-section h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
  }

  .testimonials-section .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonials-section .card {
    background-color: #000;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
  }

  .testimonials-section .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .testimonials-section .card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid red; /* <-- Add this line */
  }

  .testimonials-section .card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
  }

  .testimonials-section .stars {
    color: red;
    font-size: 20px;
  }

  .testimonials-section .quote-mark {
    color: red;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .testimonials-section .card p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonials-section .card .designation {
    color: #ccc;
    font-size: 13px;
    margin-top: 10px;
  }

  @media (max-width: 600px) {
    .testimonials-section .card {
      text-align: center;
    }

    .testimonials-section .card-header {
      flex-direction: column;
      align-items: center;
    }

    .testimonials-section .card img {
      margin-bottom: 8px;
    }
  }

 .testimonial-text {
  position: relative;
 
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-text {
  position: relative;
 
  font-size: 14px;
  line-height: 1.6;
}

.testimonials-section .quote-icon {
  font-size: 16px;
  color: red;
  margin-right: 8px;
  vertical-align: top;
}

  