
.testimonial-container {
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    padding: 160px 20px 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 30px;
    align-items: center;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #344a2c70;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.testimonial-card.center {
    transform: translateY(-100px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #344a2c;
}

.quote-icon {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1;
    font-weight: bold;
}

.testimonial-text {
    font-family: "Helvetica Now Display", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: 1px;
    color: #000000;
}


.author-section {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
    margin-top: 36px;
}

.author-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author-name {
    font-family: "Helvetica Now Display", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: .5px;
    color: #000000;
}


.navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: -100px;
    position: relative;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #555;
    font-size: 18px;
    padding:0;
}

.nav-btn:hover {
    border-color: #999;
    background: #fafafa;
    transform: scale(1.05);
}
.nav-btn.disabled {
    opacity: 0.4;
}


/* Tablet Styles */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }

    .testimonial-card.center {
        transform: translateY(0);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .navigation {
        margin-top: 0px;
    }

    .slider-wrapper {
        padding: 60px 20px 40px;
    }
}

/* Mobile Styles */
@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-text {
        min-height: auto;
    }
}