/* Main Swiper Container */
.tcp-swiper {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Testimonial Card */
.tcp-card {
    background: #ffffff; /* Brighter background for better contrast */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 60px 20px 25px;
    position: relative;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tcp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Avatar / Thumbnail */
.tcp-thumbnail {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #e0e0e0;
}

.tcp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.tcp-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #111;
    margin: 10px 0 5px;
}

/* Date */
.tcp-date {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 8px;
}

/* Rating */
.tcp-rating {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    letter-spacing: 2px;
    font-family: "Arial", sans-serif;
    margin-bottom: 12px;
}

/* Testimonial Text */
.tcp-text {
    font-size: 1em;
    color: #222;
    line-height: 1.6;
    padding-top: 10px;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #666;
    transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #000;
}

/* Wrapper */
.tcp-wrapper {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 14px;
    color: #222;
}

/* Responsive */
@media (max-width: 480px) {
    .tcp-card {
        padding: 50px 15px 20px;
        max-width: 90%;
    }

    .tcp-text {
        font-size: 0.95em;
    }
}