:root {
  --theme: #fc5a11;
  --theme2: #ffe175;
}

.header-3 .mega-menu-wrapper .header-main .main-menu ul li a,
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a i {
  color: rgb(255, 255, 255) !important;
}
/* Testimonial */
.testimonial-section {
  padding: 80px 0;
  background: #f7f9fc;
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-desc {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.185);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 200px;
  overflow-y: auto;
}
.testimonial-card > div:first-child {
  width: 20%;
}
.testimonial-card > div:last-child {
  width: 75%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.client-img {
  max-width: 100%;
  height: 180px;
  display: block;

  margin: auto;
  /* border-radius: 50%; */
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client-name {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.client-company {
  font-size: 14px;
  color: #777;
}
@media (max-width: 575px) {
  .testimonial-section {
    padding: 40px 0;
  }
  .testimonial-card {
    display: block;
    height: 400px;
    padding: 10px 12px;
  }
  .testimonial-card > div:first-child {
    width: 60%;
  }
  .testimonial-card > div:last-child {
    width: 100%;
  }
     
}
