* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navbar-height: 59px;
}


/* Navigation bar */

#navbar {
    display: flex;
    align-items: center;
    top: 0px;
}

#navbar ::before {
    content: "";
    /* background-color: black; */
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
}


/* navigation bar and logo image  */

#logo {
    margin: 10px 34px;
}

#logo img {
    height: 59px;
    margin: 3px 6px;
}


/* Navigation Bar and listing style */

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

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

#navbar ul li a {
    color: rgb(0, 0, 0);
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}

#home {
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 550px;
    justify-content: center;
    align-items: center;
}


/* hOME SECTION  */

#home::before {
    content: "";
    position: absolute;
    background: url(image/home.png) no-repeat center center/cover;
    height: 642px;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
    opacity: .9;
}

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

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

.linkwalahai {
    text-decoration: none;
    color: cornsilk;
}


/* service section  */

#service-container {
    margin: 20px;
    /* background-color: cornsilk; */
}

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

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

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

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


/* About section */

.about {
    padding: 100px 0px;
}

.about-row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about-leftcol {
    flex-basis: 50%;
    max-width: 400px;
    margin: auto;
}

.about-rightcol {
    flex-basis: 50%;
    text-align: center;
}

.about-leftcol h1 {
    font-size: 50px;
}

.about-leftcol p {
    font-size: 20px;
    text-align: justify;
    margin: 15px 0px;
}

.about-rightcol img {
    width: 80%;
}


/* contact section  */

#contact {
    position: relative;
}

#contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: rgb(226, 219, 219);
}

#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;
    text-align: center;
}


/* allitems */

.maincenter {
    font-family: 'Bree Serif', serif;
    font-size: 3.8rem;
    padding: 12px;
    text-align: center;
    z-index: -1;
}

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