*{
    padding:0px;
    margin:0px;
    border: none;
    outline: none;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    max-width: 100svw;
    height: 100svh;
    max-height: 100svh;
    font-family: Arial, sans-serif;
}
:root {
    --blue: #007bff;
    --light-blue: #d1e3ff;
    --orange: #ff8a1d;
    --dark-blue: #0a0f43;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:var(--light-blue);
    color: var(--blue);
    padding: 10px 30px;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 9999;
}
/* header */
header {
    background-color: var(--light-blue);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1 {
    color: var(--blue);
}
nav ul {
    display: flex;
    gap: 15px;
    color: var(--blue);
    list-style-type: none;
}
#list {
    display: none;

}
nav ul li a{
    color: black;
}
nav ul li a:hover {
    color: var(--blue);
}
.homeLink {
    color: var(--blue);
}
/* home */
.home{
    background-color: var(--light-blue);
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
}
.homedetails {
    width: 40%;
}

.homedetails h2 {
    color: var(--blue);
    font-size: 30px;
    width: 40%;
    margin-bottom: 20px;
}

.homedetails p {
    margin-bottom: 20px;
    font-size: 20px;
}
.homebtn {
    background-color: var(--orange);
    color: white;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 2px;
}
.homebtn:hover {
    background-color: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}
.homeimg{
    height: 100svh;
    padding: 15px;
}
/* offer */
.offers {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    flex-wrap: wrap;
    padding: 20px;
    top: -20%;
}
.offer {
    height: 200px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: white;
    box-shadow: 0px 0px 7px gray;
}
.offer:nth-child(2) {
    background-color: var(--orange);
    color: white;
}
.offer:hover{
    background-color: var(--orange);
    color: white;
}
.offer i {
    font-size: 24px;
}
/* about */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    width: 80%;
    margin: 0 auto 10px;
    top: -150px;
}
.about div h2 {
    margin-bottom: 20px;
    font-size: 30px;
}
.about div p {
    margin-bottom: 20px;
    color: gray;
    font-size: 15px;
}
.aboutbtn {
    background-color: var(--blue);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 3px;
}
.aboutbtn:hover{
    background-color: white;
    border: 1px solid var(--blue);
    color: var(--blue);
}
.aboutimg {
    width: 50%;
}
/* more about */
.moreAbout {
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100svh;
}

.moreaboutimg {
    width: 40%;
    height: 85%;
}

.moreAboutdetails h2 {
    width: auto;
    font-size: 30px;
    color: var(--blue);
    margin-bottom: 10px;

}
.moreAboutdetails p{
    font-size: 20px;
    margin-bottom: 20px;
    color: gray;
}
/* services */
.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 10px;
    min-height: 80svh;
}
.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.service {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 0px 7px rgb(150, 150, 150);
    padding: 40px 15px;
    max-width: 350px;
}
.service i {
    font-size: 40px;
}
.service p {
    text-align: center;
}
.service:hover p {
    color: white;
}
.service:hover {
    background-color: var(--orange);
    color: white;
}
/* contactus */
.contactus {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 80svh;
    padding: 10px 10px 40px 10px;
}
.contactus h2 {
    padding-left: 25px;
}
.contact-info {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.contact-info form {
    width: 40%;
}
.contact-info form input {
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    display: block;
    box-shadow: 1px 1px 10px gray;
    text-transform: capitalize;
}
.feedback {
    height: 100px;
}
iframe {
    width: 50%;
    height: 400px;
    box-shadow: 1px 1px 10px gray;
}

footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 20px;
    text-align: center;
}

@media (max-width:1240px) {
    .offers {
        top: 0px;
    }
    .about {
        top: 0px;
    }
    .homedetails {
        padding-top: 30px;
    }
}

@media (max-width:768px) {
        nav ul {
        flex-direction: column;
        border-left: 1px solid var(--blue);
        position: absolute;
        gap: 10px ;
        right: 10px;
        top: 10px;
        z-index: 1000;
        padding: 10px 30px;
        width: 150px;
        display: none;
        }
    #list {
        display: block;
    }

    nav ul{
        display: none;
    }
    .homeimg {
        height: 30%;
        width: 90%;
    }
    .homedetails {
        padding-top: 30px;
        width: 70%;
    }
    .offers {
        flex-direction: column;
    }
    .offer {
        width: 80%;
    }
    .about {
        flex-direction: column;
        width: 100%;
    }
    .about div {
        width: 80%;
    }
    .about img {
        width: 80%
    }
    .moreAbout {
        height: 90svh;
    }
    .moreaboutimg {
        display: none;
    }
    .contact-info {
        align-items: center;
        flex-direction: column;
    }

    .contact-info form,
    iframe {
        width: 90%;
    }
}
