/* Original Desktop Styles */
.testimonial-sec {
  background-image: url("../../../../public/images/testimonials-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 150px;
  position: relative;
  z-index: 1;
}

.testimonial-sec::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url("../../../../public/images/windmill.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
  width: 571px;
  height: 667px;
}

.testimonial-content {
  text-align: center;
}

.testimonials-trust-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-trust-box p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 50px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--green-color);
  margin-bottom: 0;
}

.testimonials-trust-box span {
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  background: linear-gradient(180deg, #565e15 0%, #868d30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-content h2 {
  font-family: var(--font-dm-display);
  font-weight: 600;
  font-size: 60px;
  background: linear-gradient(180deg, #565e15 0%, #868d30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 35px;
}

.testimonials-trust-box-content {
  text-align: left;
}

.testimonials-box-client {
  display: flex;
  align-items: center;
  gap: 30px;
}

.testimonials-box-client p {
  margin-bottom: 3px;
  color: #072010;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonials-box p.para {
  color: #272727;
}

.testimonials-box-main {
  margin-top: 70px;
}

.testimonials-box h5 {
  margin-bottom: 22px;
  color: var(--green-color);
  font-weight: 600;
}

.testimonials-box-client-content span {
  font-size: 16px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .testimonial-sec {
    padding: 60px 0 120px;
  }

  .testimonial-sec::before {
    width: 400px;
    height: 467px;
  }

  .testimonials-trust-box p {
    font-size: 42px;
    line-height: 46px;
  }

  .testimonial-content h2 {
    font-size: 50px;
  }

  .testimonials-box-main {
    margin-top: 50px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .testimonial-sec {
    padding: 40px 0 80px;
  }

  .testimonial-sec::before {
    width: 250px;
    height: 292px;
    bottom: -20px;
    right: -30px;
  }

  .testimonials-trust-box {
    flex-direction: column;
    gap: 10px;
  }

  .testimonials-trust-box p {
    font-size: 32px;
    line-height: 36px;
  }

  .testimonials-trust-box span {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .testimonials-trust-box-content {
    text-align: center;
  }

  .testimonials-box-client {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .testimonials-box-client p {
    font-size: 16px;
    justify-content: center;
  }

  .testimonials-box-main {
    margin-top: 40px;
  }

  .testimonials-box h5 {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .testimonials-box p.para {
    font-size: 14px;
    text-align: center;
  }

  .testimonials-box-client-content span {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .testimonial-sec {
    padding: 30px 0 60px;
  }

  .testimonial-sec::before {
    width: 180px;
    height: 210px;
    bottom: -15px;
    right: -20px;
  }

  .testimonials-trust-box p {
    font-size: 28px;
    line-height: 32px;
  }

  .testimonials-trust-box span {
    font-size: 14px;
    line-height: 20px;
  }

  .testimonial-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .testimonials-box-client {
    gap: 12px;
  }

  .testimonials-box-client p {
    font-size: 14px;
  }

  .testimonials-box-main {
    margin-top: 30px;
  }

  .testimonials-box h5 {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .testimonials-box p.para {
    font-size: 13px;
  }

  .testimonials-box-client-content span {
    font-size: 12px;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .testimonial-sec {
    padding: 25px 0 50px;
  }

  .testimonial-sec::before {
    display: none;
  }

  .testimonials-trust-box p {
    font-size: 24px;
    line-height: 28px;
  }

  .testimonials-trust-box span {
    font-size: 12px;
    line-height: 18px;
  }

  .testimonial-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .testimonials-box-client p {
    font-size: 13px;
  }

  .testimonials-box-main {
    margin-top: 25px;
  }

  .testimonials-box h5 {
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
  }

  .testimonials-box p.para {
    font-size: 12px;
  }

  .testimonials-box-client-content span {
    font-size: 11px;
  }
}