@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

:root{
   --main-color:#E6392D;
   --black:#000;
   --white:#fff;
   --bg: #fff5f5;
   --light-black:#4B4B4B;
}

*{
   font-family: 'Poppins', sans-serif;
   margin: 0; padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none; text-decoration: none;
   transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
 }
 
 html::-webkit-scrollbar{
    width: 1rem;
 }
 
 html::-webkit-scrollbar-track{
    background: var(--white);
 }
 
 html::-webkit-scrollbar-thumb{
    background: var(--main-color);
 }
 



/* -------- header section start ---------- */

.header{
    background-color: var(--white);
}
.nav {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem 0;
  }
  .nav > .nav-header {
    flex: 0.95;
    padding-left: 1rem;
  }
  .nav > .nav-header > .nav-logo img{
    width: 200px;
  }

  .nav > .nav-list {
    display: flex;
    gap: 3rem;
  }
  .nav > .nav-list > li {
    list-style-type: none;
  }
  .nav > .nav-list > li a {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
    font-size: 1.8rem;
  }

  .nav > .nav-list > li a:hover {
    color: var(--main-color);
    cursor: pointer;
    font-weight: 700;
  }
  .nav > #nav-check {
      display: none;
  }


  /* --------------- responsive header-section --------------------*/

  @media (max-width: 995px) {
    .nav {
      padding: 1rem;
    }
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0;
      top: -12;
      padding-top: 2rem 2rem;
    }
    .nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding-top: 1rem;
    }
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid var(--main-color);
    }
    .nav > .nav-list {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      background-color: var(--black);
      height: 0;
      transition: all 0.3s ease-in;
      top: 80px;
      left: 0;
      overflow: hidden;
    }
    .nav > .nav-list > li {
      width: 100%;
      margin-top: 1.5rem;
    }

    .nav > .nav-list > li a {
        color: var(--white);
    }
    .nav > #nav-check:checked ~ .nav-list {
      height: calc(100vh - 50px);

    }
  }


  
 /* --------------- banner section start --------------------*/
.home{
    padding: 0;
}

.home .banner{
    background: url(../images/home_banner.png) no-repeat;
    height: 80vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    gap:5rem;
}

.home .content{
    display: flex;
    flex-direction: column;
    gap:1rem;
    text-align:center;
}

.home .content h3{
    font-size: 2rem;
    color: var(--white);
}

.home .content h1{
    font-size: 8rem;
    color: var(--white);
    font-weight: 900;
}

.home .content h1 span{
    color: var(--main-color);
	  padding:  2rem;
}

.home .content p{
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 400;
}

/* ------------ responsive banner-section ------------ */
@media (max-width: 561px) {
  
.home .content h1{
  font-size: 5rem;
  color: var(--white);
  font-weight: 900;
}

} 

@media (max-width: 371px) {
  
  .home .content h1{
    font-size: 4rem;
    color: var(--white);
    font-weight: 900;
  }
  
  } 
  

/* ------------ about-section ------------ */
.about{
    display: flex;
    justify-content: space-between;
    padding: 5rem 0;
    gap:10rem;
} 

.about img{
    width: 40%;
    height: 50%;
    border-radius: 0.5rem;
    box-shadow: 2rem 2rem var(--main-color);
}

.about .about-content h2{
  color: var(--main-color);
  padding-bottom: 1rem;
  font-size: 3rem;
  text-transform: uppercase;
    
}

.about .about-content h2:after {
  content:''; 
  display:block; 
  width:10rem; 
  height:3px; 
  background:var(--main-color); 
  margin:0 0; 
  margin-top:15px; 
  border-radius:3px;
}


.about .about-content p{
    font-size: 1.6rem;
    color: var(--black);
    line-height: 2.5rem;
    padding-top: 1rem;
}

.about .about-content .btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 5rem;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 1.7rem;
    background-color: var(--main-color);
    color: var(--white);
}

.about .about-content .btn:hover{
    background-color: var(--black);
    color: var(--white);
}


/* ------------ responsive about-section ------------ */
@media (max-width: 1000px) {
  .about{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    gap:8rem;
} 

.about img{
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    box-shadow: 2rem 2rem var(--main-color);
}

}

@media (max-width: 600px) {
 

.about img{
    width: 90%;
    height: 100%;
}

}

@media (max-width: 454px) {
 
  .about{
    gap:5rem;
} 

  .about img{
      width: 90%;
      height: 100%;
      box-shadow: 1rem 1rem var(--main-color);
  }
  
  }


  /* --------------- infrastcture section start --------------------*/

 .infrastucture-section{
  padding: 5rem 0;
  background-color: var(--bg);
 }

.infra{
   display: flex;
   flex-direction: column;
   
}

.infra .infra-section{
   display: flex;
   justify-content: space-between;
  flex-wrap: wrap;
}

.infra .infra-section h2{
   color: var(--main-color);
   padding-bottom: 2rem;
   font-size: 3rem;
   text-transform: uppercase;
 }

 .infra .infra-section  h2:after {
  content:''; 
  display:block; 
  width:10rem; 
  height:3px; 
  background:var(--main-color); 
  margin:0 0; 
  margin-top:15px; 
  border-radius:3px;
}



.infra .infra-section .infra-link{
   color: var(--main-color);
   padding-bottom: 4rem;
   font-size: 1.6rem;
   font-weight: 600;
}

