/* Guest Reviews(Happy Customers) */
    .happy-customers { padding: 60px 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;
        }
        
       