/* /////////////////////////Reviews//////////////////// */
.review-section-mreview  {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* body {
            font-family: 'Open Sans', sans-serif;
        } */

/* Section Styling */
.review-section-mreview {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.section-header-mreview {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-mreview h2 {
    color: #3C0145;
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header-mreview p {
    color: #666666;
    font-size: 1rem;
}

.carousel-wrapper-mreview {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-mreview {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.review-card-mreview {
    min-width: calc(33.333% - 17px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 5px solid #3C0145;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.review-card-mreview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(60, 1, 69, 0.15);
}

.google-logo-mreview {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: auto;
    opacity: 0.8;
}

.quote-icon-mreview {
    font-size: 40px;
    color: #3C0145;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
}

.review-text-mreview {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.stars-mreview {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 15px;
}

.user-profile-mreview {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.user-img-mreview {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    background-color: #ddd;
}

.user-details-mreview h4 {
    font-size: 0.95rem;
    color: #3C0145;
    font-weight: 700;
}

.user-details-mreview span {
    font-size: 0.8rem;
    color: #666666;
}

.nav-btn-mreview {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3C0145;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.nav-btn-mreview:hover {
    background-color: #2a0130;
}

.prev-btn-mreview {
    left: 5px;
}

.next-btn-mreview {
    right: 5px;
}

@media (max-width: 900px) {
    .review-card-mreview {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 600px) {
    .review-card-mreview {
        min-width: 100%;
        margin: 10px;
    }

    .carousel-track-mreview {
        gap: 0;
    }
}
.read-more-btn-mreview {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background-color: #3C0145;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(60, 1, 69, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.read-more-btn-mreview:hover {
    background-color: #5a0268;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(60, 1, 69, 0.3);
}

/* Adding a small dynamic arrow */
.read-more-btn-mreview::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn-mreview:hover::after {
    transform: translateX(3px);
}

/* Style for when the text is fully shown */
.review-text-mreview.expanded {
    font-style: normal;
    color: #1a1a1a;
}