*{
    margin: 0;
    padding: 0;
    font-family: 'Nerko One', cursive;

}

/* CSS Variables */

/* Navigation Bar background */

#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    width: 100%;
    height: 90%;
    z-index: -1;
    opacity: 0.4;
}
#navbar{
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    padding-right: 5px;
    
}
/* Navbar logo image */
#logo img{
    width: 70px;
    height: 70px;
    padding: 8px 15px;
    border-radius: 25px;
}
#logo img:hover{
    background-color: white;
    border-radius: 10px;
    transition: 0.2s;
    padding: 10px;
}
/* Navigation Bar List items */
#navbar ul{
    display: flex;
    
}
/* Navigation Bar List styling */
#navbar ul li{
    list-style: none;
    
}
#navbar ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 10px 30px;
    display: block;
    border: 1px solid white;
    border-radius: 10px;
    margin: 0 2px;
    
}
#navbar ul li a:hover{
    color: black;
    padding: 10px 30px;
    border-radius: 20px ;
    background-color: white;
    transition: 0.2s

}
/* Home section */
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    height: 550px;
    
}
#home::before{
    content: "";
    background-image: url(/project3/images/home.jpg);
    position: absolute;
    width: 100%;
    height: 140%;
    z-index: -1;
    opacity: 0.89;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    
}
#home h1{
    color: white;
    text-align: center;
}
#home p{
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

#services{
    margin: 34px;
    display: flex;
    align-items: center;
    justify-content: space-around;
   
}   
#services .box :hover{
        background-color: black;
        color: white;
        transition: 0.7s;
        cursor: pointer;
        border-radius: 15px;
}

.services-container{
    margin-top: 150px;
}
#services .box{
    border: 2px solid brown;
    width: 30%;
    padding: 10px;
    border-radius: 20px;
    background-color: rgb(245, 189, 179);
}


#services .box img{
    height: 200px;
    display: block;
    width: 200px;
    margin: auto;
}
/* utility classes */
.head_primary{
    font-size: 4rem;
    padding: 12px;
}
.head_secondary{
                        font-size: 2rem;
                        padding: 12px;
                    }
.btn-primary{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    margin: 7px;
    font-size: 1rem;
    border-radius: 15px;

}
.btn-primary:hover{
    cursor: pointer;
    color: white;
    background-color: black;
    transition: 0.5s;
}
.center{
    text-align: center
}
/* clients section */
#client_section {
    content: "";
    background-image: url(/project3/images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.89;
    height: 400px;

}

#client_section h1{
    color: white;
}

#clients{
    padding: 10px;
    display: flex;
    justify-content: center;
}
.client-item img{
    width: 200px;
    height: 200px;
    border-radius: 20px;
    padding: 10px;
}
/* contact section */
#contact{
    background-image: url(/project3/images/contact.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.89;
    height: 500px;
    width: 100%;
    
    
}
#contact_form input, #contact_form textarea{
    padding: 0.5rem;
    width: 97%;
    border-radius: 30px;
}
#contact_form{
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact_form label{
    font-size: 20px;
}

footer{
    background-color: black;
    color: white;
    padding: 10px;
}

