@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* CSS for menu-icon */
.menu-icon {
    font-size: 25px;
    background-color: rgb(139, 195, 74);
    padding: 10px;
    color: white;
}

.main-heading {
    font-family: "Poppins", sans-serif;
}

.main-menu-link {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: black;
}

.main-menu-link:hover {
    color: rgb(139, 195, 74);
}

.offcanvas-menu-link {
    color: black;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}
.offcanvas-menu-link:hover {
    color: rgb(139, 195, 74);
}
.card {
    font-family: "Poppins", sans-serif;
}

.about-heading {
    font-size: 40px;
    font-style: italic;
    text-decoration: underline;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
}

.experience-heading {
    font-size: 40px;
    font-style: italic;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
}

.experience-text {
    font-size: 30px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

.service-heading {
    font-size: 40px;
    font-style: italic;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}

.founder-heading {
    font-size: 40px;
    font-style: italic;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}

.footer-link {
    list-style: none;
}
.footer-link a {
    text-decoration: none;
    color: white;
}

.footer-link a:hover {
    color: green;
    cursor: pointer;
}

.gallery-heading {
    font-size: 40px;
    font-style: italic;
    text-decoration: underline;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}

.contact-heading {
    font-size: 40px;
    font-style: italic;
    text-decoration: underline;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}

.contact-text {
    font-family: "Poppins", sans-serif;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the viewport */
    left: 20px; /* Distance from the left of the viewport */
    background-color: #25d366; /* WhatsApp color */
    color: white; /* Text and icon color */
    border-radius: 5px; /* Slightly rounded corners */
    padding: 10px 15px; /* Padding for button */
    display: flex; /* Align items */
    align-items: center; /* Center icon and text */
    text-decoration: none; /* No underline */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
    z-index: 1000; /* Stay on top of other elements */
    transition: all 0.3s ease; /* Smooth transition for all properties */
    animation: bounce 2s infinite; /* Animation effect */
}

.whatsapp-button i {
    margin-right: 10px; /* Space between icon and text */
    font-size: 24px; /* Icon size */
}

/* Hover Effect */
.whatsapp-button:hover {
    background-color: #8BC34A;
    transform: scale(1.1) rotate(5deg); /* Slightly enlarge and rotate */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Bounce Animation */
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
