* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
}

html {
    scroll-behavior: smooth;
}

/* ........ Scrollbar........ */
::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background-color: #252424;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(101, 97, 97);
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: aliceblue;
}

header {
    height: 60px;
    width: 100%;
    color: #fff;
    background-color: #3b3a3a;
    display: flex;
    align-items: center;
}

/* Nav Bar */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.logo h1 {
    font-size: 30px;
}

.nav-links {
    margin-left: auto;
}

.nav-links li {
    display: inline-block;
    margin: 0 15px;
    font-size: 18px;
    font-weight: 550;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
}

.nav-links a:hover {
    color: #4CAF50;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn i {
    font-size: 25px;
    margin: 0 6px;
    display: none;
}

/* ........ACTIVE - PAGE........ */
.active {
    border-bottom: solid 3px #45a049;
}

/* ........HERO BACKGROUND........ */
.hero {
    width: 100%;
    height: auto;
    background: url(../images/heo-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 140px 0;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 30px;
    margin-bottom: 10px;
}

/* ........Contact form........ */
.contact {
    padding: 50px 0px;
}

.contact h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 28px;
}

.contact-section {
    background-color: rgb(224, 223, 223);
    width: 80%;
    margin: 0 auto;
    display: flex;
    border-radius: 10px;
    flex-wrap: wrap;
    position: relative;
}

.contact-form {
    padding: 30px 20px;
    width: 60%;
    height: auto;
}

.form-group input[type="submit"] {
    background-color: #4CAF50;
    /* Green background */
    color: white;
    /* White text */
    padding: 15px 20px;
    /* Padding for the button */
    border: none;
    /* No border */
    cursor: pointer;
    /* Cursor style */
}

/* Hover effect */
.form-group input[type="submit"]:hover {
    background-color: #45a049;
    /* Darker green background on hover */
}

.form-group input,
textarea {
    width: 100%;
    margin-top: 10px;
    padding: 20px;
    font-size: 20px;
    border: #4CAF50 solid 1px;
    border-radius: 5px;
}

/* ........ Contact - Info ........ */
.contact-info-input {
    width: 40%;
    padding: 30px;
}

.cont-box {
    border: 2px solid #4CAF50;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    margin: 10px 0;
    text-align: inherit;
}

.cont-box p {
    font-size: 20px;
    margin: 0;

}

.cont-box span {
    font-size: 35px;
    color: #4CAF50;
    margin: 0px 0 10px 0;
}


/* Footer */
footer {
    background-color: #333;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

footer p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}









/* media Query */
@media only screen and (min-width: 768px) {
    .menu-icon {
        display: none;
    }

    #nav-list {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .logo h1 {
        font-size: 20px;
    }

    #menu {
        display: none;
    }

    #menu {
        background-color: #515050;
        width: 100%;
        position: absolute;
        top: 60px;
        right: 0;
        text-align: center;
        height: auto;
    }

    #menu li {
        display: block;
        margin: 10px 0;
    }

    .nav-btn i {
        display: block;
    }

    #close-Icon {
        display: none;
        font-size: 30px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .contact-section {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-info-input {
        width: 100%;
    }


}