* {
    padding: 0;
    margin: 0;
    font-family: "Playwrite GB S", cursive;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}

.navbar-links {

    display: flex;
    column-gap: 20px;

}

.navbar-links a {
    text-decoration: none;
    color: rgb(6, 79, 79);
}

.navbar-links a:hover {
    text-decoration: underline;
    color: rgb(116, 47, 47);
}

.navbar-toggle {
    display: none;
    cursor: pointer;
}

.side-navbar {
    color: white;
    background-color: rgb(6, 79, 79);
    width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -50%;
    transition: 2s;
}

.side-navbar-link {
    margin-bottom: 30px;
}

.side-navbar-link a {
    color: white;
    text-decoration: none;
    padding-left: 20px;
}

.side-navbar-link a:hover {
    color: rgb(254, 169, 169);
    text-decoration: underline;
}

.header {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

.header-image {
    width: 200px;
    height: 300px;
    border-radius: 10px;
}

.header-button {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(6, 79, 79);
    color: white;
    border-radius: 10px;
    border: none;
    margin-top: 20px;
    cursor: pointer;

}

.header-button:hover {
    color: rgb(254, 169, 169);
}

.service-container-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 30px;
}

.service-container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.service-container-2 div {
    background-color: #F2F4F7;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
}

.Arraival {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.Arraival-container {
    position: relative;
    flex-basis: 20%;
    padding-left: 10px;
}

.Arraival-container img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.Arraival-container button {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(6, 79, 79);
    color: white;
    border-radius: 10px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    position: absolute;
    top: 60%;
    left: 18%;


}

.Arraival-container button:hover {
    color: rgb(254, 169, 169);
}

.New-Arraival {
    padding-left: 20px;
    padding-bottom: 20px;
}

.news {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-top: 50px;
    
}

.news input {
    padding: 10px;
    width: 80vw;
    margin-bottom: 20px;
    border: solid black 3px;
    margin-top: 20px;
    margin-right: 90px;

}

.news button {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(6, 79, 79);
    color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.news button:hover {
    color: rgb(254, 169, 169);
}

.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.products-list {
    position: relative;
    flex-basis: 20%;
    padding-left: 10px;
}

.products-list img {
    border-radius: 10px;
}

.products-list p {
    margin-left: 30px;
    padding: 20px;
}
.search {
    position: relative;/* Enable positioning of the icon */
    display: flex;
    align-items: center;
    border:solid rgb(6, 79, 79) 3px;
    border-radius:20px;
    width:80%; /* Width of the search bar */
    background-color: white;
    margin:30px;
    margin-left: 8%;


    
}

.search input[type="text"] {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 10px; /* Add right padding for the icon */
    font-size: 16px; /* Font size */
    width: 70vw;
    align-items: center;
    margin-left: 15px;
}

.search i {
    position: absolute; /* Position the icon */
    right: 10px; /* Distance from the right edge */
    color: #888;
    cursor: pointer;
    font-size: 20px; /* Icon size */
    top: 15px;
}

.search i:hover {
    color: #000; /* Hover effect */
}

.search i:hover {
    color: #000;
}
.footer{
    background-color:rgb(6, 79, 79) ;
    color: white;
    padding: 15px;
    margin-top: 150px;
}
.footer i{
    padding: 10px;
}
.footer p{
    padding: 5px;
}
.form{
    background-color: rgb(39, 39, 73);
    width: 60%;
    margin-top: 100px;
    margin-left: 250px;
    padding: 30px;
    color: white;
}
.form-input input {
    width: 60vw;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: black;
    outline: none;


}

.form-input button {
    padding: 10px 15px;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-input button:hover {
    background-color:rgb(3, 177, 183);
}




@media screen and (max-width:600px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .service-container-1 {
        display: inline;
    }

    .service-container-2 {
        display: inline;
    }
}