.testimonialdiv {
    background: #f9f9ff;
    border-radius: 20px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .testimonial-wrapper {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .testimonial-image-area {
    flex: 0 0 30%;
    background: linear-gradient(to right, #2645de, #9703fd);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-radius: 100%;
  }
  
  .testimonial-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
  
  .testimonial-carousel-area {
    flex: 1;
    max-width: 65%;
  }
  
  .testimonial-carousel .swiper-wrapper {
    display: flex;
  }
  
  .swiper-slide {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .testimonial-rating i {
    color: #1351d8;
    font-size: 20px;
    margin-right: 4px;
  }
  
  .testimonial-title {
    font-size: 20px;
    color: #1351d8;
    margin: 10px 0 5px;
  }
  
  .testimonial-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 15px;
  }
  
  .testimonial-author i {
    font-size: 30px;
    color: #1351d8;
    margin-right: 10px;
  }
  
  .author-info h4 {
    font-size: 18px;
    margin: 0;
    color: #1a1a1a;
  }
  
  .author-info span {
    font-size: 14px;
    color: #999;
  }
  
  /* Responsive for Mobile */
  @media (max-width: 768px) {
    .testimonial-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .testimonial-image-area {
      border-radius: 50%;
      padding: 20px;
      flex: unset;
      width: 200px;
      margin: 0 auto;
    }
  
    .testimonial-carousel-area {
      max-width: 100%;
    }
  
    .testimonial-title {
      font-size: 18px;
    }
  
    .testimonial-text {
      font-size: 15px;
    }
  
    .testimonial-author {
      flex-direction: column;
      align-items: center;
    }
  
    .testimonial-author i {
      margin-bottom: 10px;
    }
  }
  