.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.navbar {
    width: 100%;
    background: #fff;
    z-index: 100;
    padding: 3px 0px;
}
    .navbar .container, .navbar .container-lg, .navbar .container-md, .navbar .container-sm, .navbar .container-xl {
        max-width: 1320px;
    }
.menu-items {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.logo{
    font-size: 2.3rem;
}

.menu-items li{
    list-style: none;
    margin-left: 37px;
}

.navbar a {
    color: #030722;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}
.logo img{
    width: 115px;
}
.navbar a:hover{
    color: #d52228;
}
.nav_right {
    display: flex;
    align-items: center;
    gap: 37px;
}
.nv_btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact_btn {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #030723 !important;
    text-transform: capitalize !important;
    width: fit-content;
    text-decoration: none;
    justify-content: center;
    border: 1px solid #d52228;
}
.menu-items-mob{
    display: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgb(0 0 0 / 15%); /* dark semi-transparent */
  z-index: 9999999; /* just below your menu */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

/* When checkbox is checked, show the overlay */
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px){
    .menu-items-mob{
    display: block;
}
    .nv_btn{
        display: none;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
                width: 30px!important;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        right: 10px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 32px;
        position: absolute;
        top: 20px;
        right: 10px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #ffffff;
        height: 100vh;
        max-width: 360px;
        transform: translate(-100%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        z-index: 999999999999;
		box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .navbar .menu-items li {
        margin: 0;
        border-bottom: 1px solid #00000021;
        padding: 15px 20px;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
		        background: #000000;
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
		        background: #000000;
    }

}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}