/* CSS Reset */
*{
    margin: 0px;
    padding: 0px;
}

/* CSS Variables */

/* Navigation Bar */
#navbar{
    display: flex;
    align-items: center;
    position: relative;
    top: 0px;
}

/*Navigation Bar: Logo and Image  */

#logo{
    margin: 34px 40px;
}

#logo img{
    height: 60px;
    margin: 10px 12px;
    border-radius: 28px;
}


/* Navigation Bar: List styling */


#navbar ul{
    display: flex;
    margin:10px;
}

#navbar::before{
    content: "";
    background-color: rgb(24, 22, 22);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 72%;
    width: 100%;
    z-index: -1;
    opacity: .8;
}

#navbar ul li{
    font-size: 1.2rem;
    list-style: none;
    font-family: 'PT Serif', serif;
}

#navbar ul li a{
    color: blanchedalmond;
    display: block;
    padding: 3px 22px;
    text-decoration: none; 
}

#navbar ul li a:hover{
    color: black;
    background-color: cornsilk;
    border-radius: 16px;
    
}


/* Home Section */

#home{
    display: flex;
    flex-direction: column;
    padding: 4px 150px;
    height: 240px;
    justify-content: center;
    align-items: center;
}

#home::before{
    content: "";
    position: absolute;
    background: url('../bg1.jpg') no-repeat center center/cover;
    height: 55%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: .88;
}

#home h1{
    color: rgb(250, 250, 77);
    text-align: center;
    font-size: 1.6rem;
    font-family: 'PT Serif', serif;
}

#home p{
    font-size: 1.2rem;
    color: rgb(214, 241, 214);
}

#home p:hover{
    color: rgb(126, 252, 36);
}


/* Utility Classes */

.center11{
    text-align: center;
    padding: 12px;
    background-color: black;
    color: blanchedalmond;
}
.h-primary{
    font-size: 2.9rem;
    padding: 14px;
    font-family: 'PT Serif', serif;
    font-weight: bold;
}

.h-primary-center{
    font-size: 1.9rem;
    padding: 4px;
    margin: 12px;
    font-family: 'PT Serif', serif;
    font-weight: bold;
    text-align: center;
    background-color: rgb(252, 173, 26);
    height: 20px;
}
.h-primary-center1{
    font-size: 1.9rem;
    padding: 8px;
    margin: 8px;
    font-family: 'PT Serif', serif;
    font-weight: bold;
    text-align: center;
}

.h-secondary-center{
    font-size: 1.2rem;
    padding: 8px;
    margin: 6px;
    font-family: 'PT Serif', serif;
    text-align: center;
}

#btn{
    padding: 6px 10px;
    margin: 10px 10px;
    color: rgb(245, 238, 238);
    border: 1px solid black;
    background-color: rgb(238, 82, 54);
    font-weight: bold;
    cursor: pointer;
    border-radius: 12px;
}

#btn:hover{
    background-color: seashell;
    color: black;
    border-radius: 16px;
    font-size: .8rem;
    font-weight: bold;
}

/* Services Section */

.box li{
    list-style: none;
}

#services{
    margin: 34px;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: rgb(238, 237, 237);
    box-shadow: 8px -16px 28px rgb(149, 243, 9);
}

#services .box{
    border: 2px solid brown;
    margin: 14px;
    padding: 28px 16px;
    border-radius: 20px;
    background-color: rgb(245, 231, 231);
}

#services .box img{
    display: block;
    margin: auto;
    height: 150px;
}

#services .box p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.services-container h1{
    color: rgb(7, 7, 253);
}

.box details{
    color: rgb(250, 12, 12);
}

.box details:hover{
    cursor: pointer;
    background-color: rgb(16, 17, 16);
    border-radius: 8px;
}

.box p:hover{
    background-color: rgb(218, 192, 192);
    border-radius: 12px;
}

/* Client Section */

#client-section{
    height: 350px;

}

#client-section::before{
    content: "";
    position: absolute;
    background: url('../bg.jpg') no-repeat center center/cover;
    width: 100%;
    height: 48%;
    z-index: -1;
    opacity: .38;
}

#clients{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 4px;
}

#clients img{
    height: 120px;
    border: 1px solid black;
    border-radius: 40px;
    width: 190px;
    background-color: rgb(255, 249, 241);
}

#clients img:hover{
    background-color: rgb(0, 10, 10);
    border: 2px solid rgb(14, 12, 12);
}

.clients-items{
    margin: 8px 12px;
    padding: 24px;
}

.clients-items a{
    text-decoration: none;
    color: rgb(20, 9, 2);
    font-size: 1.4rem;
}


.clients-items a:hover{
   color: rgb(252, 71, 26);
}

/* Contact Section */

#contact-box{
    display: flex;
    justify-content: center;
    text-align: center;
    padding-bottom:4px ;
}

#contact-box input{
    width: 100%;
    padding: 0.5rem;
    margin: 4px;
    border-radius: 6px;
    text-align: center;
    background-color: rgb(223, 219, 218);
} 
#contact-box label{
    font-size: 1.2rem;
}
#contact{
    position: relative;
    height: 300px;
}

#contact::before{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../contact.jpg') no-repeat center center/cover;
    opacity: .8;
}
