body {
 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav {
    display: flex;
    
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.menu-icon .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #000000;
}

.section {
    padding: 50px;
    text-align: center;
}

.animated-paragraph {
    opacity: 0;
    transform: translateY(50px);
    transition: all 2.5s ease-in-out;
}

.animated-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: #000000;
        transition: left 0.9s ease-in-out;
    }

    nav ul li {
        margin: 13px 0;
    }

    nav ul.show {
        left: 0;
    }
	
}


        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background-color: #25D366; /* WhatsApp green */
            border-radius: 50%;
            box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.9);
            z-index: 100;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* WhatsApp Image */
        .whatsapp-float img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
			background-color: #25D366; /* WhatsApp green */
        }

        /* Hover text */
        .whatsapp-float:hover .hover-text {
            visibility: visible;
            opacity: 1;
        }

        .hover-text {
            visibility: hidden;
            width: 80px;
            background-color: #25D366;
            color: white;
            text-align: center;
            border-radius: 6px;
            padding: 3px;
            font-size: 12px;
            position: absolute;
            bottom: 70px;
            right: 10px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }

        /* Tooltip arrow */
        .hover-text::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }