body {
    margin: 0;

    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 18px;
    font-style: normal;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    transition: background-color 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 75px;
    width: auto;
}


@media (max-width: 768px) {
    .logo img {
        height: 50px;
        width: auto;

    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.nav-links li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links li a {
    color: rgb(0, 0, 0);
}

.nav-links li a:hover {
    color: rgb(139, 139, 139);
}

/* Toggle Button */
.menu-toggle {
    display: none;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.navbar.scrolled .menu-toggle {
    color: black;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 89px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease-in-out;
}

.scrolled .logo img {
    filter: none;
}

/* Floating Icons ==========================================================*/

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-icons a {
    width: 50px;
    height: 50px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-icons a.phone-icon {
    background-color: #007BFF; /* Blue for Phone */
}

.floating-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 600px) {
    .floating-icons a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}


