* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}

#Navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 32px;
    background-color: white;
    font-weight: bold;
    box-shadow: 0px 1px 8px 0px grey;
}


#logoImg {
    width: 20%;
}

#unOrderList {
    display: flex;
}

.menu {
    color: #007bff;
    padding-right: 23px;
}

#unOrderList li::after {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    background-color: #007bff;
    transition: 0.5s;
}

#unOrderList li:hover::after {
    width: 75%;
}

#signUpBtn {
    border: none;
    color: white;
    background-color: #007bff;
    padding: 8px;
}

#signUpBtn:hover {
    cursor: pointer;
    background-color: #0056b3;
}

#signInBtn {
    font-weight: bolder;
    border: none;
    background-color: transparent;
    color: #007bff;
    padding: 8px;
    font-size: 17px;
}

#signInBtn:hover {
    color: #0056b3;
    cursor: pointer;
}

/* ````````````````Pop Up Menu ````````````````*/

#icon {
    display: none;
    color: black;
    cursor: pointer;
    font-size: 1.5rem;
}

.pop-up {
    display: block;
    position: absolute;
    text-align: center;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 1;
}

.pop-up.open {
    height: 320px;
    z-index: 1;
}

.menuPop {
    font-weight: bold;
    color: #007bff;
}

.menuList {
    padding: 20px;
}

#btnPop {
    border: none;
    border-radius: 12px;
    width: 90%;
    color: white;
    background-color: #007bff;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#btnPop:hover {
    background-color: #0056b3;
}

#btnPop2 {
    font-weight: bolder;
    border: none;
    background-color: transparent;
    color: #007bff;
    padding: 8px;
    font-size: 17px;
}

#btnPop2:hover {
    color: #0056b3;
    cursor: pointer;
}

/* ````````````````````````` */

#front {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-top: 23px;
}

#intro {
    padding: 0px 70px;
}

#introH2 {
    padding-bottom: 10px;
    color: #007bff;
}

#mainImg {
    height: 25em;
    padding-right: 23px;
}

#introP {
    line-height: 2rem;
}
#introP2 {
    display: none;
}

/* ```````````````services css```````````````````` */

#main {
    margin: 5rem 0rem;
}

.main_heading {
    color: #007bff;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 3rem;
}

#container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 10px;
}

.service {
    border-radius: 7px;
    padding: 1em;
    margin: 20px;
    text-align: center;
    color: black;
    box-shadow: 0px 0px 6px 0px;
}

.serH2 {
    padding-bottom: 10px;
    font-size: 2rem;
}

.serP {
    line-height: 2rem;
}

/* ```````````````footer contact css`````````````````````` */

#contact {
    padding: 20px;
    background-color: #f2f2f2;
    text-align: center;
}

#contact_form {
    max-width: 400px;
    margin: 0 auto;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: #007bff;
    font-weight: bold;
}

.sameInput {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#message {
    resize: vertical;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#subBtn {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 8px 20px;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#subBtn:hover {
    background-color: #0056b3;
}

/*```````````````````````````````````````` */

#foot {
    background-color: #0056b3;
    color: white;
    font-weight: bold;
}

.info {
    text-align: center;
    padding: 5px 0px;
}