.ctw-coverflow-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    background: #f9f9f9;
}

.ctw-coverflow-wrapper .swiper-slide {
    width: 300px;             /* Explicit width for proper 3D layout */
    display: flex;
    justify-content: center;
    transition: transform 0.5s, opacity 0.5s;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.swiper-slide-active .testimonial-card {
    transform: scale(1.1);
    box-shadow: 0 0 45px rgba(0,212,255,0.5); /* Active glow */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-rating { margin-bottom: 10px; }
.star { color: #ffc107; font-size: 18px; }

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0px;
}

.testimonial-position {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 11px;
    color: #555;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #00d4ff;
    top: 45%;
}

.swiper-pagination-bullet {
    background: #00d4ff;
    opacity: 0.7;
}

.testimonial-content {
	text-align: center;
}

.testimonial-text {
	color: #dd1e1e !important;
}
.swiper-pagination-bullet-active { opacity: 1; }
.testimonial-name {
	margin: 0px !important;
}
/* Responsive Breakpoints */
@media (max-width: 991px) {
    .ctw-coverflow-wrapper .swiper-slide { width: 200px; }
}
@media (max-width: 767px) {
    .ctw-coverflow-wrapper .swiper-slide { width: 160px; }
    .testimonial-card { padding: 15px; }
    .testimonial-text { font-size: 14px; }
    .star { font-size: 16px; }
}