@charset "UTF-8";

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.testimonials .testimonial-item {
  position: relative;
}

.testimonials .testimonial-item.featured .testimonial-card {
  background-color:#1bbc9b;
  transform: scale(1.05);
}



.testimonials .testimonial-item.featured .testimonial-card .company-logo i {
  color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-body p,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-body .quote-icon {
  color: var(--contrast-color);
}

.testimonials .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.testimonials .testimonial-card:after
{
  border-top: 15px solid #1bbc9b !important;
    border-left: 10px solid transparent;
    border-top: 15px solid #f8f8f8;
    border-right: 10px solid transparent;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 50px;
    bottom: -12px;
    -webkit-transition: all 0.75s 
ease-out;
    -moz-transition: all 0.75s ease-out;
    -ms-transition: all 0.75s ease-out;
    -o-transition: all 0.75s ease-out;
    transition: all 0.75s 
ease-out;
}

.testimonials .testimonial-card:hover:not(.featured .testimonial-card) {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 15px ;
}


.testimonials .company-logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.testimonials .testimonial-body {
  position: relative;
}

.testimonials .testimonial-body .quote-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
  display: block;
}

.testimonials .testimonial-body p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h3, .testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h4 {
    color: var(--contrast-color);
}
.testimonials .testimonial-meta h3 {
    font-size: 1.25rem;
    margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  .testimonials .testimonial-grid {
    gap: 1.5rem;
  }

  .testimonials .testimonial-grid::before {
    width: 150px;
    height: 150px;
  }

  .testimonials .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-meta h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials .testimonial-item.featured .testimonial-card {
    transform: scale(1);
  }

  .testimonials .testimonial-header {
    gap: 1rem;
  }

  .testimonials .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonials .company-logo i {
    font-size: 1.25rem;
  }
}

.pagination .page-item{
    font-weight:500;
    color:#000;
}

.pagination .page-item a{
    font-weight:500;
    color:#dd962e;
}