* {
    padding: 0px;
    margin: 0px;
    outline: none;
    border: none;
    box-sizing: border-box;

    list-style-type: none;
    text-decoration: none;
    position: relative;

}

:root {
    --blue: #007bff;
    --light-blue: #d1e3ff;
    --orange: #ff8a1d;
    --dark-blue: #0a0f43;

}

body {
    max-width: 100svw;

    height: 100svh;
    max-height: 100svh;

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-blue);
}

h1 {
    color: var(--blue);
    font-size: 1.5rem;
}

.nav-list {
    font-size: 24px;
    color: var(--blue);
    display: none;
}



nav ul {
    display: flex;
    gap: 10px;
}

nav ul li a {
    color: black;
}

nav ul li a:hover {
    color: var(--blue);
}


.home-link {
    color: var(--blue);
}

.hero {
    padding-top: 2%;
    background-color: var(--light-blue);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info {
    width: 40%;
}

.info h2 {
    color: var(--blue);
    font-size: 2.1rem;
    width: 40%;

    margin-bottom: 20px;
}

.info p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #4f4f4f;
}

.info button {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: white;
    font-weight: bold;
    padding: 12px 40px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

.info button:hover {

    background-color: transparent;
    color: var(--orange);
}

.hero img {
    height: 90%;
    padding: 10px;
}

.offers {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    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;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.offer:nth-child(2) {
    background-color: var(--orange);
    color: white;
}

.offer:hover,
.service:hover {
    background-color: var(--orange);
    color: white;
}

.offer i {
    font-size: 24px;
}

/* about section  */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    width: 80%;
    margin: 0 auto 10px;

    top: -150px;
}

.about img {
    width: 50%
}

.about div h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
}

.about div p {
    margin-bottom: 20px;
    color: #4f4f4f;
}

.about div button,
.send-btn {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.more-about {
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100svh;
}

.more-about img {
    width: 47%;
    height: 85%;
}

.more-about .right h2 {
    width: auto;
    font-size: 2rem;
}

.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 10px;
    min-height: 80svh;
}

.services button {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: white;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 2px;
}

.services button:hover,
.send-btn:hover {
    background-color: transparent;
    color: var(--blue);
}

.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;

    -webkit-transition: background-color 0.5s, transform 0.5s;
    -moz-transition: background-color 0.5s, transform 0.5s;
    -ms-transition: background-color 0.5s, transform 0.5s;
    -o-transition: background-color 0.5s, transform 0.5s;
    transition: background-color 0.5s, transform 0.5s;
}

.service i {
    font-size: 40px;
}

.service p {
    text-align: center;
    color: #3d3d3d;
}

.service:hover p {
    color: white;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 80svh;
    padding: 10px 10px 40px 10px;
}

.contact 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: 0px 0px 7px #ccc;
    text-transform: capitalize;

}

.feedback {
    height: 100px;
}

.send-btn {
    width: 100px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

iframe {
    width: 50%;
    height: 400px;
    box-shadow: 0px 0px 10px #ccc;
}

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

}


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

    .about {
        top: 0px;
    }
}

.show{
    display:flex;
}

@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;
        -webkit-transition: display 0.5s;
        -moz-transition: display 0.5s;
        -ms-transition: display 0.5s;
        -o-transition: display 0.5s;
        transition: display 0.5s;

        -webkit-border-radius: 10px 0px 10px 10px;
        -moz-border-radius: 10px 0px 10px 10px;
        -ms-border-radius: 10px 0px 10px 10px;
        -o-border-radius: 10px 0px 10px 10px;
        border-radius: 10px 0px 10px 10px;
}

    .nav-list {
        display: block;
    }

    .hero img {
        height: 30%;
        width: 90%;
    }

    .info {
        padding-top: 10px;
        width: 70%;
    }

    .offers {
        flex-direction: column;

    }

    .offer {
        width: 80%;
    }

    .about {
        flex-direction: column;
        width: 100%;
    }

    .about div {
        width: 80%;
    }

    .about img {
        width: 80%
    }

    .more-about {
        height: 90svh;
    }

    .more-about img {
        display: none;
    }

    .contact-info {
        align-items: center;
        flex-direction: column;
    }

    .contact-info form,
    iframe {
        width: 90%;
    }
}
@media (max-width: 1024px) {
    .info h2 {
        width: 100%;
    }
    
    .hero {
        gap: 20px;
    }
    
    .offers {
        top: 0;
    }
    
    .offer {
        width: 45%;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
    
    nav ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        padding-top: 80px;
        padding-left: 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
        gap: 20px;
    }
    
    nav ul.show {
    right: 0;
    display: flex;
}
    
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 30px 20px;
    }
    
    .info {
        width: 90%;
        order: 2;
    }
    
    .info h2 {
        width: 100%;
        font-size: 1.8rem;
    }
    
    .hero img {
        width: 90%;
        height: auto;
        order: 1;
    }
    
    .offers {
        flex-direction: column;
        align-items: center;
        top: 0;
        padding: 30px 20px;
    }
    
    .offer {
        width: 90%;
        max-width: 400px;
    }
    
    .about {
        flex-direction: column;
        width: 90%;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
        margin: 0 auto;
    }
    
    .about img {
        width: 90%;
        order: 1;
    }
    
    .about div {
        width: 90%;
        order: 2;
    }
    
    .more-about {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }
    
    .more-about img {
        display: block;
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    
    .more-about .right {
        width: 90%;
    }
    
    .services-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .service {
        width: 90%;
        max-width: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info form,
    iframe {
        width: 90%;
    }
    
    iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    .info h2 {
        font-size: 1.5rem;
    }
    
    .info p {
        font-size: 0.95rem;
    }
    
    button {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    
    .offer {
        width: 95%;
        height: 180px;
    }
    
    .offer h3 {
        font-size: 1.1rem;
    }
    
    .about div h2 {
        font-size: 1.5rem;
    }
    
    .service {
        padding: 30px 20px;
    }
    
    .service i {
        font-size: 32px;
    }
    
    .contact h2 {
        padding-left: 15px;
        font-size: 1.5rem;
    }
    
    nav ul {
        width: 200px;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

button, 
nav ul li a,
.nav-list {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1, h2, h3, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }
}