body {
    background: #f5f4f7;
    font-family: 'Roboto', sans-serif;
}

section {
    margin-bottom: 160px;
    position: relative;
}

section:not(:last-of-type)::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffffff;
}

.testimonials-section {
    padding: 80px 0;
    background: #f5f4f7;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #000000;
}

.highlight {
    color: #61b6e2;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-out;
    animation: slideTrack 30s linear infinite;
}

@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.testimonial-card {
    flex: 0 0 300px;
    margin: 0 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #feb365;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.review-link {
    color: #61b6e2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #61b6e2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 280px;
        margin: 0 15px;
        padding: 25px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}
.logo img {
    width: 50px;
    height: 50px;
}
