.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transition: background 0.3s;
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
}
.logo {
    font-size: 22px;
    color: #ff3b3b;
    font-weight: bold;
}
.menu {
    display: flex;
    gap: 20px;
}
.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: bold;
}
.menu a:hover {
    color: #ff3b3b;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

.whatsapp img{
    width: 30px;
    border-radius: 50%;
}
.whatsapp img:hover {
    width: 35px;
    transition: 2s;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
    }
    .menu.active {
        display: flex;
    }
    .menu a {
        padding: 10px;
        text-align: center;
        display: block;
        font-weight: bold;
     
    }
    .menu a:hover{
        background-color: #f0e6e6de;
    }
    .menu-toggle {
        display: block;
    }
    .whatsapp {
      

        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        transition: background 0.3s;
    }
}