*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
     }
.footer{
    margin-top: auto;
    background-color: var(--white);
    box-shadow: 0px 0px 0px 1px var(--right-shadow);
    text-align: center;
    padding: 20px 0px;
}
:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --black:#000;
  --right-shadow:rgba(0,0,0,0.3);
  --bottom-shadow:rgba(0,0,0,0.3);
  --top-shadow:rgba(0,0,0,0.3);
  --hover:#eee;

}

.logo{
    display: none;
}

header{
    width: 100%;
    height: 70px;
    position: fixed;
    background-color: var(--white);
    box-shadow: 0px 1px 0px 0px var(--bottom-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    z-index: 99 !important;
}

.nav{
    height: 70px;
    line-height: 70px;
    overflow: hidden;

}

.nav li{
    list-style: none;
}
.nav li a{
   text-decoration: none;
   color: var(--black); 
   padding:0px 10px;
}
.nav li a:hover{
    background-color: var(--hover);
}


.link-bar{
    position: fixed;
    top: 70px;
    left: 0;
    width: 200px;
    height: 0;
    background-color: var(--white);
    box-shadow: 1px 0px 0px 0px var(--right-shadow);
    overflow: hidden;
    z-index: 98 !important;
}
.link-bar a{
    background-color: #000;
    margin-top: 5px;
    color: white;
    padding: 10px 20px;
}
.link-bar a:hover{
    transition: 0.5s;
    background-color: var(--hover);
    color: var(--black);
}
.sidebar-show{
    height: 100%;
    display: flex;
    flex-direction: column;
}


.body-content{
    position: relative;
}

.carousel-item img{
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

/* about us================== */

.about-us{
    text-align: center;
    color: white;
    padding: 20px 0px;
}

.underline-design{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* top=================== */

.under-line1-top{
    width: 200px;
    height: 5px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
}
.under-line2-top{
    width: 300px;
    height: 5px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
}
.under-line3-top{
    width: 400px;
    height: 5px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
}


/* bottom============== */
.under-line1{
    width: 400px;
    height: 5px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
}
.under-line2{
    width: 300px;
    height: 5px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
}
.under-line3{
    width: 200px;
    height: 5px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
}

/* our team==================== */

.card img{
    width: 100%;
    height: 200px;
}

.fa-solid,.fa-brands{
    background-color: rgb(180, 239, 241);
    padding: 20px 10px;
    font-size: 30px;
}