.websstuff-reviews-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.reviews-wrapper {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
}

.review-card {
	flex: 0 0 calc(33.333% - 20px);
	border: 2px solid #f97316;
	border-radius: 20px;
	padding: 30px;
	position: relative;
	background: #fff;
	box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1023px) {
	.review-card {
		flex: 0 0 calc(50% - 20px);
	}
}

/* Mobile */
@media (max-width: 767px) {
	.review-card {
		flex: 0 0 100%;
	}
}
.mt-10{
    margin-top: 10px;
}

.review-text {
	line-height: 1.6;
}

.reviewer-name {
	font-weight: 600;
	margin-top: 15px;
}
.quotes-bottom {
    display: flex;
    justify-content: flex-end;
}
.reviews-nav {
	text-align: center;
	margin-top: 30px;
}

.reviews-nav button {
	background: transparent !important;
	cursor: pointer;
	padding: 0;
}
.review-rating {
	margin-top: 6px;
}

.review-rating .star {
	font-size: 18px;
	color: #ccc;
	margin-right: 2px;
}

.review-rating .star.filled {
	fill: #ff7100 !important; /* match your theme orange */
}
