#home {
    background-size: cover;
    background-position: center;
    color: whitesmoke;
    background-color: whitesmoke;
    height: 100vh;
}

.client-logo {
    max-width: 150px;
    margin: 20px;
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    background-color: #f9f9f9;
}

.stars {
    color: gold;
}

.ml-20 {
    margin-left: 20%;
}

.carousel-control-next,
.carousel-control-prev {
    width: 25%;
}


.rounded-10 {
    border-radius: 15px 15px 15px 15px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}