/* Testimonials Section V2 */
.testimonials-section-v2 {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.testi-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.testi-headline {
    font-size: 2.5rem;
    font-weight: 800;
    /* Extra bold */
    color: #222;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    /* Ensure bold font */
    line-height: 1.1;
}

.testi-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
    border-radius: 2px;
}

.testi-desc {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 400px;
}

.testi-nav-btns {
    display: flex;
    gap: 15px;
}

.testi-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.testi-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.testi-btn.next-btn {
    border-color: #ffcccc;
    color: var(--primary-color);
    /* Initial state as per red suggestion/image accent */
}

/* Slider Track */
.testimonials-slider-container {
    padding: 40px 0;
    /* Space for shadow */
    position: relative;
    overflow: hidden;
    margin-left: -20px;
    /* Slight offset overlap if needed or clean */
    width: 120%;
    /* Visual overflow hack safely */
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-left: 20px;
}

/* Card Styling */
.testimonial-slider-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    min-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0.5;
    /* Fade out inactive */
    transform: scale(0.9);
}

.testimonial-slider-card.center-active {
    opacity: 1;
    transform: scale(1);
    /* Popped out */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-color: transparent;
}

.testi-stars {
    color: #ffc107;
    /* Warning yellow */
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 1.4rem;
    font-weight: 800;
    /* Heavy weight */
    color: #333;
    line-height: 1.3;
    margin-bottom: 30px;
}

.testi-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.testi-user-icon {
    font-size: 1.5rem;
    color: #999;
}

.testi-user-name {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}