#stats-container {
	position: relative;
	display: flex;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	margin-top: 4rem;
}

#stats-card {
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 20px;
	background-color: black;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 4px 15px rgb(0, 0, 0, 0.5);
}

#rating-number {
	font-family: var(--font-2);
	font-size: 55px;
	margin-bottom: 0px;
	color: white;
	width: 92px;
	text-align: center;
	line-height: 65px;
	font-weight: 600;
}

.statstext {
	color: grey;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
}

/* For the stats stars */
.svg-rating {
  display:inline-flex; 
  align-items:center; 
  gap:.35rem;
}

.stars-row { 
	display:flex; 
	gap:2px; 
}

.star { 
	width:18px; 
	height:18px; 
	display:block; 
}

.rating-count { 
	font-size:.9rem; 
	color:#666; 
}

.review-card {
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 20px;
	align-items: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	max-width: 370px;
	box-shadow: 0 4px 15px rgb(0, 0, 0, 0.3);
}

.review-card.theme-green {
	background-color: rgb(80, 104, 75, 0.4);
}

.review-card.theme-red {
	background-color: rgba(50, 20, 13, 0.4);
}

.review-title {
	font-size: 1.2rem;
	font-family: var(--font-2);
	font-weight: 500;
	padding-bottom: 0.8rem;
	color: white;
}

.review-text {
	color: lightgrey;
    text-align: center;
}

#review-container {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: var(--p-2pos);
	padding-bottom: var(--p-pos);
}

#review-container.theme-green {
    background-color: #1b2017;
}

#review-container.theme-red {
    background: linear-gradient(180deg, #BA654D, #3A231B);
}
/* carousel styles by chat */

#testimonialCarousel {
	width: 370px;
	margin: auto;
	/* overflow: hidden; */
	position: relative;
}

.testimonialWrapper {
	display: flex;
	/* transition: transform 0.5s ease; */
}

.testimonial {
	min-width: 370px;
	box-sizing: border-box;
	padding: 30px;
	opacity: 0.5;
	transition: opacity none;
	margin-left: 15px;
	margin-right: 15px;
}

/* Star list container */
.fa-fw {
	width: 1em;
}

.small-star {
	width: 0.9em;
	font-size: 1em !important;
}

.stars {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 3px; /* small spacing between stars */
}

/* Each star item */
.stars li {
    display: inline-block;
}

/* Star icon */
.stars li i.fa {
    color: #ffcc36; /* warm yellow */
    font-size: 1.2em;
    transition: transform 0.2s ease;
}

/* Optional subtle hover effect (for consistent visual polish even if non-clickable) */
.stars li i.fa:hover {
    transform: scale(1.15);
}

/* Slight opacity change for non-active stars if you ever use partial ratings */
.stars li.inactive i.fa {
    color: #ccc;
}