/* --- Testimonial Section --- */

.testimonial-hero {
    background: #fff;
    color: #111;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 800px) {
    .testimonial-hero {
        padding: 4rem 0rem;
    }

}

/* --- Slider & Testimonials --- */

.testimonial-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
}

/* --- Testimonial About Page --- */

.testimonial-about{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

.testimonial-about .testimonial {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: .5rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 800px) {
    .testimonial-about {
        padding: 0rem;
    }
    .testimonial-about .testimonial {
        padding: 1rem;
    }
    .testimonial-about h1{
        text-align: center;
    }
}



/* --- Typography --- */

.quote {
    font-size: 1.4rem;
    line-height: 1.6;
}

.author {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--accentColor, #FF6600);

    font-weight: 600;
}

/* --- Navigation Buttons --- */

.testimonial-buttons {
    margin-top: 2rem;
}

.testimonial-buttons button {
    background: none;
    border: 2px solid var(--accentColor, #FF6600);
    color: var(--accentColor, #FF6600);

    font-size: 2rem;
    margin: 0 1rem;
    padding: 0rem 1rem 0.3rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.testimonial-buttons button:hover {
    background: var(--accentColor, #FF6600);

    color: white;
}

@media screen and (max-width: 800px) {

    .quote {
        font-size: 1rem;
        line-height: normal;
    }

    .testimonial {
        padding: 0 .5rem;
    }

    .testimonial-slider-wrapper {
        margin: .7rem auto;
    }
}