/* Css code of Smart City Website */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #fff;
    overflow-x: hidden;
}
/* Css for scroll bar */
body::-webkit-scrollbar {
    width: 1em;
  }
body::-webkit-scrollbar-thumb {
    background-color: rgb(169, 169, 169);
    border-radius: 5rem; 
}
.container {
    left: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 6rem;
    background-color: #fff;
    padding-left: 5rem;
    padding-right: 5rem;
    top: 0;
    border-bottom: 1px solid #ececec;
    z-index: 5;
    position: fixed;
}
.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-left: 0;
    width: 60%;
}
.nav-links li{
    list-style: none;
    margin: 0 1rem;
}
.nav-links li a{
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #636363;
}
#logo-img{
    width: 18rem;
}
#nav-contact::after{
    content: '';
    position: absolute;
    left: 1.2rem;
    bottom: -0.3rem;
    width: 4px; 
    height: 4px;
    border-radius: 50%;
    background-color: #2797c7;
}
.active{
    color: #2797c7 !important;
}
#contact-img{
    width: 40%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    object-fit: cover;
}
.heading-title{
    color: #1c6889;
    width: 20rem;
}
.hero-container{
    width: 100%;
    position: absolute;
    top: 6rem;
    color: #fff;
}
.form-container{
    display: flex;
    flex-direction: column;
    justify-content: top;
    padding-top: 2.2rem;
    align-items: center;
    width: 20rem;
    height: 20rem;
    background-color: #fff;
    box-shadow: 5px 5px 50px #ebebeb;
    border-radius: 10px;
    margin-top: 3rem;
}
.form-container input{
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    outline: none;
    border: none;
    border-bottom: 1px solid rgb(228, 228, 228);
}
.submit-btn{
    width: 80%;
    height: 2.5rem;
    background-color: #2797c7;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
}
.submit-btn:hover{
    cursor: pointer;
}
.contact-content{
    padding: 3rem 5rem;
    width: 100%;
    height: 100%;
    margin-bottom: 2.5rem;
}
.footer-info1{
    display: flex;
    flex-direction: column;
    height: 6rem;
    justify-content: space-between;
}
.footer-detail{
    font-size: 0.8rem;
    color: #fff;
    text-align: left;
}
.footer-info{
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    padding: 2rem 5rem;
}
.footer-detail{
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
}
.footer-info2{
    width: 15rem;
    padding-right: 5rem;
}
footer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 12rem;
    background-color: #2487b1;
}
.footer-rights{
    position: relative;
    font-weight: 500;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 5rem;
}
.footer-rights::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 0.1rem;
    background-color: #1c6889;
}
#dropdown-arrow{
    width: 0.3rem;
    transform: rotate(90deg);
    margin-left: 0.3rem;
}
.service-dropdown{
    height: 21rem;
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    z-index: 5;
    margin-left: 0;
    margin-top: 23rem;
    margin-left: 7rem;
    box-shadow: 5px 5px 50px #cecece;
    display: none;
}
.service-dropdown li{
    list-style: none;
    padding: 0.5rem 0.8rem;
}
.service-dropdown li:hover{
    background-color: rgb(240, 240, 240);
}
.dropdown-link{
    text-decoration: none;
    font-size: 0.7rem;
    color: #0f0e1f;
}
.dropdown-list{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}
.dropdown-link:hover{
    color: #2797c7;
    transition: all ease-out 0.3s;
}
.toggle-dropdown{
    display: flex;
}
.contact-info-container{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 25rem;
    position: relative;
    color: #0f0e1f;
    padding: 5rem;
    border: 1px solid #bababa;
}
.contact-info1-title{
    position: relative;
    color: #2487b1;
    font-weight: 500;
}
.contact-info1-title::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 0.2rem;
    background-color: #2487b1;
}
.contact-info1-content{
    padding: 2rem 0;
    height: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info2-content{
    padding: 2rem 0;
    height: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info{
    font-size: 0.9rem;
    font-weight: 500;
    width: 20rem;
}
@media only screen and (max-width: 1000px){
    .container{
        width: 100vw;
        flex-direction: column;
        left: 0;
        top: 0;
        transform: none;
        padding: 5rem 0;
    }
    .service-dropdown{
        margin-top: 29rem;
    }
    #logo-img{
        margin-bottom: 1rem;
    }
    .nav-links{
        width: 100%;
    }
    .nav-links li{
        margin: 0.5rem;
    }
    .nav-links li a{
        display: flex;
    }
    footer{
        height: 100%;
    }
    .footer-info{
        height: 100%;
        padding: 2rem;
        flex-direction: column;
    }
    .footer-info1, .footer-info2{
        width: 100%;
        padding: 0;
    }
    .footer-info1{
        margin-bottom: 1rem;
    }
    .footer-detail{
        width: 100%;
    }
    .footer-rights{
        margin-top: 1rem;
        padding: 2rem;
    }
    .footer-rights::before{
        display: none;
    }
    .contact-content{
        padding: 2rem;
    }
    .contact-info-container{
        flex-direction: column;
        height: 100%;
    }
    .contact-info{
        width: 100%;
    }
    .hero-container{
        position: relative;
    }
    #contact-img{
        position: relative;
        width: 100%;
        height: 100vh;
    }
}