/* css reset */
*{
    margin: 0;
    padding: 0;
}

#logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin: 3px 6px;
}

#logo{
    margin: 5px 10px;
}

#navbar{
    display: flex;
    align-items: center;
    position: relative;

}


/* navigation bar: list styling */
#navbar ul {
        display: flex;
        font-family: 'Baloo Bhai',cursive;
    }

#navbar::before{
    content: "";
    background-color: rgb(0, 0, 0);
    position: absolute;
    border-radius: 23px;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;/*content ko upper le aye ga*/
    opacity: 0.4;

}
#navbar ul li{
    /* color: white; */
    list-style: none; /*bullets khatam ho jayein ge*/
    font-size: 1.3rem;
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none; /*line niche se khatam ho jaye gi*/
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
    
}

/* HOME SECTION */
#home{
    display: flex;
    height: 422px;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
}

#home::before{
    content: "";
    background: url('bg2.jpg') no-repeat center center/cover;
    position: absolute;
    border-radius: 23px;
    height: 80%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;/*content ko upper le aye ga*/
    opacity: 0.59;
}

#home h1{
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Bree Serif', serif;
}

/* service section */
#services{
    margin: 0px;
    display: flex;
}
#services .box{
    border: 2px solid brown;
    padding: 20px;
    margin: 20px;
    border-radius: 23px;
    background-color: #fff7f7;
}
#services .box img{
    height: 160px;
    margin: auto; /*margin:auto tab kam kare ga jab diplay:block ho ga*/
    display: block;
    border-radius: 20px;
}

/* client */
#client{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}
.client_item{
    padding: 34px;
}

#client img{
    height: 100px;
}
#client::before{
    content: "";
    background: url('bg3.jpg') no-repeat center center/cover;
    border-radius: 23px;
    position: absolute;
    height: 40%;
    width: 100%;
    z-index: -1;/*content ko upper le aye ga*/
    opacity: 0.5;
}

/* contact */
#contact{
    position: relative;
    
}
#contact::before{
    content: '';
    position: absolute;
    border-radius: 23px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url('bg5.jpg') no-repeat center center/cover;
}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}
#contact-box input, 
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
} 

#contact-box form{
    width: 40%;
}

#contact-box label{
   font-size: 1.3rem;
   font-family: 'Bree Serif', serif;

}


footer{
    background: black;
    color: white;
    padding: 9px 20px;
}

/* utility classes */
.h_primary{
    font-size: 3rem;
}

.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
   
}

.h-secondary{
    font-size: 2.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
    font-size: 2.3rem;
}

.btn{
    padding: 6px 24px;
    border: 2px solid rgb(149, 226, 24);
    background-color: rgb(154, 224, 24);
    color: rgb(219, 231, 220);
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;  
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.center{
    text-align: center;
}
