/* Custom Swiper Styles for Testimonials */

/* Testimonials section */
.testimonials-section {
	height: auto; /* Changed to auto to accommodate the padding */
	position: relative;
	padding: 4rem 0 0 0;
	overflow: hidden;
}

/* Swiper container */
.testimonials-swiper {
	width: 100%;
	height: 800px;
	margin: 0 auto;
	overflow: visible;
	padding: 0; /* Remove any padding */
}

/* Ensure the wrapper takes the full height */
.testimonials-swiper .swiper-wrapper {
	height: 100%;
}

/* Swiper slide */
.testimonials-swiper .swiper-slide {
	opacity: 0.5;
	transform: scale(0.9);
	transition: all 0.4s ease;
	height: 250px !important; /* Reduced height as suggested */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* Active slide (center) */
.testimonials-swiper .swiper-slide-active {
	opacity: 1;
	transform: scale(1);
}

/* Previous and next slides */
.testimonials-swiper .swiper-slide-prev,
.testimonials-swiper .swiper-slide-next {
	opacity: 0.3;
}

/* Testimonial content */
.testimonial-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	height: 100%; /* Take full height of slide */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Hide pagination bullets */
.testimonials-swiper .swiper-pagination {
	display: none;
}

/* Hide navigation buttons */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
	display: none;
}
