.testimonial-area {
    padding: 60px 20px;
    text-align: center;
    margin-top: -100px;
  }
  
  .testimonial-heading {
    margin-bottom: 40px;
  }
  
  .testimonial-heading h2 {
    font-size: 50px;
   font-weight: 100;
    color: #002b5c;
    margin-top: 50px;
  }
  
  .testimonial-heading p {
    font-size: 16px;
    color: #555;
    margin-bottom: 70px;
  }
  
  .testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 5px; 
    flex-wrap: wrap;
    
  }
  .testimonial-cards p{
    text-align:left ;
    font-size: 17px;
    margin-top: 40px;
  }
  .testimonial-card {
    background: #e9f5ff;
    padding: 30px;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    height: auto;      
  }
  
  .testimonial-stars {
    font-size: 30px;
    color: #005a8d;
    margin-top: 30px;
    text-align:left ;
  }
  
  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
  }
  
  .user-img-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid gold;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  
  .user-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    
  }
  /* السكشن الثامن */
@media (max-width: 768px) {
    .testimonial-area {
      padding: 40px 15px;
    }
  
    .testimonial-heading h2 {
      font-size: 28px;
      margin-top: 20px;
    }
  
    .testimonial-heading p {
      font-size: 14px;
      margin-bottom: 30px;
    }
  
    .testimonial-cards {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .testimonial-card {
      width: 100%;
      padding: 25px 20px;
    }
  
    .testimonial-cards p {
      font-size: 15px;
      margin-top: 20px;
    }
  
    .testimonial-stars {
      font-size: 22px;
      margin-top: 20px;
    }
  
    .testimonial-user {
      flex-direction: row;
      margin-top: 20px;
    }
  
    .user-img-wrap {
      width: 45px;
      height: 45px;
    }
  }