@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
   --blue:#00b8b8;
   --black:#333;
   --white:#fff;
   --orange:#dd8511;
   --light-orange:#f3b35f;
   --light-color:#666;
   --light-bg:#eee;
   --border:.2rem solid rgba(0,0,0,.1);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
   font-family: 'Poppins', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none !important;
   text-transform: capitalize;
}

*::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

*::-webkit-scrollbar-track{
   background-color: transparent;
}

*::-webkit-scrollbar-thumb{
   background-color: var(--blue);
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 6.5rem;
}

section{
   padding:4rem 0rem;
}

.heading{
   text-align: center;
   font-size: 4rem;
   color:var(--black);
   text-transform: uppercase;
   font-weight: bolder;
   margin-bottom: 3rem;
}

.link-btn{
   display: inline-block;
   padding:1rem 3rem;
   border-radius: .5rem;
   background-color: var(--blue);
   cursor: pointer;
   font-size: 1.7rem;
   color:var(--white);
}

.link-btn:hover{
   background-color: var(--orange);
   color:var(--white);
}

.header{
   padding:1rem;
   border-bottom: var(--border);
   background-color: rgba(22, 22, 22, 0.5);
   font-weight: 600;
   left:0;
}


.header.active{
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border:0;
   background-color: rgba(18, 19, 19, 5);
}

.header .logo{
   font-size: 2rem;
   color:var(--white);
}

.header img{
   height: 50px;
   width:180px;
  
}

.header .logo span{
   color:var(--orange);
}

.header .nav a{
   margin:0 1rem;
   font-size: 1.7rem;
   color:var(--orange);
}

.header .nav a:hover{
   color:var(--blue);
}

#menu-btn{
   font-size: 2.5rem;
   color:var(--white);
   cursor: pointer;
   display: none;
}

.home{
   background:url(../images/bthome.jpg) no-repeat;
   background-size: cover;
   background-position: center;
}

.home .content{
   width: 80rem;
   padding:2rem;
}

.home .content h3{
   font-size: 5rem;
   text-transform: uppercase;
   color: #184205;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a9bd8e, 0 0 40px #9bad82, 0 0 50px #8eaf6f, 0 0 60px #94b17c, 0 0 70px #86d1b8;
}

.home .content h4{
   font-size: 2rem;
   text-transform: uppercase;
   color: #0c0c0c;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #acbe95, 0 0 40px #88a168, 0 0 50px #87a868, 0 0 60px #8da876, 0 0 70px #90c9b6;

}

.home .content p{
   line-height: 2;
   font-size: 1.5rem;
   color:var(--white);
   padding:1rem 0;
}

.about .row{
   min-height: 50vh;
}

.about .content span{
   font-size: 2rem;
   color:var(--blue);
}

.about .content h3{
   font-size: 3rem;
   color:var(--black);
   margin-top: 1rem;
}

.about .content p{
   padding:1rem 0;
   font-size: 1.4rem;
   color:var(--light-color);
   line-height: 2;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.common ul li{
   font-size: 1.5rem;
   margin-left: 2rem;
   line-height: 1.4;
   padding-top: 0;
   padding-bottom: 0;
   padding-left: 1rem;
   text-transform: none;
}

.services{
   background:url(../images/techworld.jpg) no-repeat;
   background-size: cover;
   background-position: center;
}

.services h1{
   color: var(--white);
}

.services .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
   gap:2rem;
}

.services .box-container .box{
   text-align: center;
   padding:2rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.services .box-container .box img{
   margin:1rem 0;
   height: 8rem;
}

.services .box-container .box h3{
   font-size: 2.2rem;
   padding:0.5rem 0;
   color:var(--blue);
}

.services .box-container .box p{
   font-size: 1.6rem;
   color:var(--light-color);
   line-height: 1;
}

.services a{
   text-align: center;
   align-items: center;
}

.servicesportflio{
   background:url(../images/techservices.jpg) no-repeat;
   background-size: cover;
   background-position: center;
}

.servicesportflio h1{
   color: var(--white);
}

.servicesportflio .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
   gap:2rem;
}

