/* CSS Reset */
body {
    margin: 0px;
    padding:0px;
}

html {
    scroll-behavior: smooth;
}

/* CSS Variables */
:root {
    --navbar-height: 59px;
}

/* Navigation Bar */
#navbar {
    display: flex;
    position: relative;
    top: 0px;
    /* left: 0px; */
    align-items: center;
    position: sticky;
}

#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: -2px 15px;
}

#logo img {
    height: 60px;
    margin: 4px 6px;
    border-radius: 50%;
}

/* Navigation Bar: List Styling */

#navbar ul {
    display: flex;
    font-family: 'Baloo Bhai' , 'cursive'; 
}

#navbar ul li {
    list-style: none;
    font-size: 1.1rem;
}

#navbar ul li a {
    color: white;
    display: block;
    padding: 3px 18px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover {
    color: black;
    background-color: white; 
}

/* Home Section*/
#home {
    display: flex;
    height: 300px;
    flex-direction: column;
    padding: 60px 200px;
    justify-content: center;
    align-items: center;
    line-height: 0%;
}

#home::before {
    content: ""; 
    background-image: url(./../images/bg.jpg);
    background-size:cover ;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 80%;
    width: 100%;
    z-index: -1;
    opacity: 0.89;   
}

#home h1 {
    color: white;
    text-align: center;
    font-family: 'Bree Serif' , 'serif';

}

#home p {
    color: white;
    text-align: center;
    font-size: 1rem;
    font-family: 'Bree Serif' , 'serif';
}

/* Services Section */

#services {
    margin: 34px;
    display: flex;
}

#services .box {
    border: 2px solid brown;
    padding: 34px;
    margin: 1px 22px;
    border-radius: 28px;
    background: #f2f2f2;
    margin-bottom: 20px;
}

#services .box img {
    height: 156px;
    display: block;
    margin: auto;
}

#services .box p {
    font-family: 'Bree Serif' , 'serif';
}

/* Clients Section */

#client-section {
    /* height: 344px; */
    position: relative;
}

#client-section::before {
    content: "";
    position: absolute;
    background-image: url(./../images/bg.avif);
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#clients {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-item {
    padding: 8px;
    filter: invert(100%); ;
}

#clients img {
    width: 66px;
    padding: 6px;
    height: auto;
}

/* Contact Section */
#contact {
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url(./../images/bg.jfif) no-repeat center center/cover;
}

#contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}

#contact-box form {
    width: 40%;
}

#contact-box label {
    font-size: 1.3rem;
    font-family: 'Bree Serif' , 'serif';
}

#contact-box input, 
#contact-box textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.1rem;
}   

footer {
    background: black;
    color: white;
    padding: 9px 20px;
}

/* Utility Classes */
.h-primary {
    font-family: 'Bree Serif' , 'serif';
    font-size: 3rem;
    padding: 12px;
}

.h-secondary {
    font-family: 'Bree Serif' , 'serif';
    font-size: 2.3rem;
    padding: 4px;
}

.btn {
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.1rem;
    border-radius: 15px;
    cursor: pointer;
}

.center {
    text-align: center;
}


