/* Guest Reviews(Happy Customers) */
    .happy-customers { padding: 20px 0; background: #fdfdfd; overflow: hidden; }
    .heading-title h2 { text-align: center; margin-bottom: 50px; font-weight: bold; color: #333; }
    
    .review-box { 
        background: #fff; 
        padding: 30px; 
        border-radius: 12px; 
        border: 1px solid #eee; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        position: relative; 
        margin-bottom: 40px; 
    }
    .review-text { 
        font-size: 14px; 
        line-height: 1.6; 
        color: #666; 
        min-height: 100px; 
        font-style: italic; 
    }
    .client-img { 
        position: absolute; 
        bottom: -25px; 
        left: 25px; 
    }
    .client-img img { 
        width: 55px; 
        height: 55px; 
        border-radius: 50%; 
        border: 3px solid #fff; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    }
    .author-info { margin-top: 35px; text-align: center; }
    .stars { color: #fbbc04; margin-bottom: 5px; font-size: 16px; }
    .author-info p { font-weight: bold; margin: 0; color: #333; }
    .author-info span { font-size: 12px; color: #999; }

    /* Review Buttons */
    .review-footer { margin-top: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .read-more-btn { 
        background: #ff5a5f; color: #fff !important; 
        padding: 10px 20px; border-radius: 4px; 
        text-decoration: none; font-weight: bold; font-size: 13px;
    }
        /* web-fonts */
        .dropdown2 {
        position: relative;
        display: inline-block;
        }
        .dropdown-content2 {
        display: none;
        position: absolute;
        background-color: #a4a6a7;
        min-width: 200px;
        height: 180px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 17px 17px;
        z-index: 1;
        }
        .dropdown2:hover .dropdown-content2 {
        display: block;
        }
    
        .dropdown {
        position: relative;
        display: inline-block;
        }
        .dropdown-content {
        display: none;
        position: absolute;
        background-color: #a4a6a7;
        min-width: 200px;
        height: 270px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 17px 17px;
        z-index: 1;
        }
        .dropdown:hover .dropdown-content {
        display: block;
        }
        
       /* ===== REVIEW SLIDER FIX ===== */

.myReviewSlider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.myReviewSlider .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
}

.myReviewSlider .swiper-slide {
    flex-shrink: 0;
    height: auto !important;
}

/* Review Box */
.review-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    min-height: 220px;
}

/* Review Text */
.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
}

/* Client Image */
.client-img {
    position: absolute;
    bottom: -25px;
    left: 25px;
}

.client-img img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

/* Author Info */
.author-info {
    margin-top: 40px;
    text-align: center;
}

.author-info p {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.author-info span {
    font-size: 14px;
    color: #777;
}

/* Stars */
.stars {
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    background: #f4b400;
    color: #000;
}

/* Mobile */
@media(max-width:768px){

    .review-box{
        min-height:auto;
    }

    .review-footer{
        gap:20px;
    }

}