.whatsapp-button {
    position: fixed;
    bottom: calc(2rem + 2vh); /* Adjust to make sure it doesn't cover the footer */
    right: 5rem;
    z-index: 999; /* Ensure it appears on top */
    display: flex;
    cursor: pointer;
}

/* Ensures the button won't be too close to the bottom edge on smaller screens */
@media (max-height: 700px) {
    .whatsapp-button {
        bottom: 5rem; /* Set higher bottom value to avoid overlap with footer on small screens */
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        right: 2rem;
    }
}


.whatsapp-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    color: inherit;
    font-family: Arial, sans-serif;
}

.whatsapp-button a span {
    font-family: 'Inter';
    color: #808080;
    font-weight: 500;
    margin-bottom: 1vh;
}


.whatsapp-button .whatsapp-icon {
    background-color: #25d366; /* WhatsApp Green Color */
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #26C997;
    box-shadow:  0px 0px 24px #26C997;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.whatsapp-button .whatsapp-icon svg {
    width: 2rem;
    height: 2rem;
}

.whatsapp-button .whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}



html, body{
    scroll-behavior: smooth;
    overflow-y: auto;
}
/* Site Footer */
.site-footer {
    background-color: #ffffff;
    border-top: 2px solid #f0f0f0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Back to Top Button */
.back-to-top {
    bottom: 20px;
    right: 20px;
    display: flex; /* Initially hidden */
}

#back-to-top-btn {
    background-color: #26C997;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#back-to-top-btn:hover {
    background-color: #015CAF;
}


/* Footer Content */
.footer-content {
    text-align: left;
    flex: 1 1 auto;
    padding: 1vh 0;
    margin: 1rem;
}

.footer-content p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.footer-content a {
    color: #015CAF;
    text-decoration: none;
    font-weight: bold;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Social Media Section */
.social-media {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.social-media a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.instagram-button {
    display: flex;
    align-items: center;
    background-color: #015CAF;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    gap: 5px;
}

.instagram-button:hover {
    background-color: #0269C9;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #26C997;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #015CAF;
}

@media (max-width: 1100px) {

    .footer-container{
        flex-direction: column;
        padding: 3vh 1vh;
    }    

}

