/* WhatsApp Sticky Button */
#whatsappButton {
    font-family: 'Poppins', sans-serif; /* Use the custom font */
    font-weight: 600; /* Semi-bold font weight */
    position: fixed;
    bottom: 60px; /* Adjust to stay above the "Return to Top" button */
    right: 20px; /* Adjust distance from the right edge */
    z-index: 1000; /* Ensure it's above other elements */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 30px; /* Rounded rectangle */
    padding: 10px 20px; /* Space around icon and text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px; /* Font size for text */
    text-align: center;
    text-decoration: none;
    display: flex; /* Flex layout for icon and text alignment */
    align-items: center;
    gap: 10px; /* Space between icon and text */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
#whatsappButton:hover {
    background-color: #1ebe5b; /* Slightly darker green on hover */
}

/* WhatsApp Icon Styling */
#whatsappButton i {
    font-size: 24px; /* Icon size */
}

.lead{
    font-weight: bold;
}

.close-description{
    margin-left: 20px;
    font-size: 14px;
    margin-bottom: 5px !important;
}

.title-description{
    font-size: 16px;
    margin-bottom: 0 !important;
}

.project-name{
    font-size: 20px;
    font-weight: bolder;
}

.navigationLinks{
    font-size: 19px !important;
}