* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body {
    font-family: "Ubuntu", sans-serif;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding-right: 10px;
}

.navbar h1,
.navbar div p {
    display: inline-block;
    padding: 10px;
}

.navlinks {
    display: flex;
    column-gap: 20px;
}

.navbar div p a {
    text-decoration: none;
    color: #1D232C;
}

.toggle {
    border-radius: 10px;
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
    color: black;
}

.menu-toggle {
    display: none;

}

@media screen and (max-width:600px) {
    .menu-toggle {
        display: block;
    }

    .navlinks {
        display: none;
    }

    .headerimg {
        display: none;
    }

    .service-container1 {
        display: block;
    }

    .service1 {
        display: none;
    }



}

#icon-bar {
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 50px;
    background-color: black;
    padding: 14px;
}

#icon-bar div a {
    text-decoration: none;
    color: white;
    padding: 5px;
}

.menu {
    display: flex;
    flex-direction: column;
}

.bg-img {
    position: fixed;
    z-index: -10;
    opacity: 75%;
    object-fit: cover;
}

.header {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
    font-size: 30px;

}

.headerbtn {
    padding: 12px;
    color: white;
    background-color: #1D232C;
    padding-left: 15px;
    padding-right: 15px;
    border: none;
    border-radius: 5px;
}

.service-container {
    padding: 20px;
}

.service1 {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
}

.service1 div p {
    position: absolute;
    right: 5px;
    top: 545px;
}

.service2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    gap: 10px;
}

.service2 div {
    border-radius: 20px;
    z-index: -9;
    color: black;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0.75;
    padding: 15px;
}

.arrivalbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.arrivalimg {
    position: relative;
    flex-basis: 23%;
    border-radius: 20px;
    padding: 10px;

}

.arrivalbtn {
    position: absolute;
    top: 70%;
    left: 30%;
    align-items: center;
    background-color: #1D232C;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 20px;
}

.arrivalimg img {
    border-radius: 20px;

}

.footer {
    z-index: -8;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0.85;
    padding: 15px;
    background-color: #1D232C;
}

.search1 {
    padding-top: 60px;
    padding-bottom: 60px;
}

#searcharea {
    padding: 10px;
    width: 65%;
    border: none;
    border-radius: 10px;
}

#searcharea:focus {
    border: none;
    outline: none;
}

.Contactbox {
    width: 60%;
    max-width: 600px;
    margin: 50px auto;
    background-color: #1D232C;
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.Contactbox h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: white;
}

.boxcontainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
}

.boxcontainer h3 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.box {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    width: 100%;
    background-color: white;
    color: black;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.messagebox {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    width: 100%;
    min-height: 150px;
    resize: vertical;
    background-color: white;
    color: black;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.box:focus,
.messagebox:focus {
    outline: none;
    background-color: #fffde7;
}

input:focus {
    outline: none;
}

.submitbtn {
    width: 100%;
    padding: 7px;
    font-size: 16px;
    margin-top: 2px;
    border-radius: 10px;
    border: none;
}
a{
    text-decoration: none;
    color: #1D232C;
}