/* Center swiper-slide content */
.swiper.testimonial-swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.swiper-wrapper {
    display: flex;
    align-items: stretch; /* Make all slides equal height */
}
.swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
	height: 100%; /* Ensure full height */
}
/* Ensure testimonial cards are centered and full height inside slide */
.testimonial-card {
	width: 685px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #fff;
	padding: 43px 21px;
	height: auto;
    min-height: 250px; /* Optional: set a minimum height */
}
.testimonial-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
	margin: auto;
}
@media screen and (max-width: 480px) {
  .testimonial-card {
    height: auto !important; /* ✅ Let height be dynamic */
    padding: 30px 15px;
  }
}