.infra .infra-section .infra-link i{
   padding-left: 2rem;
}

.infra .image-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
   gap: 2rem;
}

.infra .image-container .box{
   background: var(--white);
   border-radius: 1rem;
   box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
   overflow: hidden;
}

.infra .image-container .box:hover .image img{
   transform: scale(1.1);
}

.infra .image-container .box .image{
   height: 25rem;
   overflow: hidden;
   width: 100%;
}

.infra .image-container .box .image img{
   height: 100%;
   width: 100%;
   object-fit: cover;
}

.infra .image-container .box .content{
   padding: 2rem;
}

.infra .image-container .box .content .link{
   font-size: 2rem;
   color: var(--black);
   font-weight: 600;
}

.infra .image-container .box .content p{
   padding: 1rem 0;
   font-size: 1.6rem;
   color: var(--black);
   line-height: 2.5rem;
}

.infra .image-container .box .content .icon{
   padding-top: 1rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
  
}
.infra .image-container .box .content .icon a{
   font-size: 1.4rem;
   color: var(--main-color);
   font-weight: 600;
}

.infra .image-container .box .content .icon a:hover{
   color: var(--black);
}


.infra  .infralink{
  color: var(--main-color);
   padding: 2rem 0;
   font-size: 1.6rem;
   font-weight: 600;
   display: none;

}

.infra  .infralink i{
   padding-left: 2rem;
}


/* --------------- responsive instrctuare-section ------------------*/


@media only screen and (max-width: 480px) {



  .infra .infra-section .infra-link{
    display: none;
  }
  
  .infra  .infralink{
     display: block;
  
  }
 
 }



 /* --------------- product section start --------------------*/
.product-section{
  /* background: url(../images/home_page/product_section_bg.png)  no-repeat; */
  background-color: var(--white);
  background-position: center;
  background-size: cover;
  padding: 5rem 0;
}

.product{
  display: flex;
  flex-direction: column;
}

.product h2{
   text-align: center;
   color: var(--main-color);
   text-transform: uppercase;
   padding-bottom: 3rem;
   font-size: 3rem;
 }


 .product  h2:after {
  content:''; 
  display:block; 
  width:10rem; 
  height:3px; 
  background:var(--main-color); 
  margin:0 auto; 
  margin-top:15px; 
  border-radius:3px;
}


.product .image-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.product .image-container{
  padding-bottom: 5rem;
}


.product .image-container .box{
  background: var(--bg);
  border-radius: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-left: 5rem;
  padding-top: 10rem;
}


.product .image-container .box .image{
  height: 20rem;
  width: 80%;
}

.product .image-container .box:hover .image img{
   transform: scale(1.1);
}

.product .image-container .box .image img{
   height: 60%;
   width: 100%;

}


/*---------------------- Brochure ----------------------*/

.brochure-section{
  background-color: var(--main-color);
}

.brochure{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  flex-wrap: wrap;
}

.brochure h4{
  font-size: 2rem;
  color: var(--white);
}

.brochure p{
  font-size: 1.5rem;
  color: var(--white);
}

.brochure .btn{
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 5rem;
  border-radius: .2rem;
  cursor: pointer;
  font-size: 1.7rem;
  background-color: var(--white);
  color: var(--black);
  font-weight: 500;
}

.brochure .btn:hover{
  background-color: var(--black);
  color: var(--white);
}



/*------------------ footer start ------------------*/
#footer {
  background-image: url(../images/footer_bg.png);
  padding: 8rem 0;
}
.main-footer {
  display: flex;
  justify-content: space-between;
}

.main-footer ul {
  list-style: none;
}



.main-footer h1 {
  font-size: 22px;
  line-height: 117%;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.border1 {
  height: 3px;
  width: 40px;
  background: var(--main-color);
  color: var(--main-color);
  background-color: var(--main-color);
  border: 0px;
}

.main-footer ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
}

.contact-details li {
  list-style: none;
  padding: 0.5rem 0;
  font-size: 1.6rem;
}

.contact-details .fa {
  color: var(--main-color);
  margin-right: 2rem;
}

.com ul li {
  padding: 1rem 0;

}

.com ul li a:hover {
 color: var(--main-color);
}

.logo{
  display: flex;
  flex-direction: column;
  align-items: start;
  
}

.logo img{
  width: 250px;
  padding-bottom: 1.6rem;
}

.logo p{
  font-size: 1.6rem;
  color: var(--white);
  width: 300px;
  padding-bottom: 1.6rem;
}

.logo .social{
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
}

.logo .social i{
  color: var(--white);
  font-size: 3rem;
  
}

.logo .social i:hover{
  color: var(--main-color);
  font-size: 3rem;
}

.com ul li img{
  width: 300px;
}


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

@media only screen and (max-width: 1309px) {

  #footer{
    padding: 6rem 3rem;
  }
  .main-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

  }
 
}

@media only screen and (max-width: 640px) {

  #footer{
    padding: 6rem 3rem;
  }
  .main-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;

  }
 
}
@media only screen and (max-width: 751px) {

  #footer{
    padding: 6rem 3rem;
  }
  .main-footer {
    display: grid;
    grid-template-columns: 1fr;

  }
 
}

@media (max-width: 480px) {
  .main-footer {
    grid-template-columns: 1fr;
  }
  .com {
    padding: 2rem 0;
  }
}


