.sales-feedback-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.sales-feedback-title {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    /* Fade masks on sides */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: scroll 60s linear infinite;
    padding-left: 24px;
    /* offset */
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
        /* Adjust for gap */
    }
}

.feedback-card {
    width: 400px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: default;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(55, 93, 250, 0.12);
    border-color: rgba(55, 93, 250, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f2f5;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #101828;
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}

.card-info p {
    font-size: 1.4rem;
    color: #667085;
    margin: 0;
    font-weight: 500;
}

.card-quote {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #475467;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Specific styling for the section title to match existing */
.left-sales-feedback-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.left-sales-feedback-title h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #101828;
    text-align: center;
}

.sales-feedback-title p {
    font-size: 1.8rem;
    color: #667085;
    line-height: 1.6;
    text-align: center;
}