.upvc-testimonial-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.upvc-testimonial-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.testimonial {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 13%);
}

.testimonial .quote {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial .rating {
    color: #FFD700; /* Gold stars */
    font-size: 22px;
    margin: 5px 0 10px;
    letter-spacing: 2px;
}

.testimonial .client {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
