*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(100, 100, 133, 0.7),rgba(0, 0, 0, 0.7)),url(images/ban2.avif);
    background-position: center;
    background-size: cover;
    position: relative;
}


nav{
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 300px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 14px;

}
.nav-links ul li::after{
    content: "";
    width:0%;
    height: 2px;
    background: #0f93cc;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
    
}
.text-box{
    width: 100%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 50px;
    
}
.text-box p{
    font-size: 20px;
    margin-bottom: 30px;
}
.hero-btn{
    display: inline-block;
    padding: 10px 30px;
    font-size: 15px;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    background: transparent;
}
.hero-btn:hover{
    border: 1px solid #0f93cc;
    background: #0f93cc;
    transition: 1s;
}
nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #0f93cc;
        width: 200px;
        height: 100vh;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        font-size: 20px;
        color: black;
        cursor: pointer;
        margin: 10px;
    }
    .nav-links ul{
        padding: 20px;
    }
}

/*------services------*/

.services{
    width:80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    margin-top: 20px;
    font-size: 40px;
    font-weight: 600;
    
}
.services p{
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    color: #777;
    padding: 10px;
}

.row{
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
}

.service-col{
    flex-basis: 30%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    text-align: center;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px;
}
.service-col:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}


/*------footer------*/

.footer{
    background: grey;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
.footer h4{
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    
    margin: 0 10px;
    color: blue;

}
.icons .fa-brands{
    padding: 18px  0;
    margin: 0 10px;
    color: #f44336;
    cursor: pointer;
   
}
.icons .fa-solid{
    padding: 18px  0;
    margin: 0 10px;
    color: #f44336;
    cursor: pointer;
   
}

/*------contact,about,service------*/
.sub-header{
    height: 50vh;
    width: 100%;
     background-image: linear-gradient(rgba(100, 100, 133, 0.7),rgba(0, 0, 0, 0.7)),url(images/ban2.avif);
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
    color: white;
}
.sub-header h1{
    margin-top: 100px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px 0;
    padding-bottom: 50px;
    
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
    border-radius: 10px;
}

@media(max-width: 700px){
    .sub-header h1{
        font-size: 30px;
    }
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
    border-radius: 10px;
}

/*.location img{
    width: 550px;
    border-radius: 10px;
    
}*/

.contact-us{
    width: 80%;
    margin: auto;
    
}
.contact-col{
    flex-basis: 50%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 20px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.submit-btn{
    margin-top: 10px;
    display: inline-block;
    padding: 10px 10px;
    font-size: 15px;
    color: #0f93cc;
    border: 1px solid #0f93cc;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    background: transparent;
}
.submit-btn:hover{
    border: 2px solid #0f93cc;
    background: #0f93cc;
    color: white;
    transition: 0.5s;
}
