*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Platypi", serif;
}

.navbar{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.nav-link{
    display: flex;
    column-gap: 20px;

}
.nav-link a{
    text-decoration: none;
    color: rgb(49, 49, 49);
}
.nav-link a:hover{
    text-decoration: underline;
    color: rgb(49, 49, 49);
}
.nav-manu-taggle{
    display: none;
}
/* sidenavbar */
.side-navbar{
    background-color: rgb(49, 49, 49);
    width: 40%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    padding: 25px;
    color: white;
    transition: 2s;

}
.side-navlinks{
    margin-bottom: 30px;
}
.side-nav-link a{
    text-decoration: none;
    color: white;

}    
.side-nav-link a:hover{
    text-decoration: underline;
    

}  
.header{
   
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 70px;
}  
.hed-but{
    padding: 10px 20px;
    margin-top: 20px;
    background-color: rgb(49, 49, 49);
    color: white;
    cursor: pointer;
    border: none;
    box-shadow: 5px 5px 10px black;
}
.service{
    padding: 20px;
}
.service1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service2   {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.service2 div{
    background-color: rgb(233, 230, 230);
    border-radius: 10px;
    padding: 10px ;
}
.arrival{
    display: flex;
    justify-content:space-between ;
    flex-wrap: wrap;
}
.new-arrival{
    position: relative;
    flex-basis: 25%;
}
.arrival button{
    padding: 2% 3% ;
    margin-top: 10px;
    position: absolute;
    top: 50%;
    left: 12%;
    color: rgb(58, 58, 58);
    background-color: rgba(240, 248, 255, 0.747);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 400ms;
    
}
.arrival button:hover{
    transform: scale(1.5);
    background-color: rgba(49, 49, 49, 0.699);
    color:white;
}
.arrival img{
    transition: 1s;
}
.arrival img:hover{
    transform: scale(1.3);
}
.news{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news input{
    padding: 15px;
    width: 70vw;
    margin-bottom: 10px;
    margin-top: 5px;
    border: solid black 3px;
    
}
.news button{
    padding: 10px 30px;
    background-color: black;
    color: aliceblue;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}
.news button:hover{
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.9);
}

.footer{
    margin-top: 10px;
    padding: 30px;
    background-color: rgb(49, 49, 49);
    color: aliceblue;
}





@media screen and   (max-width:700px) {
    .nav-manu-taggle{
        display:block;

    }
    .nav-link{
        display: none;
    }
    .hed-img{
        display: none;
    }
    .service1{
        display: none;
    }
    .service2{
        flex-direction: column;
    }
}