.navbar {
    background-color: #222;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.navbar ul li a:hover {
    background-color: #333;
}

.navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    background-color: #333;
    display: none;
    width: 200px;
    padding: 0;
}

.navbar ul li:hover ul {
    display: block;
    animation: fade-in 0.3s ease-in-out;
}

.navbar ul li ul li {
    display: block;
}

.navbar ul li ul li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.navbar ul li ul li a:hover {
    background-color: #444;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* ................................................................................. */

.logo {
    margin: 1%;
    width: 4%;
}

.name {
    margin: 2%;
    width: 20%;
}

.headquote {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    font-size: 40px;
    text-align: center;
    line-height: 80px;
}

.horline {
    background-color: orange;
    height: 10px;
    width: 100%;
}

.alignCenter {
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: black;
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.quicklinks h1,
h2 {
    color: white;
    text-decoration: underline;
}

.quicklinks h3,
a {
    color: orange;
    margin-top: 2%;
    font-size: medium;
    text-decoration: none;
}

.verticleline {
    width: 3px;
    height: 200px;
    background-color: white;
}


/* chatgpt */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 100px auto;
    padding-top: 100px;
    max-width: 100%;
}

.section {
    flex-basis: 50%;
    padding: 0px;
    box-sizing: border-box;
    text-align: center;
    font-size: 20px;
    line-height: 200%;
}

.section img {
    max-width: 100%;
    height: auto;
}

.button {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #333;
    color: #fff;
}

@media only screen and (max-width: 600px) {
    .logo {
        margin: 1%;
        width: 4%;
    }
    .name {
        margin: 2%;
        width: 50%;
    }
    .headquote {
        font-family: 'Times New Roman', Times, serif;
        font-size: 20px;
        text-align: center;
        line-height: 40px;
    }
    .serviceslist {
        display: block;
        text-align: center;
        margin: 2%;
    }
    .serviceitem {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 2%;
    }
    .footer {
        background-color: black;
        display: block;
        justify-content: space-around;
        padding: 20px;
    }
}