.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: -10 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    text-decoration: none;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;

}

.sidebar li {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
}

.sidebar a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: 0.8ms;
}

.menu-button {
    display: none;
}

.company-name {
   
    display: none;
    
}

.mobile-view {
    display: none;
}

@media(max-width: 768px){

    .hideOnMobile {
        display: none;
    }

    .topbar-mobile {
        display: none
    }
    .menu-button {
        display: block;
    }
   
    .company-info {
        display: none;
    }

    .action-buttons {
        display: flex;
        justify-content: flex-end;
        
    }

    .company-name {
        display: flex;
        justify-content: center;
        align-items: center;
        left: 0;
        color: black;
         
    }

    .call-now {
        display: none;
    }

    .logo img {
        width: 70px;
        margin-left: 0px;
        padding: 0px;
    }

    

    .mobile-view {
        display: flex;
        flex-direction: column;
        align-items: start;
        margin: 0px;
        padding: 0px;
        flex-basis: 100%;
       
    }

    .site-survey, .whatsapp-survey, .get-quote, .call-number {
        text-decoration: none;
        border-bottom: 1px solid #fb6f92;
        display: flex;
        flex-direction: column;
        margin-top: 6px;
        width: 100%;
        padding: 0px;
        flex-basis: 100%;
        padding-inline: 250px;
        
       
        background-color: white;
        color: black;
        
    }

   

    .menu-button {
        
        display: block;
        position: absolute;
        top: 20px;
        right: 10px;
        z-index: 999;
        ;
        
        color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }

   


    

    
}

@media(max-width: 440px){
    .sidebar {
        width: 100%;
    }

    

    .menu-button {
        
        display: block;
        position: relative;
        top: 1px;
        right: 5px;
        z-index: 999;
        
        color: white;
        padding: 10px;
        border-radius: 5px;
    }


    .topbar {
        display: none
    }
    .aj-main-hero{
        display:none
    }

}








.navbar {
    list-style: none;
    display: flex;
    justify-content: flex-start; /* Align menu to the right */
    align-items: right;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #000; /* Black text for menu items */
    font-size: 16px;
    transition: 0.8ms;
}