/* Navbar (Fixed Menu) Styles */
.navbar {
    overflow: hidden;
    background-color: #333; /* Ensure background color is applied */
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; /* Ensures the menu stays on top */
    transition: background-color 0.3s ease; /* Smooth transition for color changes */
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2; /* Font color for links */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd; /* Background color on hover */
    color: black; /* Font color on hover */
}

/* Body Styles */
body {
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #ffffff;
    padding: 100px 20px 40px; /* Add padding to offset the fixed navbar */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    color: #333;
    margin: 0;
    padding: 10px 0;
    font-weight: bold;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.8em;
    color: #4a90e2;
    margin: 10px 0;
}

/* Main Content Styles */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    text-align: left;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Floating WhatsApp Button */
.floating {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

.fab-icon {
    line-height: 60px;
}

.floating:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 4px 4px 6px #666;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.4em;
    }

    main {
        padding: 20px;
    }

    p {
        font-size: 1em;
    }

    .floating {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    .fab-icon {
        line-height: 50px;
    }
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f0f2f5;
}
