body,
h1, h2, h3, h4, h5, h6,
p,
span,
a,
li,
button,
input,
textarea {
    font-family: "Nunito", sans-serif !important;
}





.why-choose .card {
    transition: 0.3s;
}

.why-choose .card:hover {
    transform: translateY(-10px);
}

.text-primary{color:#fd6100 !important;}


.client-box {
    transition: 0.3s;
}

.client-box img {
    opacity: 0.7;
    transition: 0.3s;
}

.client-box:hover {
    transform: translateY(-5px);
}

.client-box:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}