.mts-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.mts-heading {
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.mts-swiper {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
    position: relative;
}

.mts-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto; /* Center single slide */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.mts-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mts-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mts-rating {
    color: #ffb400; /* Gold color for stars */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.mts-review {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%;
}

.mts-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Navigation Buttons */
.mts-button-prev,
.mts-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.mts-button-prev:hover,
.mts-button-next:hover {
    background: #333;
    color: #fff;
}

.mts-button-prev {
    left: 10px;
}

.mts-button-next {
    right: 10px;
}

@media (min-width: 1025px) {
    .mts-button-prev { left: 5%; }
    .mts-button-next { right: 5%; }
}

/* Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #333;
    opacity: 1;
}
