
/* Footer */
.footer {
    background-color: var(--dark-text);
    color: white;
    padding: 60px 0;
}
.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: bold;
}
.footer p, .footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
}
.footer a:hover {
    color: white;
}
.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--primary-color);
}


   .whatsapp-float {
position: fixed;
bottom: 120px;
right: 20px;
z-index: 9999;
}

.whatsapp-float img {
width: 60px;
height: 60px;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
transform: scale(1.1);
}