@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Ubuntu Sans", sans-serif;
}
/*Nav bar section*/
#nav-bar{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    background-color: rgb(28, 26, 26);
    box-shadow: 2px 3px 10px ;
}
#nav-bar #logo-container{
    width: 300px;
    height: auto;
    display: grid;
    place-items: center;
}
#nav-bar #logo-container img{
    width: 130px;
    height: 130px;
}
#nav-bar #list-container{
    width: 40%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#nav-bar #list-container ul{
    display: flex;
    list-style-type: none;
}
#nav-bar #list-container ul li a{
    text-decoration: none;
    color: rgb(222, 219, 219);
    padding: 10px 20px;
    font-size: 18px;
    transition: .5s all;
}
#nav-bar #list-container ul li a:hover{
    border-bottom: 1px solid gray;
    color: aqua;
}
.navunderheading{
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
    font-weight: normal;
}
.navunderheading a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

#menu-bar{
    display: none;
}
#nav-bar label{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
}

/*Services first Section*/
#servicesFirstSection{
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(243, 243, 243);
}
#servicesFirstSection h1{
    width: 30%;
    text-wrap: wrap;
    font-size: 35px;
    font-weight: bold;
}
#servicesFirstSection p{
    font-size: 18px;
    width: 40%;
}

/*Services Container section*/
#services_container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    background-color: rgb(243, 243, 243);
}
#services_container .each-service{
    width: 30%;
    height: auto;
    padding: 20px;
    display: grid;
    place-items: center;
    background-color: rgba(245, 245, 245, 0.888);
    border-radius: 10px;
    box-shadow: 2px 3px 7px gray;
    margin: 20px 20px;
}
#services_container .each-service img{
    width: 70px;
    height: auto;
}
#services_container .each-service h1{
    font-size: 28px;
    text-align: center;
    padding: 15px 20px;
}
#services_container .each-service p{
    font-size: 18px;
    text-align: center;
    padding: 15px 0px;
}
#services_container .each-service a{
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    color: blue;
    transition: .5s all;
}
#services_container .each-service a:hover{
    letter-spacing: 0.5px;
    border-bottom: 1px solid blue;
}
/*Quick link section*/
#Quick-link{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* background-image: linear-gradient(to left, rgb(6, 245, 233) , rgba(12, 255, 158, 0.863)); */
    background-color: black;
}
#Quick-link #logolist{
    width: 30%;
    height: auto;
    display: grid;
    place-items: center;
}
#Quick-link #logolist img{
    width: 250px;
    height: 250px;
}
#Quick-link #logolist ul{
    list-style: none;
    display: flex;
}
#Quick-link #logolist ul li a{
    text-decoration: none;
    font-size: 22px;
    padding: 15px 20px;
    cursor: pointer;    
}
#Quick-link #logolist ul li a ion-icon{
    transition: .5s all;
    color: white;
}
#Quick-link #logolist ul li a ion-icon:hover{
    font-size: 26px;
    transform: rotate(360deg);
    color: blue;
}
#Quick-link #short-expl{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#Quick-link #short-expl h1{
    font-size: 28px;
    padding: 20px;
    color: white;
}
#Quick-link #short-expl p{
    font-size: 18px;
    padding: 20px;
    color: white;
}
#Quick-link #quick-link-list{
    width: 30%;
    height: auto;
    display: grid;
    place-items: center;
}
#Quick-link #quick-link-list ul{
    list-style-type: none;
    padding: 20px;
}
#Quick-link #quick-link-list ul li{
    padding: 5px;
}
#Quick-link #quick-link-list ul li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}


.wpbtn{
    position: fixed;
    float: right;
    bottom: 30px;
    right: 20px;
    padding: 10px;
    border-radius: 50%;
    height: 62px;
   /* background-image: linear-gradient(to right , rgb(44, 243, 243) , rgb(15, 236, 185));*/
   color: white;
   background-color: green;
   transition: .5s all;
}
.wpbtn:hover{
    background-color: white;
    color: black;
}
.wpbtn a{
    text-decoration: none;
    font-size: 40px;
    transition: .3s all;
    color: white;
    border-radius: 50%;
}
.wpbtn a:hover{
    color: black;
}


footer{
    width: 100%;
    height: 80px;
    text-align: center;
    font-size: 22px;
    color: white;
    display: grid;
    place-items: center;
    text-wrap: wrap;
    /* background-image: linear-gradient(to left, rgb(6, 245, 233) , rgba(12, 255, 158, 0.863)); */
    background-color: black;
    border-top: 0.7px solid rgb(178, 178, 178);
}