CSS Reset
*{
    margin: 0px;
    padding: 0px;
}

html{
    scroll-behavior: smooth;
}

/* CSS Varibles */
:root{
    --navbar-height: 59px;
}

/* Navigation bar */
#navbar{
    display: flex;
    align-items: center;
    /* position: relative; */
    position: sticky;
    top: 0px;
    margin: -8px;
    z-index: 5;
}

#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Navigation bar : Logo and image */

#logo{
    margin: 6px 25px;
}

#logo img{
    height: 50px;
    border-radius: 100%;

}

nav{
    display: flex;
}

/* Navigation bar : List Styling */

#navbar ul{
    display: flex;
    font-family: 'Baloo Bhaina 2', cursive;
}


#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a{
    color: white;
    display: block;
    padding: 0px 14px;
    border-radius: 25px;
    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: 332px;
    /* height: 320px; */
    justify-content: center;
    align-items: center;
}

#home::before{
    content: "";
    position: absolute;
    background: url('bg 1.jpg') no-repeat center center/cover; 
    height: 402px;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.95;
}

#home h1{
    color: white;
    text-align: center;
    font-family: 'Ubuntu Condensed', sans-serif;
}

#home p{
    font-family: 'Ubuntu Condensed', sans-serif;
    color: white;
    text-align: center;
    font-size: 18px;
    margin: 7px;
}

/* Serivces  Section */
#services{
    margin: 4px;
    display: flex;
}
#services .box{
    text-align: center;
    border: 2px solid #de8484;
    padding: 16px;
    margin: 10px 30px;
    border-radius: 40px;
    background-color: #f5eeee;
}
#services .box img{
    height: 100px;
    margin: auto;
    display: block;
}

/* Clients Section */
#client-section{
    position: relative;
    /* height: 250px; */
}
#client-section::before{
    content: "";
    position: absolute;
    /* background: url('bg 3.jpg') no-repeat center center/cover;  */
    background: url('clientsbg.jpg') no-repeat center center/cover; 
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-item{
    padding: 34px;
}
#clients img{
    height: 80px;
    z-index: -33;
}

/* Contact Section */
#contact{
    position: relative;
}
#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url('contact img 4.jpg') no-repeat center center/cover;
}
#contact-box{
    display: flex;
    justify-content: center;
    /* text-align: center; */
    padding-bottom: 30px;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.0rem;
}
#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.2rem;
    font-family: 'Ubuntu Condensed', sans-serif;
}
footer{
    background: black;
    color: white;
    padding: 8px 10px;
}
/* Utitity Classes */
.h-primary{
    font-size: 2.3rem;
    padding: 10px;
    /* padding-top: 0px; */
}
.h-secondary{
    font-size: 1.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px;
    margin: 2px;
}
.btn{
    padding: 6px 25px;
    border: 2px solid white;
    background-color: #4a131382;
    color: white;
    margin: 10px;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;

}

.center{
    text-align: center;
}
.box p{
    overflow: hidden;
    text-overflow: ellipsis;
}