.servicesportflio .box-container .box{
   text-align: center;
   padding:2rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.servicesportflio .box-container .box img{
   margin:1rem 0;
   height: 8rem;
}

.servicesportflio .box-container .box h3{
   font-size: 2.2rem;
   padding:0.5rem 0;
   color:var(--blue);
}

.servicesportflio .box-container .box p{
   font-size: 1.6rem;
   color:var(--light-color);
   line-height: 1;
}

.servicesportflio a{
   text-align: center;
   align-items: center;
}


.process .box-container{ 
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:2rem;
}

.process .box-container .box{
   background-color: var(--light-orange);
   padding:2rem;
   border-radius: .5rem;
   text-align: center;
   box-shadow: var(--box-shadow);
}

.process .box-container .box img{
   height: 12rem;
   width: 16rem;
   margin:1rem 0;
}

.process .box-container .box h3{
   font-size: 2rem;
   color:var(--white);
   margin:1.5rem 0;
}

.process .box-container .box p{
   font-size: 1.5rem;
   color:var(--white);
   line-height: 2;
}


.offershome{
   background:url(../images/offerbackground1.jpg) no-repeat;
   background-size: cover;
   background-position: center;
}

.offershome .content{
   width: 40rem;
   padding:2rem;
}

.offershome .content h3{
   font-size: 5rem;
   text-transform: uppercase;
   color: #184205;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a9bd8e, 0 0 40px #9bad82, 0 0 50px #8eaf6f, 0 0 60px #94b17c, 0 0 70px #86d1b8;
   margin-top: 10rem;
}

.offershome .content h4{
   font-size: 2rem;
   text-transform: uppercase;
   color: #0c0c0c;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #acbe95, 0 0 40px #88a168, 0 0 50px #87a868, 0 0 60px #8da876, 0 0 70px #90c9b6;

}


.reviews{
   background-color: var(--light-bg);
}

.reviews .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:2rem;
}

.reviews .box-container .box{
   background-color: var(--white);
   text-align: center;
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   padding:2rem;
}

.reviews .box-container .box img{
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
}

.reviews .box-container .box p{
   padding:2rem 0;
   line-height: 2;
   font-size: 1.5rem;
   color:var(--light-color);
   margin-bottom: 0;
}

.reviews .box-container .box .stars{
   padding:.5rem 1.5rem;
   border-radius: .5rem;
   background-color: var(--light-bg);
   margin-bottom: 2rem;
   display: inline-block;
}

.reviews .box-container .box .stars i{
   font-size: 1.5rem;
   color:var(--blue);
}

.reviews .box-container .box h3{
   font-size: 2rem;
   color:var(--black);
}

.reviews .box-container .box span{
   color:var(--light-color);
   font-size: 1.5rem;
}

/*.contact{
   background-color: #afa5a5;
}*/

.contact form select{
   height: 40px;
   width: 43rem;
   font-size: 16px;
   margin-bottom: 2rem;
  }

.contact form{
   border-radius: .5rem;
   background-color: var(--light-bg);
   padding:2rem;
   margin:0 auto;
   max-width: 50rem;
}

.contactus form select{
 height: 40px;
 width: 43rem;
 font-size: 16px;
 margin-bottom: 2rem;
}

.contactushome{
   background:url(../images/contactus.jpg) no-repeat;
   background-size: cover;
   background-position: center;
}

.contactushome .content{
   width: 40rem;
   padding:2rem;
}

.contactushome .content h3{
   font-size: 5rem;
   text-transform: uppercase;
   color: #184205;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a9bd8e, 0 0 40px #9bad82, 0 0 50px #8eaf6f, 0 0 60px #94b17c, 0 0 70px #86d1b8;
}

.contactushome .content h4{
   font-size: 2rem;
   text-transform: uppercase;
   color: #0c0c0c;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #acbe95, 0 0 40px #88a168, 0 0 50px #87a868, 0 0 60px #8da876, 0 0 70px #90c9b6;

}


.contact form .message{
   margin-bottom: 2rem;
   border-radius: .5rem;
   background-color: var(--blue);
   padding:1.2rem 1rem;
   font-size: 1.7rem;
   color:var(--white);
   text-align: center;
}

.contact form .box{
   width: 100%;
   margin-top: 1rem;
   margin-bottom: 2rem;
   border-radius: .5rem;
   background-color: var(--white);
   padding:1.2rem 1.4rem;
   font-size: 1.7rem;
   color:var(--black);
   text-transform: none;
}

