.testimonios-section {
  background: #f8f9fa;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonios-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card a {
  color: #D98324;
  font-weight: 500;
  text-decoration: none;
}

.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #3F6416;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

.btn-link{
    color :#363D57!important;
}

/* Tablet */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}