*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url('image/1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 90px;
    border-radius: 10px;



}
.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: #fff;
    text-decoration: none;
    font-size: 18px;

}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;

}
.text-box h1{
    font-size: 62px;

}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;


}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: black;
    position: relative;
    cursor: pointer;

}
.hero-btn:hover{
    border: 1px solid black;
    background: rgb(2, 2, 19);
    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: black;
        height: 100vh;
        width: 200px;
        top: 0;
        right: 0px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }
    nav .fa{
        display: inline-block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    .nav-links ul{
        padding: 30px;

    }
}

/* -----------------------about company----------------- */

.about-us{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.about-us h1{
    font-size: 50px;
    color: black;
    margin-bottom: 25px;
    position: relative;

}
.about-us h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
}
.about-us p{
    font-size: 18px;
    color: black;
    margin-bottom: 35px;

}
.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px ;

}
.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}
.about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;

}
.about-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
} 
.about-image:hover img{
    transform: scale(1.2);
}
.about-content{
    flex: 1;

}
.about-content h2{
    margin-bottom: 15px;
    color: black;
    margin: 10px 0 40px;


}
.about-content p{
    font-size: 14px;
    line-height: 1.5;
    color:black ;
    text-align: left;


}
.about-content .read-more{
    display: inline-block;
    padding: 5px 10px;
    color: white;
    font-size: 19px;
    text-decoration: none;
    background-color:black;
    margin-top: 15px;
    transition: 0.3s ease;

}
.about-content .read-more:hover{
    background-color: #777;

}
@media screen and (max-width:768px){
    .about-us{
        padding: 0px 20px;
    }
    .about-us h1{
         font-size: 36px;
    }
    .about-us p{
         font-size: 17px;
         margin-bottom: 0px;

    }
    .container{
        padding: 0px;

    }
    .about{
        padding: 20px;
        flex-direction: column;
        
    }
    .about-image{
        margin-right: 0px;
        margin-bottom: 20px;

    }
    .about-content p{
        padding: 0px;
        font-size: 16px;

    }
    .about-content .read-more{
        font-size: 16px;
        
    }
}   
/* -----------------------services---------------------- */


.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;

}
.our-services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;

}
.our-services h1{
    font-size: 42px;

}
.our-services p{
    margin: 10px 0 40px;
    font-size: 14px;
    color:black;
    box-sizing: border-box;
}

.ourservices-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;

}
.ourservices-col img{
    width: 80%;
    height: auto;
    display: block;
    min-height: 300px;
    border: 1px solid black;
    min-width: 300px;


}



.ourservices-col p{
    padding: 0;
    text-align: left;
    font-size: 13px;
    margin-bottom: 1em;
    font-weight: 200;
    padding: 7px 14px 0px 0px;
    border-top: 1px solid black;

}
.ourservices-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;

}
.ourservices-col .read-more{
    display: inline-block;
    padding: 4px 10px;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    background-color: black;
    margin-top: 15px;
    transition: 0.3s ease;

}
.ourservices-col .read-more:hover{
    background-color: #777;

}
@media(max-width:1000px){
    .row{
        flex-direction: column;
    }
}
/* ---------------------contect-us------------- */
.contect-us{
    width: 80%;
    margin: auto;
}
.contect-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contect-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;

}
.contect-col div .fa{
    font-size: 28px;
    color: #fff3f3;
    margin: 10px;
    margin-right: 30px;
}
.contect-col div p{
    padding: 0;

}
.contect-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: black;
    font-weight: 400;
}
.contect-col input, .contect-col textarea{
 width: 100%;
 padding: 15px;
 margin-bottom: 17px;
 outline: none;
 border: 1px solid #ccc;
 box-sizing: border-box;

}
.contect-us h1{
    font-size: 42px;
    text-align: center;

}
.contect-us p{
    margin: 10px 0 40px;
    font-size: 14px;
    color:black;
    text-align: center;
}
/* -------------footer--------------- */
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;

}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;

}
