*{
    margin: 0;
    border: 0;
}
body{
     font-family: "Poppins", sans-serif;
     background-color: antiquewhite;
}
.navbar h1{
    color: #132d2c;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.navbar-links{
    display: flex;
    column-gap: 10px;
}
.nav-link a{
    text-decoration: none;
    color: #132d2c;
}
.nav-link a:hover{
    text-decoration: underline;
}
.nav-menu-toggle{
    display: none;
}

.side-navbar{
    background-color: #132d2c;
    position: fixed;
    top: 0;
    width: 25%;
    height: 100%;
    padding: 20px;
    color: white;
    left: -250%;
    transition: 2s;
    z-index: 1000;
}
.sidenav-link{
    margin-bottom: 20px;
}
.sidenav-link a{
    text-decoration: none;
    color: white;
    margin-bottom: 20px;

}
.side-navbar:hover{
    cursor: pointer;
}
.nav-menu-toggle i:hover{
    cursor: pointer;
}

.header{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px;
}
.header button{
    background-color: #132d2c;
    padding: 10px 10px 10px 10px;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}
.services{
    padding: 20px;
}
.service-container1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.service-container2{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.service-container2 div{
    background-color: aliceblue;
    border-radius: 5px;
    padding: 10px;
}
.new-arrivals{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.new-arrival-container{
    position: relative;
    flex-basis: 23%;
}
.new-arrival-container button{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: #132d2c;
    margin-top: 10px ;
    position: absolute;
    top: 50%;
    left: 17%;
}
.news{
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    margin-top: 20px;
}
.news input{
    border: 2px solid black;
    width: 80vw;
    margin-top: 10px;
    padding: 10px;
}
.news button{
    background-color: #132d2c;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: 10px;
    color: white;
}
.news button:hover{
    cursor: pointer;
}
.footer{
    background-color: #132d2c;
    color: white;
    margin-top: 20px;
    padding: 40px;
}

.products-section{
    margin-top: 15px;
}
.product-search{
    display: flex;
    justify-content: space-between;
     width: 80%;
    border: 2px solid black;
    padding: 10px;
    align-items: center;
    border-radius: 20px;
    margin: auto;
  
}
.product-search input{
    background-color: transparent;
    outline: none;
}
.product-search input:hover{
    cursor: text;
    outline: none;
}
.product-search i:hover{
    outline: none;
    cursor: pointer;
}
.products{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}
.products-box{
    flex-basis: 20%;
    padding: 10px;
    text-align: center;
}
.contact{
    background-color: #132d2c;
    width: 40%;
    padding: 40px;
    border-radius: 6px;
    margin: 40px auto 60px auto;
}

.contactus{
    color: white;
    margin: 30px;
}
.contactus input{
    padding: 15px;
    width: 88%;
}
.contactus textarea{
    border-radius: 4px;
    width: 88%;
    padding: 20px;
}
.contactus .details1{
    padding: 10px;
}
/* media queryy */
@media screen and (max-width :650px) {
    .nav-menu-toggle{
        display: block;
    }
    .navbar-links{
        display: none;
    }
    .img-sec{
        display: none;
    }
    .service-container1{
        display: none;
    }
    .service-container2{
        flex-direction: column;
    }
    .contact{
        margin: 20px auto;
        width: 90%;
    }
    .contactus input{
        width: 100%;
    }
    .contactus textarea{
        width: 100%;
    }
   
}