/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* TRACK */
.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

/* Smooth Infinite Scroll */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   CARD
========================= */

.testimonial-card {
    flex: 0 0 auto;
    width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

/* =========================
   USER IMAGE
========================= */

.user-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Name */
.user-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Stars */
.stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
}

/* Review */
.review-text {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

/* Google Logo */
.google-logo {
    width: 70px;
    margin-top: 15px;
    opacity: 0.85;
}

/* Pause on Hover */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}
