@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
*{
    margin: 0;
    padding: 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;
}
#menu-bar{
    display: none;
}
#nav-bar label{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
}

/*Main heading Container*/
#mainHeadingContainer{
    width: 100%;
    height: 80vh;
    padding: 20px;
    display: block;
    background-image: url('../images/contact_bg.avif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.navUnderHeading{
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
    color: black;
    font-weight: normal;
}
.navUnderHeading a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.InnerHeadingContainer{
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 30px;
}

.InnerHeadingContainer h1{
    font-size: 70px;
    margin-bottom: 40px;
    text-align: center;
    animation: color-change 10s infinite;
    font-family: "Rubik Doodle Shadow", system-ui;
    font-weight: bold;
    font-style: normal;
}
.InnerHeadingContainer h2{
    font-size: 30px;
    text-align: center;
}

@keyframes color-change {
    0% { color: red; }
    25% { color: orange; }
    50% { color: yellow; }
    75% { color: green; }
    100% { color: blue; }
  }

/*Form and image container section*/
#formImageContainer{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
.imageContainer{
    width: 40%;
    height: auto;
    padding: 10px;
}
.imageContainer img{
    width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 5px 20px;
}
.formContainer{
    width: 40%;
    height: auto;
    padding: 10px;
    display: grid;
    place-items: center;
    margin-top: 30px;
}
.formContainer h1{
    font-size: 30px;
    margin-bottom: 20px;
    color: black;
}
.formContainer form{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.formContainer form input , textarea{
    width: 90%;
    padding: 10px 20px;
    margin: 10px 0px;
    font-size: 18px;
    border-radius: 5px;
    outline: none;
    border: 1px solid black;
}
.formContainer button{
    font-size: 18px;
    padding: 10px 25px;
    background-color: black;
    color: white;
    border-radius: 8px;
    outline: none;
    
    transition: .5s all;
    margin-top: 20px;
}
.formContainer button:hover{
    cursor: pointer;
    letter-spacing: 1.5px;
    background-color: aqua;
    color: black;
    box-shadow: 1px 2px 15px aqua , 1px 2px 25px aqua;
}

/*Map Container section*/
#mapContainer{
    width: 100%;
    height: auto;
    padding: 20px;
}
#mapContainer iframe{
    width: 100%;
    height: 80vh;
    border-radius: 15px;
}


/*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);
}