*{
  margin: 0;
  padding: 0;
  font-family: "Open Sans", 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(images/LOGO.png);
    background-position: center;
    background-size: cover;
    position: relative;  
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.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: 15px;
    padding-top: 0;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: white;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 55px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 33px;
    color: white;   
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px solid rgb(99, 98, 98);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 2px solid white;
    background: blue;
    transition: 1s;
}
nav .fas{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
  }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: blue;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2; 
        transition: 1s;
    }
    nav .fas{
    display: block;
        color: black;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav links ul{
        padding: 30px;
    }
    .Row{
        flex-direction: column;
    }
    .Row2{
        flex-direction: column;
    }
    .sub-header h1, h2, h3, h4, h5, p{
        font-size: 24px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .links,
    .footer-info {
        margin: 20px 0;
        text-align: center;
    }
    .footer-content{
        text-align: center;
        margin-top: 3px;
    }

    .footer-logo img {
        width: 120px;
    }
    .Our_Services .p{
        text-align: center;
    }

    th, td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    th {
        background-color: #f4f4f4;
        font-weight: bold;
        padding: 10px;
        text-align: center;
    }
    td {
        border: none;
        padding: 8px 10px;
        text-align: left;
    }
    tr {
        margin-bottom: 10px;
    }
}
/*-----About----*/
.WELCOME{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    background-size: cover;
    position: relative;
}
.Row2{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.WELCOME-col{
    flex-basis: 31%;
    background-color: floralwhite;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
.WELCOME-col img{
    width: 380px;
    height: auto;
}
.WELCOME-col:hover{
    box-shadow: 0 0 50px 0px rgba(0,0,0,0.5);
}
.WELCOME-col p{
    padding: 0;
    text-align: left;
}
.WELCOME-col li{
    padding: 0;
    text-align: left;
}
.WELCOME-col h2{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
.WELCOME-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
.WELCOME-col h4{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*-----course-----*/

.Section{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.specialities-col{
    flex-basis: 31%;
    background: lightblue;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0px 12px;
    box-sizing: border-box;
}
.specialities-col img{
    width: 380px;
    height: auto;
}
.specialities-col:hover{
    box-shadow: 0 0 50px 0px rgba(0,0,0,0.9);
}
h1{
    font-size: 36px;
    font-weight: 600;
}
h2{
    font-size: 36px;
    font-weight: 600;
}
h3{
    font-size: 36px;
    font-weight: 600;
}
h4{
    font-size: 36px;
    font-weight: 600;
}
.p{
    color: black;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.Row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}


/*----- call -----*/
.Action{
    margin: 100px auto;
    width: 80%;
    background-color: rgb(173, 206, 207);
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

/*----- FOOTER ------*/

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 220px;
    height: auto;
}

.links, .footer-info {
    max-width: 300px;
}

.links h5, .footer-info h5, .Media h5 {
    margin-bottom: 10px;
    font-size: 30px;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin-bottom: 8px;
}

.links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.links ul li a:hover {
    color: #ff6347;
}

.footer-info p {
    margin: 0;
}
.footer-info a {
    color: #fff;
}
.footer-content {
    text-align: center;
    margin-top: 20px;
}
.Media i {
    margin-top: 20px;
    display: inline-block;
    font-size: 30px;
    transition: transform 0.3s ease;
}
.Media a {
    color: #ffffff;
    margin-top: 20px;
    display: inline-block;
    font-size: 30px;
    transition: transform 0.3s ease;
}
.Media i:hover {
    transform: scale(1.2);
}
.Media a:hover {
    transform: scale(1.2);
}

.icons .fa{
    color: aqua;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.privacy{
    background-color: darkgray;
    color: black;
}
.cookie{
     background-color: darkgray;
    color: black;
}

/*------ ABOUT US PAGE -----*/
.sub-header{
    height: 90vh;
    width: 100%;
    background-image: linear-gradient(rgba(5,9,30,0.7), rgba(5,9,30,0.7)), url(images/LOGO.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}
.sub-header h1{
    margin-top: 200px;
}
.AboutUs{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 2px;
    overflow: hidden;
}
.AboutUs-col{
    flex-basis: 48%;
    padding: 30px 2px;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.AboutUs-col{
    opacity: 1;
    transform: translateX(0);
}
.AboutUs-col img{
    width: 80%;
}
.AboutUs-col img:hover{
    box-shadow: 0 0 8px 0px rgba(134, 133, 133, 0.9);
}
.AboutUs-col h1{
    padding-top: 0;
}
.AboutUs-col p{
    padding: 15px 0 25px;
    text-align: left;
}

.AboutUs2{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 2px;
}
.AboutUs2-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.AboutUs2-col img{
    width: 80%;
}
.AboutUs2-col img:hover{
    box-shadow: 0 0 8px 0px rgba(134, 133, 133, 0.9);
}
.AboutUs2-col h1{
    padding-top: 0;
}
.AboutUs2-col p{
    padding: 15px 0 25px;
    text-align: left;
}

.Our_Services{
    text-align: center;
    margin-top: 50px;
    background-color: lightgray;
    position: relative;
}
.Our_Services p{
    text-align: left;
    padding: 15px 380px 25px;
}
.Our_Services-col{
    flex-basis: 23%;
    background-color: floralwhite;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 8px 12px;
    box-sizing: border-box;
}
.Our_Services-col:hover{
    box-shadow: 0 0 50px 0px rgba(0,0,0,0.5);
}
.Our_Services-col h4{
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.view-btn{
    border: 20px solid orange;
    border-radius: 30px;
    background: orange;
    color: whitesmoke;
    
}
.view-btn:hover{
    color: rgb(10, 9, 9);
}

/*----- Career ----*/
.Section{
    background-color: rgb(240, 243, 240);
    background-size: cover;
}
.Section img{
    width: 480px;
    height: auto;
}
.Section-col{
    flex-basis: 26%;
    background-color: floralwhite;
    border-radius: 10px;
    margin-bottom: 0%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0px 50px;
    box-sizing: border-box;
}
.Section-col:hover{
    box-shadow: 0 0 50px 0px rgba(0,0,0,0.5);
}
.Section-col h4{
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
}
.Section2-col{
    flex-basis: 31%;
    background-color: floralwhite;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 400px;
    padding: 0px 50px;
    box-sizing: border-box;
}
.Section-col img{
    width: 380px;
    height: auto;
}
.Section2-col img{
    width: 380px;
    height: auto;
}
.Section2-col:hover{
    box-shadow: 0 0 50px 0px rgba(0,0,0,0.5);
}
.Section2-col h4{
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
}
.table {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    border-collapse: collapse;
    table-layout: auto;
}
.table thead tr th{
    border: 1px solid
}
.th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.SERVICES{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    background-size: cover;
    position: relative;
}
.Row2{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.SERVICES-col{
    flex-basis: 31%;
    background-color: floralwhite;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
.SERVICES-col img{
    width: 380px;
    height: auto;
}
.SERVICES-col:hover{
    box-shadow: 0 0 50px 0px rgba(0,0,0,0.5);
}
.SERVICES-col p{
    padding: 0;
    text-align: left;
}
.SERVICES-col h2{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
.SERVICES-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
.SERVICES-col h4{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*----- Enquire page ----*/
.enquire-box{
    border: 1px solid rgb(117, 115, 115);
    margin: 50px 0;
    padding: 10px 20px;
    background-color: #555;
}
.enquire-box h1{
    text-align: left;
}
.enquiry-form input, .enquiry-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.enquiry-form button{
    margin: 10px 0;
}

/*----- location page -----*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.Contact-us{
    width: 80%;
    margin: auto;
}
.Contact-col{
    flex-basis: 48%;
    padding: 30px 2px;
    margin-bottom: 30px;
}
.Contact-col div{
    display: flex;
    align-items: left;
    margin-bottom: 2px;
    padding: 30px 2px;
}
.Contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 10px;
}
.Contact-col div p{
    padding: 0;
}
.Contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

/*----- ICT -----*/
.ICT{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
}
.ICT-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.ICT-col img{
    width: auto;
}
.ICT-col h1{
    padding-top: 0;
}
.ICT-col p{
    padding: 15px 0 25px;
    text-align: left;
}

/*----- WAREHOUSE -----*/
.WAREHOUSE{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
}
.WAREHOUSE-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.WAREHOUSE-col img{
    width: auto;
}
.WAREHOUSE-col h1{
    padding-top: 0;
}
.WAREHOUSE-col p{
    padding: 15px 0 25px;
    text-align: left;
}

/*----- ENGINEERING -----*/
.ENGINEERING{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
}
.ENGINEERING-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.ENGINEERING-col img{
    width: auto;
}
.ENGINEERING-col h1{
    padding-top: 0;
}
.ENGINEERING-col p{
    padding: 15px 0 25px;
    text-align: left;
}

/*----- PRIVACY POLICY -----*/
.Privacy{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
}
.Privacy-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.Privacy-col img{
    width: auto;
}
.Privacy-col h1{
    padding-top: 0;
}
.Privacy-col p{
    padding: 15px 0 25px;
    text-align: left;
}

/*----- COOKIES POLICY -----*/
.Cookie{
    width: 80%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 50px;
}
.Cookie-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.Cookie-col img{
    width: auto;
}
.Cookie-col h1{
    padding-top: 0;
}
.Cookie-col p{
    padding: 15px 0 25px;
    text-align: left;
}