/* Styles for AdVoice Testimonials Slider */
.advoice-testimonials {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
}
.advoice-testimonials .testimonial {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.advoice-testimonials .testimonial.active {
    display: block;
}
.testimonial-avatar {
    margin: 0 auto 15px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-text {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
.testimonial-author {
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}
/* Slider navigation dots */
.advoice-testimonials .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.advoice-testimonials .testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.advoice-testimonials .testimonial-dot.active {
    background-color: #ff6b6b;
}