﻿.partner-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}
.centered-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    text-align: center;
    font-size: 2rem;
}
    .centered-heading::before {
        --direction: left;
    }
    .centered-heading::after {
        --direction: right;
    }
    .centered-heading::before, .centered-heading::after {
        content: "";
        display: block;
        height: 1px;
        flex: 1;
        max-width: 150px;
        min-width: 40px;
        background: linear-gradient(to var(--direction), transparent, var(--accent-color, #64ffda));
        ;
    }
    .centered-heading::before {
        --direction: left;
    }
    .centered-heading::after {
        --direction: right;
    }
.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: left;
}
.partner-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-align: right;
}
.partner-name {
    font-weight: bold;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 2px;
}
.partner-role {
    color: var(--text-dim);
    font-size: 0.85rem;
}
.partner-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}
.testimonial-card {
    flex-shrink: 0;
    width: 450px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.12);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    box-shadow: 0 0 10px #6691bf;
    white-space: normal;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(102, 145, 191, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.2) !important;
        cursor: pointer;
    }
.marquee-content {
    display: flex;
    flex-direction: row;
    width: max-content;
    white-space: nowrap;
    animation: infinite-scroll 25s linear infinite;
}
    .marquee-content:hover {
        animation-play-state: paused;
    }
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 30px 0;
    /* Hiệu ứng mờ dần 2 đầu cho chuyên nghiệp */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

