/*css reset*/
* {
    margin: 0;
    padding: 0;
}

/*css variable*/
:root {
    --navbar-height: 34px;
}

/*navigation bar*/
#navbar {
    display: flex;
    align-items: center;
}

/*navigation bar logo and image */
#logo {
    margin: 10px 9px;
}

#logo img {
    height: 98px;
    margin: 10px 6px;
}

/* navigation bar : list styling */
#navbar {
    position: absolute;
}

#navbar ul {
    display: flex;
    font-family: 'Baloo Bhaijaan 2', cursive;
}

#navbar::before {
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 246%;
    z-index: -1;
    opacity: 0.8;
}

#navbar ul li {
    /* color: ; */
    list-style: none;
    font-size: 1.3rem;
}


#navbar ul li a {
    color: white;
    display: block;
    padding: 3px 22px;
    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: 8px 200px;
    height: 690px;
    justify-content: center;
    align-items: center;
}

#home::before {
    content: "";
    position: absolute;
    background: url('../image.webp')no-repeat center center/cover;
    height: 100%;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -3;
    opacity: 0.82;
}

#home h1 {
    color: blue;
    text-align: center;
    font-family: 'Baloo Bhaijaan 2', cursive;

}

#home p {
    color: white;
    text-align: center;
    font-size: 1.5rem;
}

/* services classes */
#services {
    margin: 5px;
    display: flex;
}

#services .box {
    border: solid black;
    padding: 9px;
    margin-top: 45px 55px;
    border-radius: 34px;
    background: rgb(166, 189, 239);
}

#services .box img {
    height: 89px;
    margin: auto;
    display: block;
}

#services .box p {
    font-family: 'Baloo Bhaijaan 2', cursive;

}

/* clients section */
#client-section {
    position: relative;

}

#client-section::before {
    content: "";
    position: absolute;
    background: url('../book1.jpg');
    width: 100%;
    height: 54%;
    z-index: -1;
    opacity: 0.4;
}

#clients {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-item {
    padding: 34px;
}

#clients img {
    height: 150px;
}

/* Contact section */
#Contact {
    position: relative;
}

#Contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url('../ktm.jpg');
}

#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;
}

footer {
    background: black;
    color: white;
    padding: 9px 20px;
}

/* utility classes */
.h-primary {
    font-family: 'Bree serif', serif;
    font-size: 2.8rem;
    padding: 36px;
}

.h-secondary {
    font-family: 'Bree serif', serif;
    font-size: 3.6;
    padding: 12px;
}

.btn {
    padding: 6px 20px;
    border: 2px solid white;
    background-color: red;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;

}

.center {
    text-align: center;
}