
.testimonial-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
}


.testimonial-slide {
  width: 100%;
  position: relative;
}


.testimonial-slide .testimonial-inner {
  display: flex;
  overflow: hidden;
}

.testimonial-slide .testimonial-item {
  flex: 0 0 100%;
  padding: 1rem;
  background: transparent;
  text-align: center;
  transition: transform 0.6s ease-in-out;
}

.testimonial-slide .testimonial-caption {
  position: static;
  color: #000;
  padding: 0;
  font-size: 1rem;
  background: transparent;
  margin-bottom: 0.5rem;
}

.testimonial-slide .testimonial-caption p.lead {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.testimonial-slide .testimonial-caption p strong {
  font-size: 0.85rem;
}


.testimonial-slide .testimonial-prev,
.testimonial-slide .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(100%);
  background: transparent;
  border: none;
  z-index: 2;
  padding: 0;
}

.custom-prev-btn {
  left: 5px;
}

.custom-next-btn {
  right: 5px;
}

.custom-prev-btn svg,
.custom-next-btn svg {
  width: 36px;
  height: 36px;
}
.testimonial-item {
  display: none;
  flex: 0 0 100%;
  padding: 1rem;
  background: transparent;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  display: block;
}

   .carousel-client {
           
            bottom: 30px;
            left: 0;
            right: 0;
            width: 100%;
        
            color: #000000;
        }
    .carousel-client div {
        color: #000000;
    }

    .partners {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            justify-items: center;
            gap: 5px;
            
        
        }
        .partners a {
  margin-left: 200px; /* adjust pixels as you like */
  display: inline-flex; /* keeps alignment with imgs */
  align-items: center;
}

    .partners img {
            max-width: 100px;
            height: auto;
        }
     
        .client-image-placeholder {
  background-image: url('../images/client.jpg');
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;  
  width: 100%;
  height: auto;
}

.social-icons a,
.social-icons i {
  color: #9CFF00 !important;
}



@media (max-width: 768px) {
  .testimonial-container {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .testimonial-slide .testimonial-caption {
    font-size: 0.9rem;
  }

  .testimonial-slide .testimonial-caption p.lead {
    font-size: 0.8rem;
  }

  .testimonial-slide .testimonial-caption p strong {
    font-size: 0.75rem;
  }

  .testimonial-slide .testimonial-prev,
  .testimonial-slide .testimonial-next {
    top: 60%;
    transform: translateY(-70%);
  }

  .custom-prev-btn {
    left: 2px;
  }

  .custom-next-btn {
    right: 2px;
  }

  .custom-prev-btn svg,
  .custom-next-btn svg {
    width: 32px;
    height: 32px;
  }
    
    .partners img {
            max-width: 65px;
            height: auto;
        }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  display: none; /* hidden by default */
}

.popup-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

