/* CSS Reset */
*{
    margin: 0;
    padding: 0;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 15px;
}
/* CSS Variables */
:root{
    --navbar-height: 59px;
}
/* Navigation Bar  */
#navbar{
    display: flex;
    align-items: center;
    height: 64px;
    position: relative;
    top: 0;
    
    /* justify-content: center; */
}
#navbar::before{
    content: "";
    background-color: black;
    position:absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
    top: 0px;
    left: 0px;
}
/* Navigation Bar: Logo and Image  */

#logo{
    margin: 34px 45px;
}
#logo img{
    height: 50px;
    margin: -16px -43px;
    display: block;
    margin: auto;
}
/* Navigation Bar: List Styling */
#navbar ul{
    display: flex;
    padding-inline-start: 0px;
}

#navbar ul li{
    /* color: white; */
    list-style: none;
    font-size: 1.2rem;
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 5px 19px;
    border-radius: 20px;
    text-decoration: none;
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
}

/* Home section */
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 489px;
    align-items: center;
    justify-content: center;
}
#home::before{
    content: "";
    position:absolute;
    height: 532px;
    width: 100%;
    /* background: url("https://source.unsplash.com/1600x900/?developer") no-repeat center center/cover; */
    background: url("../bg1.jpg") no-repeat center center/cover;
    z-index: -1;
    opacity: 0.79;
    top: 0px;
    left: 0px;
}

#home h1{
    color: whitesmoke;
    text-align: center;
    /* font-family: 'Lobster', cursive; */
    font-size: 30px;
}
#home p{
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    text-align: center;
    /* font-family: 'Lobster', cursive; */
    font-size: 20px;
}

/* Services Sections */
#services{
    margin: 34px;
    display: flex;
}
#services .box{
    border: 2px solid red;
    padding: 30px;
    margin: 20px;
    border-radius: 20px;
    background-color: #cee3f159;
}
#services .box img{
    height: 150px;
    margin: auto;
    display: block;
    
}
#services{}
#services{}

/* searchbar */
.sbtn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: rgb(0 100 231 / 62%);
    border-radius: 9px;
    color: white;
    cursor: pointer;
}
.sbtn:hover{
    background-color: rgb(0 100 231);
    border-color: grey;
}
.search{
    width: 300px;
    border-radius: 8px;
    border-color: rgb(0 100 231);
    margin-left: 464px;
    
    font-style: normal;
}
/* Client section */
#clients{
    display: flex;
    align-items: center;
    justify-content: center;
}
#client-section{
    /* height: 176px; */
    position: relative;
}
.client-item{
    padding: 26px;
}
#client-section::before{
    content: "";
    position: absolute;
    background: url("../bg.jpg");
    width: 100%;
    height: 500px;
    z-index: -1;
    opacity: .4;
}

#clients img{
    height: 105px;
}
/* Contact Section */
#contact{
    position: relative;
    margin-top: 71px;
    
}
#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url('../contact.jpg') no-repeat center center/cover;
}
#contact-box input, #contact-box textarea{
    width: 100%;
    padding: 0.5rem ;
}
footer{
    background: black;
    color: white;
    padding: 9px 20px;
}
#contact-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
}
#contact-box form{
    width: 48%;
}
#contact-box label{
    font-size: 1.3rem   ;
}

/* Utility Classes */
.h-primary{
    font-size: 2.3rem;
    padding: 12px;
}
.h-secondary{
    font-size: 1.9rem;
    padding: 12px;
}

.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: rgb(0 100 231 / 62%);
    border-radius: 9px;
    color: white;
    margin: 17px;
    cursor: pointer;
}
.btn:hover{
    background-color: rgb(0 100 231);
    border-color: grey;
}

.center{
    text-align: center;
}
