﻿.testimonial-section {
    background-color: #f5f6f7;
    padding: 80px 0;
    text-align: center;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 50px;
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    margin: 0 40px;
    padding: 20px;
    background: transparent; /* DİKKAT: beyaz değil */
    text-align: center;
}

    .testimonial-card h3 {
        font-size: 22px;
        font-weight: 500;
        color: #2d2d2d;
    }

    .testimonial-card p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-top: 15px;
    }

.quote-icon {
    width: 60px;
    margin-bottom: 20px;
}

.stars {
    width: 100px;
    margin-left: 10px;
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
