/**
 * About2 Testimonial Slider - "Hear What They Say About Us"
 * Pixel-perfect design matching provided image
 */

.about2-testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.about2-testimonial-title {
  max-width: 688px;
  color: #350f6b;
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -1.6px;
  margin: 0;
  text-transform: uppercase;
}

.about2-testimonial-nav {
  display: flex;
  align-self: end;
  gap: 12px;
}

.about2-prev,
.about2-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about2-prev {
  background: #350f6b;
  color: #ffffff;
}

.about2-next {
  background: #ff6b35;
  color: #ffffff;
}

.about2-prev:hover {
  background: #2a0c56;
  transform: translateX(-3px);
}

.about2-next:hover {
  background: #e55a28;
  transform: translateX(3px);
}

.about2-testimonial-swiper {
  overflow: hidden;
}

.about2-testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 114px;
  transition: all 0.3s ease;
}

/* .about2-testimonial-card:hover {
  border-color: #a8d0ff;
  box-shadow: 0 8px 24px rgba(53, 15, 107, 0.1);
  transform: translateY(-4px);
} */

.about2-client-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about2-client-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.about2-client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d1e5ff;
}

.about2-client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #350f6b;
  margin: 0;
}

.about2-client-position {
  font-size: 14px;
  color: #64748b;
  margin: 4px 0 0 0;
}

.about2-company-logo img {
  max-width: 120px;
  height: auto;
}

.about2-testimonial-content p {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.2;
  color: #350f6b;
  margin: 0;
}

/* Card Layout Reverse */
.about2-testimonial-card.about2-card-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.about2-testimonial-card.about2-card-reverse .about2-client-header {
  margin-bottom: 0;
  /* margin-top: 24px; */
  padding-bottom: 0;
  /* padding-top: 24px; */
  border-bottom: none;
  /* border-top: 1px solid #e8f2ff; */
}

/* Pagination */
.about2-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 8px; */
  margin-top: 20px;
}

.about2-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1e5ff;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about2-pagination .swiper-pagination-bullet-active {
  background: #ff6b35;
  /* width: 24px;
  border-radius: 5px; */
}

@media (max-width: 1200px) {
  .about2-testimonial-title {
    max-width: 508px;
    font-size: 64px;
  }
}

@media (max-width: 1024px) {
  .about2-testimonial-title {
    font-size: 55px;
    max-width: 500px;
  }
  .about2-prev,
  .about2-next {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .about2-testimonial-header {
    /* flex-direction: column; */
    gap: 24px;
  }

  .about2-testimonial-title {
    font-size: 48px;
    max-width: 483px;
  }
  .about2-prev,
  .about2-next {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .about2-testimonial-section {
    /* padding-left: 15px;
    padding-right: 15px; */
  }

  .about2-testimonial-card {
    padding: 20px;
    border-radius: 20px;
    gap: 90px;
  }

  .about2-testimonial-header {
    margin-bottom: 40px;
    gap: 16px;
  }

  .about2-client-avatar {
    width: 45px;
    height: 45px;
  }

  .about2-client-name {
    font-size: 20px;
  }

  .about2-client-position {
    margin: 0px;
    font-size: 12px;
  }

  .about2-testimonial-title {
    font-size: 28px;
    max-width: 249px;
    letter-spacing: 0.8px;
  }

  .about2-testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about2-company-logo img {
    max-width: 80px;
  }

  .about2-prev,
  .about2-next {
    width: 33px;
    height: 33px;
  }

  .about2-prev svg,
  .about2-next svg {
    width: 10px;
    height: 15px;
  }

  .about2-pagination {
    margin-top: 15px;
  }
}
