.client-testimonials {
    /* background: linear-gradient(135deg, #6a11cb, #2575fc); */
    padding: 40px 20px;
    color: white;
    text-align: center;
  }

  .section-heading{
    color: black;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .testimonial-card {
    background:#310b46;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
  }

  .client-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 15px;
  }

  .testimonial-card h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  .client-role {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 10px;
  }

  .stars {
    font-size: 1.1rem;
    color: gold;
    margin-bottom: 15px;
  }

  .client-message {
    font-size: 0.95rem;
    color: #f0f0f0;
  }

  .section-heading {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .section-subheading {
    font-size: 1rem;
    color:black;
    margin-bottom: 30px;
  }