/* Testimonials Section Styles */
.testimonials {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: calc(100% - 2rem);
    top: 0;
    left: 0;
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial .author {
    font-weight: bold;
    color: #ff6b00;
}

.slider-controls {
    margin-top: 2rem;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #ff6b00;
}