.contact form span{
   font-size: 1.7rem;
   color:var(--black);
}

.footer{
   background-color: var(--light-bg);
}

.footer .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
   gap:3rem;
}

.footer .box-container .box{
   text-align: center;
}

.footer .box-container .box i{
   height: 5rem;
   width: 5rem;
   margin-right: 20px;
   border-radius: 50%;
   line-height: 5rem;
   font-size: 2rem;
   background-color: var(--orange);
   color:var(--white);
}

.footer .box-container .box h3{
   font-size: 2rem;
   margin:2rem 0;
   color:var(--black);
}

.footer .box-container .box p{
   font-size: 1.5rem;
   color:var(--light-color);
   text-transform: none;
}

.footer .credit{
   text-align: center;
   border-top: var(--border);
   padding-top: 2rem;
   margin-top: 2rem;
   font-size: 2rem;
   color:var(--light-color);
}

.footer .credit span{
   color:var(--orange);
}

/*Pages CSS part starts here*/

/*About Us page*/

.aboutus{
   background:url(../images/aboutbt.webp) no-repeat;
   background-size: cover;
   background-position: center;
   
}


.aboutus .content{
   width: 40rem;
   padding:4rem;
}

.aboutus .content h3{
   font-size: 6rem;
   text-transform: uppercase;
   color: #fafcf9;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a9bd8e, 0 0 40px #c78d41, 0 0 50px #ac924c, 0 0 60px #d6a03c, 0 0 70px #c2683e;
}

.aboutus .content h4{
   font-size: 2rem;
   color: #f1f5ef;

}

.aboutus .content p{
   line-height: 2;
   font-size: 2rem;
   color:var(--light-color);
   padding:1rem 0;
   
}

.abouthead{
   height: 50vh;
   align-items:center;
}

.common span{
   font-size: 2rem;
   color:var(--blue);
}

.common h3{
   font-size: 3rem;
   color:var(--black);
   
}

.common h4{
   font-size: 2rem;
   color:var(--blue);
   margin-top: 1rem;
}

.common p{
   padding:.5rem 0;
   font-size: 1.4rem;
   color:var(--light-color);
   line-height: 1.5;
   text-transform: none;
   text-justify: auto;
   text-align: justify;
   text-justify: inter-word;
}

.common{
   width: 100%;
}

.products{
   background:url(../images/robotbt.jpg) no-repeat;
   background-size: cover;
   background-position: center;
   
}


.products .content{
   width: 40rem;
   padding:2rem;
   
}

.products .content h3{
   margin-top: 6rem;
   font-size: 6rem;
   text-transform: uppercase;
   color: #fbfcfb;
   text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a9bd8e, 0 0 40px #c78d41, 0 0 50px #ac924c, 0 0 60px #d6a03c, 0 0 70px #c2683e;

}

.products .content h4{
   font-size: 2rem;
   color: #f6f8f4;

}


.contactus form{
   border-radius: .5rem;
   background-color: var(--light-bg);
   padding:2rem;
   margin:0 auto;
   max-width: 50rem;
}

.contactus h1{
   margin-top: 5rem;
}

.contactus form .message{
   margin-bottom: 2rem;
   border-radius: .5rem;
   background-color: var(--blue);
   padding:1.2rem 1rem;
   font-size: 1.7rem;
   color:var(--white);
   text-align: center;
}

.contactus form .box{
   width: 100%;
   margin-top: 1rem;
   margin-bottom: 2rem;
   border-radius: .5rem;
   background-color: var(--white);
   padding:1.2rem 1.4rem;
   font-size: 1.7rem;
   color:var(--black);
   text-transform: none;
}

.contactus form span{
   font-size: 1.7rem;
   color:var(--black);
}

/* media queries  */

@media (max-width:991px){

   html{
      font-size: 55%;
   }

   .header .link-btn{
      display: none;
   }

   section{
      padding:5rem 2rem;
   }

}

