<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.testimonials-section h1 {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #1E8A72;
    overflow: hidden;
    position: absolute;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.testimonial-circle.top-center {
    top: 100px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.testimonial-circle.top-center img {
    transition: opacity 0.3s ease;
}

.testimonial-circle.top-right {
    top: 120px;
    right: 20%;
}

.testimonial-circle.top-left {
    top: 120px;
    left: 20%;
}

.testimonial-circle.middle-right {
    top: 50%;
    right: 15%;
}

.testimonial-circle.middle-left {
    top: 50%;
    left: 15%;
}

.testimonial-circle.bottom-right {
    bottom: 120px;
    right: 20%;
}

.testimonial-circle.bottom-left {
    bottom: 120px;
    left: 20%;
}

.testimonial-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E8A72;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.testimonial-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0 10px;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    margin-bottom: 30px;
}

.testimonial-content h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
    font-style: italic;
}

.testimonial-content .client-name {
    font-size: 22px;
    font-weight: 700;
    color: #1E8A72;
    margin-top: 20px;
}

.testimonial-content p {
    color: #666;
    font-size: 16px;
    margin-top: 5px;
}

.testimonial-content hr {
    width: 100px;
    margin: 20px auto;
    border-color: #1E8A72;
    opacity: 0.5;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 4;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(30, 138, 114, 0.3);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #1E8A72;
}

@media (max-width: 768px) {
    .testimonial-circle.top-left,
    .testimonial-circle.top-right,
    .testimonial-circle.middle-left,
    .testimonial-circle.middle-right,
    .testimonial-circle.bottom-left,
    .testimonial-circle.bottom-right {
        display: none;
    }
    
    .testimonial-circle.top-center {
        width: 100px;
        height: 100px;
        top: 100px;
    }
    
    .testimonial-content {
        margin-top: 80px;
    }
    
    .testimonial-content h3 {
        font-size: 18px;
    }
} </pre></body></html>