.ks-testimonial-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ks-testimonial-swiper {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.ks-testimonial-swiper .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	box-sizing: border-box;
	transition-property: transform;
}

.ks-testimonial-swiper .swiper-slide {
	flex-shrink: 0;
	height: auto;
	position: relative;
	transition-property: transform;
	display: flex;
}

.ks-carousel-nav {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-bottom: 20px;
}

.ks-nav-arrow {
	width: 40px;
	height: 40px;
	border: 1px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
}

.ks-nav-arrow svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ks-testimonial-card {
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	padding: 40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.ks-testimonial-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ks-testimonial-stars {
	color: #FFD700;
	font-size: 20px;
	margin-bottom: 20px;
	letter-spacing: 2px;
}

.ks-testimonial-heading {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.ks-testimonial-quote {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 30px;
	flex-grow: 1;
}

.ks-testimonial-name {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.ks-testimonial-weight {
	font-size: 16px;
	color: #777;
	margin-bottom: 30px;
}

.ks-testimonial-photos {
	display: flex;
	gap: 15px;
	margin-top: auto;
}

.ks-testimonial-photo {
	position: relative;
	width: 50%;
	flex: 1;
}

.ks-testimonial-photo img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.ks-testimonial-photo-label {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	text-transform: uppercase;
}

.ks-video-card {
	width: 100%;
	height: 100%;
	background: #000;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.ks-video-content-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.ks-local-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: auto;
}

.ks-video-content-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.ks-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
	box-sizing: border-box;
	transition: opacity 0.4s ease;
}

.ks-video-card.playing .ks-video-overlay {
	opacity: 0;
	pointer-events: none;
}

.ks-video-play-btn {
	width: 60px;
	height: 60px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.ks-video-play-btn::after {
	content: '';
	display: block;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #fff;
	margin-left: 4px;
}

.ks-video-play-btn:hover {
	transform: scale(1.1);
	background: rgba(255,255,255,0.4);
}

.ks-video-text-content {
	margin-top: 20px;
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	position: relative;
}

.ks-video-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.ks-video-subtitle {
	font-size: 16px;
	font-weight: 400;
	color: #e0e0e0;
}