.ms-review-section {
        background-color: #fff4e6;
        padding: 40px 20px;
        font-family: 'Noto Serif Bengali', serif;
        overflow: hidden;
        position: relative;
    }

    .ms-review-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #333;
    }

    .ms-review-count {
        text-align: center;
        font-size: 1rem;
        color: #555;
        margin-bottom: 30px;
    }

    .ms-review-slider {
        display: flex;
        animation: scroll-left 40s linear infinite;
        gap: 20px;
    }

    .ms-review-card {
        background: white;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        min-width: 250px;
        flex-shrink: 0;
        transition: transform 0.3s;
        cursor: pointer;
    }

    .ms-review-card:hover {
        transform: scale(1.02);
        animation-play-state: paused;
    }

    .ms-review-stars {
        color: #ffc107;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .ms-review-text {
        font-size: 0.95rem;
        color: #333;
        margin-bottom: 5px;
    }

    .ms-review-name {
        font-weight: bold;
        font-size: 0.9rem;
        color: #555;
    }

    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }

    @media (max-width: 768px) {
        .ms-review-card {
            min-width: 50%;
        }

        .ms-review-slider {
            animation-duration: 60s;
        }
    }