Choose Your Language Track!
Discover Our Business Solutions
Pack Business

Our Happy Clients!
/* Slider container */
.testimonial-slider {
max-width: 900px;
width: 95%;
margin: 40px auto;
position: relative;
overflow: hidden;
border-radius: 16px;
padding: 20px;
box-sizing: border-box;
font-family: “Poppins”, sans-serif;
}/* Slides */
.testimonial-slide {
display: none;
background-color: #fff;
padding: 40px 35px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
border: 1px solid #eee;
border-radius: 16px;
text-align: center;
transition: opacity 0.5s ease, transform 0.5s ease;
min-height: 500px; /* hauteur uniforme */
}/* Active slide */
.testimonial-slide.active {
display: block;
transform: scale(1.02);
}/* Photo */
.testimonial-photo {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
margin: 0 auto 25px auto;
display: block;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}/* Titre */
.testimonial-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
color: #111;
letter-spacing: 1px;
}/* Sous-titre */
.testimonial-subtitle {
font-size: 26px;
font-weight: 700;
color: #555;
margin-bottom: 25px;
font-style: italic;
}/* Texte témoignage */
.testimonial-text {
overflow: hidden;
max-height: 80px;
transition: max-height 0.6s ease;
text-align: justify;
font-size: 17px;
line-height: 1.6;
}.testimonial-text.expanded {
max-height: 2000px;
}/* Bouton Lire la suite */
.read-more {
display: inline-block;
margin-top: 15px;
background: #0073aa;
border: none;
color: #fff;
font-weight: 600;
cursor: pointer;
font-size: 16px;
padding: 8px 20px;
border-radius: 8px;
transition: background 0.3s;
}.read-more:hover {
background: #005177;
}/* Vidéo responsive améliorée */
.testimonial-video-container {
position: relative;
width: 100%;
max-width: 100%;
height: 0;
padding-bottom: 56.25%; /* 16:9 ratio par défaut */
border-radius: 16px;
overflow: hidden;
box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}/* Mobile : vidéo plus grande */
@media (max-width: 768px) {
.testimonial-video-container {
padding-bottom: 75%;
}
}.testimonial-video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}/* Pagination points */
.slider-dots {
text-align: center;
margin-top: 25px;
}.slider-dots span {
display: inline-block;
width: 12px;
height: 12px;
margin: 0 5px;
background-color: #ccc;
border-radius: 50%;
cursor: pointer;
transition: background 0.3s;
}.slider-dots span.active { background-color: #0073aa; }document.addEventListener(“DOMContentLoaded”, function() {// Lire la suite
const readMoreButtons = document.querySelectorAll(“.read-more”);
readMoreButtons.forEach(btn => {
btn.addEventListener(“click”, function() {
const text = btn.previousElementSibling;
text.classList.toggle(“expanded”);
btn.textContent = text.classList.contains(“expanded”) ? “Lire moins” : “Lire la suite”;
});
});// Slider
let currentSlide = 1;
const slides = document.querySelectorAll(“.testimonial-slide”);
const totalSlides = slides.length;// Pagination dots
const dotsContainer = document.getElementById(“sliderDots”);
for(let i=0;ishowSlide(i+1));
dotsContainer.appendChild(dot);
}
const dots = dotsContainer.querySelectorAll(“span”);function showSlide(n){
slides.forEach(s=>s.classList.remove(“active”));
dots.forEach(d=>d.classList.remove(“active”));
slides[n-1].classList.add(“active”);
dots[n-1].classList.add(“active”);
currentSlide = n;
}window.nextSlide = function(){
currentSlide = (currentSlide % totalSlides) + 1;
showSlide(currentSlide);
}window.prevSlide = function(){
currentSlide = (currentSlide – 2 + totalSlides) % totalSlides +1;
showSlide(currentSlide);
}// Défilement automatique plus rapide (10s)
setInterval(nextSlide, 10000);// Swipe tactile mobile
let startX = 0;
slides[0].parentElement.addEventListener(‘touchstart’, e => { startX = e.touches[0].clientX; });
slides[0].parentElement.addEventListener(‘touchend’, e => {
const diff = e.changedTouches[0].clientX – startX;
if(diff > 50) prevSlide();
else if(diff < -50) nextSlide();
});});















