/* Container for the carousel */
.ctc-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

/* Each testimonial slide */
.ctc-testimonial {
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
	background: #fff;
	border-radius: 12px;
	margin: 0 5px;
}

/* Author photo styling */
.ctc-photo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 10px;
}

/* Testimonial content */
.ctc-content {
    margin-bottom: 10px;
    font-style: italic;
}

/* Author name */
.ctc-author {
    font-weight: bold;
    margin-top: 10px;
}

/* Rating stars */
.ctc-rating {
    margin-top: 10px;
}
.ctc-star {
    font-size: 20px;
    color: #ccc;
    margin: 0 1px;
}
.ctc-star.filled {
    color: gold;
}

/* Slick carousel adjustments */
.slick-slide {
    outline: none;
    padding: 10px;
}

.slick-dots {
    bottom: -30px;
}

.slick-prev, .slick-next {
    z-index: 1000;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .ctc-testimonial {
        padding: 10px;
    }
}