@media (max-width:768px){ 

   section{
      padding:3rem 1rem;
   }

   #menu-btn{
      display: inline-block;
      transition: .2s linear;
   }

   #menu-btn.fa-times{
      transform: rotate(180deg);
   }

   .header .nav{
      position: absolute;
      top:99%; left:0; right:0;
      background-color: var(--white);
      border-top: var(--border);
      border-bottom: var(--border);
      padding:1rem 0;
      text-align: center;
      flex-flow: column;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      transition: .2s linear;
   }

   .header .nav.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .header .nav a{
      margin:1rem 0;
      font-size: 2rem;
   }

   .home{
      background-position: left;
   }

   .home .content{
      width: auto;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .home .content h3{
      font-size: 4rem;
   }

   .heading{
      font-size: 3rem;
   }

}

.erp p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.erp span{
   color: var(--blue);
   font-size: 2rem;
}

.itc p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.itc span{
   color: var(--blue);
   font-size: 2rem;
}

.productdevelopment p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.productdevelopment span{
   color: var(--blue);
   font-size: 2rem; 
}

.bizprocess p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.bizprocess span{
   color: var(--blue);
   font-size: 2rem;
}

.bct p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.bct span{
   color: var(--blue);
   font-size: 2rem;
}

.robotics p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.robotics span{
   color: var(--blue);
   font-size: 2rem;
}

.warehousing p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.warehousing span{
   color: var(--blue);
   font-size: 2rem;
}

.indenting p{
   line-height: 1.4;
   font-size: 1.5rem;
   text-transform: none;
   text-align: justify;
   text-justify: inter-word;
}

.indenting span{
   color: var(--blue);
   font-size: 2rem;
}

.gallery{
   margin-top: 4rem;
   padding-top: 8rem;
   text-align: center;
}

/* product control page css starts here */
.searchbar{
 
   margin-top: 1rem;
   width: 100%;
}

.searchbar h1{
   color: var(--white);
}

.searchbar .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(45rem, 2fr));

}

.searchbar .box-container .box{
   text-align: center;
   padding:1rem;
   background-color: var(--white);
   border-radius: .5rem;
 
}


.searchbar .box-container .box h3{
   font-size: 2.2rem;
   padding:0.1rem 0;
   color:var(--blue);
}

.searchbar .box-container .box p{
   font-size: 1.6rem;
   color:var(--light-color);
}

.searchbar .box-container .box select{
   font-size: 1.4rem;
   height: 30px;
   width:175px;
   color:var(--light-color);
   margin-right: 30px;
}

.searchbar .box-container .box label{
   font-size: 1.4rem;
  
}
/* product control page css ends here */




table{
    margin-top: 0%;
    table-layout: auto;
    border-color:var(--light-green);
    background-color: var(--light-green); 
}

tr{
    border: 2px;
    text-align: center;
    font-size: 15px;
}

th{
    color: var(--blue);
}

.btn{
   font-size: 14px;
}

table i{
   font-size: 20px;
   margin-right: 5px;
   margin-left:5px;
}

table .btn{
 margin-left: 10px;
 margin-bottom: 5px;
}
/* Common page css starts */
.commonPage{
   height: 10rem;
  }
  
  .commonContent{
    margin-bottom: 1rem;
    }
  
  .commonContent .box-container{
     margin-bottom: 5rem;
  }
  
  .commonContent .box-container .box1 h3{
     font-size: 2.5rem;
     color: var(--orange);
     text-align: center;
     text-transform: none;
  }
  
  .commonContent .box-container .box1 p{
     font-size: 2rem;
     text-align: center;
     text-transform: none;
  }
  
  /*Common page css ends here */

  .productsearchbar{
   margin-top: 5rem;
   width: 100%; 
   background-color:#9cdddd;
}

.productsearchbar h1{
   color: var(--white);
}

.productsearchbar h3{
   padding-top: 10px;
}

.productsearchbar .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(20rem, 2fr));
   height: 6rem;
   align-items: center;
   
}

.productsearchbar .box-container .boxSearch{
   display: flex;
   text-align: center;
   justify-content: center;
   border-radius: .5rem;
   font-size: 15px;
 }

.productsearchbar .box-container .boxSearch select{
   padding-left: 10px;
   width:350px;
   font-size: 16px;
 }

 .productsearchbar .box-container .boxSearch .page-btn{
   margin-left: 30px;
   
 }


 .container i{
   font-size: 20px;
   margin-left: 30px;

 }

 .container a
{
    text-decoration: none;
}