*{
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;

}
 
.header{
    min-height: 100vh;
    width: 100%;
    background-image:url(images/contatbg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    filter: brightness(80%);
    filter: brightness(80%);
    animation:  slider 10s linear infinite;
}

@keyframes slider{
    0%{ background-image:url(images/contatbg.jpg);}
    30%{ background-image:url(images/bg-bg.jpg);}
    60%{ background-image:url(images/bg3.jpg);}
    100%{ background-image:url(images/contatbg.jpg);}
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
/* #logo{
    width: 200px;
    height: 150px;
} */
nav img{
    width: 150px;
}

.nav-link{
    flex: 1;
    text-align: right;
}

.nav-link ul li{
    list-style-type: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-link ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.nav-link ul li::after{
    content: '';
    width: 0px;
    height: 3px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.6s;
}
.nav-link ul li:hover::after{
    width: 55px;
}
.text-box{
    width: 80%;
    color: #ffffff;
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translate(-50 -50%);
    text-align: center;
    font-size: 26px;
    font-family: sans-serif Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;   
}
.text-box h1{
    font-size: 55px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
    
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1.5s;
}
nav .fa{
    display: none;
}
/* footer */
.footer{
    height: 50vh;
    width: 100%;
    background-image:url(images/why\ us.jpg);
    background-position: center;
    background-size: cover;
   

}
/* contact us */
.con-t{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con-t .contact-info{
    max-width: 800px;
    text-align: center;
}
.con-t .contact-info h4{
    font-size: 20px;
    font-weight: 500;
    color: #fff; 
}
.con-t .contact-info p{
    font-size: 20px;
    font-weight: 300;
    color: #fff; 
}
.con-t{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 700px){
    .text-box h1{
        font-size: 15px;
    }
    .nav-link ul li{
        display: block;
    }
    .nav-link{
        position: absolute;
        background: #e0675f;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        
    }

    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font: 20px;
        cursor: pointer;
        
    }
    .nav-link ul {
        padding: 30px;
        
    }
   
}
/* <!------ about sectio> */
.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.about-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    text-align: justify;
    
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.about-col:hover{
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

/* wraper  */
.wraper{
    width: 80vw;
    transform: translate(-50%, -50%);
    margin-left: 50%;
    display: flex;
    margin-top: 10%;
    justify-content: space-around;
    gap: 10px;
}
.box{
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #20212c;
    border-bottom: 15px solid #08db90;
}

span.number{
    color: white;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}
span.text{
    color: white;
    font-size: 1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
}

  /* last Footer css */
  .lgo{
    width: 90px;
    margin-bottom: 30px;
  }
  .f{
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}
.l-row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.l-col{
    flex-basis: 25%;
    padding: 10px;
}
.l-col:nth-child(2), .l-col:nth-child(3){
    flex-basis: 15%;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
form .fa-regular{
    font-size: 18px;
    margin-right: 10px;
}
form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button .fa-solid{
    font-size: 16px;
    color: #ccc;
}

.social-icons .fa-brands{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
    
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
    color: #fff;
    font-size: 15px;
}
.under-line{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.under-line span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

html {
    scroll-behavior: smooth;
  }
  
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .l-col{
        flex-basis: 100%;
        
    }
    .l-col:nth-child(2), .l-col:nth-child(3){
        flex-basis: 100%;
    }
}
.l-col h2{color: white;
    width: fit-content;
    margin-left: 3%;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}
#u-l li{
    list-style: none;
    margin-bottom: 12px;
}
#u-l li a{
    text-decoration: none;
    color: white;
    margin-left: 3%;
}
/* moheeem */
.container-2{
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}


/* about section end */

/* media query start */

/* sm sm size */

 /* media for lfooter */

@media(max-width: 700px){
    .l-footer{
        bottom: unset;
    }
}

  @media(min-width: 0px) and (max-width: 452px){
    .child-2 img{
        width: 86%;
        margin-left: 7%;
    }
    .child-1 p{
        margin-top: 20px;
        text-align: justify;
        width: 90%;
        margin-left: 3%;
        
    }
}
@media(min-width: 453px) and (max-width: 980px){
    .child-2 img{
        width: 89%;
        margin-left: 7%;
    }
    .child-1 p{
        margin-top: 20px;
        text-align: justify;
        width: 90%;
        margin-left: 5%;
    }
}

@media(min-width: 981px) and (max-width: 2000px){
    .child-2 img{
        width: 40%;
        margin-left: 50%;
    }
    .child-1 p{
        margin-top: -29%;
        text-align: justify;
        width: 40%;
        margin-left: 5%;
    }
}



/* constraction */

@media(min-width: 0px) and (max-width: 452px){
    .child-3 img{
        width: 89%;
        margin-left: 6%;
        
    }
    .child-4 p{
        margin-top: 20px;
        text-align: justify;
        width: 90%;
        margin-left: 3%;
        
    }
}
@media(min-width: 453px) and (max-width: 980px){
    .child-3 img{
        width: 89%;
        margin-left: 7%;
        
    }
    .child-4 p{
        margin-top: 20px;
        text-align: justify;
        width: 90%;
        margin-left: 5%;
        
    }
}

@media(min-width: 981px) and (max-width: 2000px){
    .child-3 img{
        width: 40%;
        margin-left: 50%;
        margin-top: 40%;
    }
    .child-4 p{
        margin-top: -31%;
        text-align: justify;
        width: 40%;
        margin-left: 5%;
        
    }
}


 

/* 201 constraction */

/* 32 inch up to 65 */
@media(min-width: 2001px) and (max-width: 3840px){
    .child-2 img{
        width: 32%;
        margin-left: 50%;
        margin-top: 5%;
    }
    .child-1 p{
        margin-top: -24%;
        text-align: justify;
        width: 38%;
        margin-left: 10%;
        font-size: 150%;
        line-height: 150%;
    }
    ul li{
        margin-left: 3%;
        margin-top: 1%;
        font-size: 150%;
    }
}




/* janjali */

@media(min-width: 2001px) and (max-width: 3840px){
    .child-3 img{
        width: 41.1%;
        margin-top: 45%;
        margin-left: 50%;
    }
    .child-4 p{
        margin-top: -26%;
        text-align: justify;
        width: 38%;
        margin-left: 10%;
        font-size: 150%;
        line-height: 150%;
    }
    ul li{
        margin-left: 3%;
        margin-top: 1%;
        font-size: 150%;
        
    }
}



/* who we are media */
/* 0 452 */
@media(min-width:0px) and (max-width: 452px){
    .who-we-are img{
        width: 90%;
        margin-left: 5%;
    }
    .who-we-are p{
        text-align: justify;
        width: 90%;
        margin-left: 1%;
    }
    .who-we-are h6{
        font-size: 15px;
        margin-left: 5%;
        margin-top: 3%;
        color: tomato;
    }
    .who-we-are #h3{
        margin-left: -65%;
    }
}

/* 453 980 */
@media(min-width:453px) and (max-width: 980px){
    .who-we-are img{
        width: 90%;
        margin-left: 5%;
    }
    .who-we-are p{
        text-align: justify;
        width: 80%;
        margin-left: 5%;
        
    }
    .who-we-are h6{
        font-size: 15px;
        margin-left: 5%;
        margin-top: 3%;
        color: tomato;
    }
}

/* 981 */
@media(min-width: 981px) and (max-width: 1400px){
    .who-we-are img{
        width: 50%;
        margin-top: 20%;
        margin-left: 6%;
    }
    .who-we-are h6{
        font-size: large;
        color: tomato;
        margin-top: -28%;
        margin-left: 58%;
    }
    .who-we-are h3{
        margin-left: 27%;
    }
    .who-we-are p{
        width: 40%;
        text-align: justify;
        margin-left: 57%;
    }
}

/* 1400 2000 */
@media(min-width: 1401px) and (max-width: 2000px){
    .who-we-are img{
        width: 45%;
        margin-top: 12%;
        margin-left: 6%;
    }
    .who-we-are h6{
        font-size: large;
        color: tomato;
        margin-top: -26%;
        margin-left: 53%;
    }
    .who-we-are h3{
        margin-left: 13.5%;
    }
    .who-we-are p{
        width: 35%;
        text-align: justify;
        margin-left: 52.5%;
    }
}
/* 2001 3840 */
@media(min-width: 2001px) and (max-width: 3840px){
    .who-we-are img{
        width: 38%;
        margin-left: 10%;
        margin-top: 15%;
    }
    .who-we-are h6{
        margin-top: -21.7%;
        font-size: large;
        margin-left: 49%;
        color: tomato;
    }
    .who-we-are h3{
        margin-left: 2.3%;
    }
    .who-we-are p{
        font-size: 150%;
        line-height: 150%;
        width: 40%;
        text-align: justify;
        margin-left: 48.5%;
    }
}
@media(min-width: 0px){
    .footer{
        width: 100%;
        height: auto;
    }
    .footer p{
        color: white;
        width: 80%;
        text-align: justify;
        font-size: large;
        margin-left: 10%;
    }
    .footer h4{
        margin-left: 12%;
        color: white;
        margin-top: 3%;
    }
    .footer h2{
        color: white;
        margin-left: 12%;
        margin-top: 10%;
    }
}
 
/* 553 */
@media(min-width: 981px){
.footer{
    margin-top: 15%;
    height: 40vh;
}
.footer p{
    color: white;
    width: 80%;
    text-align: justify;
    font-size: large;
    margin-left: 10%;
}
.footer h4{
    margin-left: 8%;
    color: white;
    margin-top: 3%;
}
.footer h2{
    color: white;
    margin-left: 12%;
    margin-top: 5%;
}
}



@media(min-width: 981px){
    .footer{
        margin-top: 15%;
        height: auto;
    }
    .footer p{
        color: white;
        width: 50%;
        text-align: justify;
        font-size: large;
        margin-left: 10%;
        
    }
    .footer h4{
        margin-left: 11%;
        color: white;
        margin-top: 3%;
    }
    .footer h2{
        color: white;
        margin-left: 12%;
        margin-top: 5%;
    }
}

