@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 10px;
}
h1{
    color:white;
    font-size: 3rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 2.5rem;
    color: peachpuff;
}
h4{
    font-size: 2.5rem;
    color: var(--heading);
}
h5{
  font-size: 2.5rem;
  color: var(--strip);
}

p{
    font-size: 2rem;
    margin-top: 2rem;
}

a{
    text-decoration: none;
    color:black;
    
}
body{
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}
@media only screen and (max-width:480px) {
 html, body{
    width:100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
}
@media screen and (max-width:900px) and (min-width:481px){
  html, body{
    width:100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
}

:root{
    --heading:black;
    --strip: linear-gradient(to bottom, #6FB1FC, #4364F7, #0052D4); 
    --gradient:linear-gradient(0deg,rgb(132 144 255) 0%, rgb(98 189 252) 100%);
    --hover:#FFAC1C;
    --shadow:  0px 15px 30px rgba(0, 0, 0, 0.5);
    --para:#777;
    --para-tint:#EEEDEB;
    --bg:aqua;
    --hover:#FFAC1C;
    --footer:#f48e21;
    --service:#00acdf;
    --service-alt:#7ce8ff;
    --bdr:black;
}
/*------------------------------------------header---------------------------------------*/
.header{
    height: 12rem;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    z-index: 1;
    background: var(--para-tint);
    padding-right: 2rem;
    
}

.logo-img{
  height: 12rem;
  width: 25%;
   
}
.logo-video{
  height: 98%;
  width: 100%;  
}
.navbar-list{
  display: flex;
  gap:4.8rem;
  text-decoration: none;
  list-style: none;
}
.navbar-link:link,
  .navbar-link:visited{
    display:inline-block;
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.4s linear;
    padding-top: 4rem;
  }
  .navbar-link:hover,
  .navbar-link:active{
    color: var(--hover);
  }
  .mobile-nav-btn{
   display: none;
    border:none;
    background-color: transparent;
    cursor: pointer;
  }
  .mobile-nav-btn{
    height: 5rem;
    width: 5rem;
  }
  .mobile-nav-icon{
    height: 4rem;
    width: 4rem;
  }
  .mobile-nav-icon[name="close-outline"]{
    display: none;
  }  
  .sticky{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 12rem;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    
  }
/*------------------------------------------------------*/
  @media(max-width:980px){
    .header{
      position: relative;
    }
    .mobile-nav-btn{
      display: block;
      z-index: 999;
      border: 3px solid black;
    }
    .navbar{
      height: 100vh;
      width: 100%;
      position: absolute;
      z-index: 999;
      background:var(--gradient);
      top:0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: all 0.5s linear;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      list-style: none;
    }
    .navbar-list{
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .active .navbar{
      transform: translateX(0%);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .active .mobile-nav-btn .mobile-nav-icon[name="menu-outline"]{
      display: none;
    }
    .active .mobile-nav-btn .mobile-nav-icon[name="close-outline"]{
      display: block;
    }
    .logo-img{
      height: 12rem;
      width: 60%;
       
    }

  }
  
/*------------------------------------------Hero---------------------------*/
.hero{
    height: 100vh;
    width: 100vw;
    background: linear-gradient(45deg,#d2001a,#7462ff,#f48e21,#23d5ab);
    background-size: 300% 300%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  
 }
 @keyframes color{
    0%{
        background-position: 0 50%;
    }
    0%{
        background-position: 0 50%;
    }
 }
 .hero-child{
    height: 80vh;
    width: 90vw;
    padding-top: 15%;

 }
 .contact-hero{
        height: 80vh;
        width: 100vw;
        opacity: 0.7;
 }
 
/*-------------------------------------------about-------------------------*/
.title-container{
  height: 10vh;
  width: 100vw;
  margin-top: 8rem;
}
.comon-heading{
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-left: 2rem;
}
.comon-heading::before{
    content: "";
    position: absolute;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: var(--footer);
    top: 110%;
}
.comon-heading::after{
  content: "";
  position: absolute;
  height: .5rem;
  width: 20rem;
  background: var(--footer);
  top: 125%;
  left:2rem;
}
.about{
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    justify-content: center;
    align-content: center;
    gap:1rem;
     
}
@media screen and (max-width: 760px) {
  .about{
    display: grid;
    grid-template-rows: repeat(2,1fr);
    justify-content: center;
    align-content: center;
    gap:10px;
     
}
}
.para{
    background:var(--para-tint);
    padding: 20px;
    border-radius: 10px;
}
.about-img{
    background-color:var(--bg);
    border-radius: 2rem;
    background-image: url("img/noori.jpeg");
    background-size: cover;
}
.about-head{
  font-size: 3rem;
  margin-top: 10%;
  color:white;
}
.abt-upd{
    width: 90vw;
    
    margin: 20px auto;
    border-radius: 10px;
    background-color: var(--para-tint);
    font-size: 22px;
    padding: 10px;
    line-height: 1.5;
}
/*---------------------------------------------------------clients-----------------------*/
@keyframes slidelogo{
   
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}
  .client-section{
      height: 150px;
      width: 100vw;
      margin-top: 40px;
      background-color: white;
      overflow: hidden;
      padding: 20px 0;
      white-space: nowrap;
      position: relative;
  }
  .client-section:before,
  .client-section:after{
    position: absolute;
    top: 0;
    width: 100px;
    height: 150px;
    content: "";
    z-index: 2;

  }
  .client-section::before{    
    left: 0;    
    background: linear-gradient(to left,rgba(255, 255, 255, 0),#EEEDEB);
    
  }
  .client-section:after{    
    right: 0;    
    background: linear-gradient(to right,rgba(255, 255, 255, 0),#EEEDEB);
    
  }
  .client-section:hover .logo-slide{
    animation-play-state: paused;
  }
 
  .logo-slide{
      display: inline-block;
      
      animation: slidelogo 40s linear infinite ;
  }
  .logo-slide img{
      height: 100px;
      margin: 0 20px;
      width: 200px;
  }
 /*------------------------------------------------focus service----------------------------*/
 .focus{
    margin:50px;
    font-size: 20px;
   
 } 
 .focus-box{
    border:2px solid #FFAC1C;
    border-radius: 10px;
 }
 
/*--------------------------------------------------Service------------------------*/
.service-container{    
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    grid-template-rows: repeat(6,300px);
    gap: 2rem;
    font-size: 2rem;
    font-weight: 500;
    width: 95vw;
    margin: 6rem auto;
   }
.service-box{
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
  
}
.service-box:hover{
  background-color: var(--hover);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
.sub-service{
  margin-left: 40px;
  margin-top: 10%;
  line-height: 3rem;
}
.index-box{
  font-size: 3rem;
  font-weight: 600;
  padding-left: 20px;
}
.max{
  margin-left: 15%;
}
@media(max-width:578px){
  .service-container{    
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    grid-template-rows: repeat(16,350px);
    gap: 2rem;
    font-size: 2rem;
    font-weight: 500;
    width: 95vw;
    margin: 6rem auto;
   }

}

 /*----------------------------------------------------counter------------------*/
  .atul{
        height: 20vh;
        width: 100vw;
        background: var(--strip);
        display: grid;
        grid-template-columns: repeat(2,1fr);
        justify-content: center;
        align-items: center;
        
      }
  .counter-contaner{
         height: 20vh;
        width: 100vw;
        background: var(--strip);
        display: grid;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
        justify-content: center;  
        margin-top: 100px;
  }
 .test{
  text-align: center;
 }
 
  /*-----------------------------------------------contact page---------------------*/
  .contact-page{
    width: 99vw;
    margin-top: 10rem;
  }
  .contact-container{
    width: 99vw;
    margin-top: 20%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 300px;
       
  }
.contact-div{
  border:1px solid black;
  text-align: center;
  padding-top: 15%;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5); 
}
.contact-icon{
  font-size: 3.5rem;
  color:#0000FF;
}
.pcont{
  font-size: 2.5rem;
  color:black;
}
.section-container{
  height: 70vh;
  width: 90vw;
   margin: 0 auto;
  display: grid;
  grid-template-columns:1fr 2fr;
  
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;       
}
.google-container{
    height: 60vh;
    width: 90vw;
    margin: 0 auto;
}
.form-box{
  height: 3rem;
  width: 60%;
  border-radius: 5px;

}
.form-box1{
  border-radius: 5px;
  width: 60%;
}
.contact-contant{
  text-align: center;
  color: #0000FF;
}
.btn{
  background: var(--strip);
  height: 3rem;
  width: 10rem;
  border-radius: 5px;
  text-align: center;
 }
 .btn:hover{
  color: white;
 }
 .cont-btn{
    margin-left: 20%;
 }
 @media(max-width:578px){
  .contact-container{    
    width: 99vw;
    margin-top: 20%;
    display: grid;
    grid-template-rows:repeat(3,300px);
    grid-template-columns: 1fr;
       
  }

 }
 
 /*------------------------------------------------client secetion-----------------------*/
.body-swiper{
    height: 70vh;
    border: 2px solid black;
    margin-top: 50px;
}

 .swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.f-footer{
    height: 15vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    margin-top: 100px;
    background: var(--strip);
    padding-right: 2rem;
}
.facebook-logo{
  height: 40px;
  color: #1877F2;
  width: 40px;
  background-color: white;
  margin-top: 35%;
}
.insta-logo{
  height: 4rem;
  width: 4rem; 
}
.yt-logo{
  height: 40px;
  color: #FF0000;
  width: 40px;
  background-color: white;
}

/*---------------------------------service dublicate----------------------*/
.header-pra{
  height: 30vh;
  width: 100vw;
  background-color: var(--footer);
}
.service-hero{
  height: 90vh;
  width: 100vw;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.sr-video{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -45%);
  min-width: 100%;
  min-height: 100%;
}
.service-cont{
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: repeat(16,1fr);
  gap:20px;
 
}
.box1{
  background: var(--para-tint);
  border-radius: 10px;
  height: 100%;
  position: relative;
  border: 1px solid pink;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
  justify-content: center;
  align-items: center;
}
@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  .box1::after,.box1::before{
    content:'';
    position:absolute;
    background-image: conic-gradient(from var(--angle),transparent 70%,#FF00FF);
    height: 100%;
    width: 100%;
    top:50%;
    left: 50%;
    translate:-50% -50%;
    padding: 3px;
    border-radius: 10px;
    z-index: -1;
    animation: 5s spin linear infinite;
  }
  .box1::before{
    filter: blur(1rem);
    opacity: 0.5;
  }
  @keyframes spin{
    from {
        --angle:0deg;
    }
    to{
        --angle:360deg;
    }
  }
  .img-service2{
    height: 80%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 10px;
  }
  .img-service{
    overflow: hidden;
    border-radius: 10px;
  }
  .img-service2{
    height: 80%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 10px;
  }
  .img-service2:hover{
    transform: scale(1.25);
    border-radius: 10px;
  }
  .para-service{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
  }
  @media(max-width:770px){
    .box1{
      display: grid;
    gap: 0px;
    grid-template-columns: 1fr;
  
    }
    
  }
   
  /*-------------------------------------------------------about us----------------------*/
  .about-img{
      background-image: url("img/about_us.jpg");
      background-repeat: no-repeat;
      background-position: center;
  }
  .about-img1{
    background-image: url("img/wareh.jpg");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

  .grid-right-col2{
    margin: 10rem auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    
  }
  @media(max-width:770px){
    .grid-right-col2{
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2,1fr);
    }
    .about-img1{
      background-image: url("img/wareh.jpg");
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 10px;
  }
  }
  .collapsible{
    min-height: 90vh;
    width: 80%;
    margin: 0 auto;
    background-image: var(--gradient);
    border-radius: 10px;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  }
  .faq-title{
    text-align: center;
    font-size: 4rem;
    padding-top: 20px;
  }
  .faq{
    max-width: 700px;
    margin:0 auto;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--footer);
    cursor: pointer;

  }
  .question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .colap-para{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
  }
  .answer{
    max-height: 0;
    overflow: hidden;
    padding: 10px;
  }
  .para-c{
    line-height: 3rem;
  }
  .down-icon{
    color:white;
    font-size: 3rem;
  }
  .faq.active .answer{
    max-height: 900px;
  }
  .faq.active ion-icon{
    transform: rotate(180deg);
  }
  .ion-icon{
    transition: transform 10s ease-in;
  }
  .parad{
    font-size: 20px;
    line-height: 1.5;
  }
  /*----------------------------------------------------------------------------/*/
  .sample-container{
    width: 94vw;
    margin: 3px;
  }
  .sbox1{
      
      width: 94vw;
      display: grid;
      grid-template-columns: 1fr 1fr 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-rows: repeat(1,ifr);
      margin-right: 3px;
      border: 1px solid var(--bdr);
  }
  .sbox{
     display: grid;
     grid-template-rows: repeat(4,100px);
     border: .5px solid #3b444b ;
  }
  .ssbox1{
    background-color: #7FA1C3;
    text-align: center;
    padding-top: 20px;
    font-size: 22px;
    font-weight: 600;
   
  }
  .ssbox2{
    background-color: #B5CFB7;
    text-align: center;
    padding-top: 15px;
    font-size: 15px;
    font-weight: 600;
    
  }
  .ssbox3{
    background-color: #FFE9D0;
    text-align: center;
    padding-top: 15px;
    font-size: 15px;
    font-weight: 600;
  }
  .ssbox4{
    background-color: #FFFED3;
    text-align: center;
    padding-top: 20px;
    font-size: 15px;
    font-weight: 600;
  }
  @media (max-width:760px){
    .ssbox2{
      background-color: #B5CFB7;
      text-align: center;
      padding-top: 5px;
      font-size: 11px;
      
    }
  }
  /*---------------------scroll animation-------------*/
  .card{
      width: 80vw;
      border: 10px solid #00FFFF;
      margin: 40px auto;
      display: grid;
      grid-template-columns: repeat(2,1fr);
      padding-bottom: 10px;
  }
  .card2{
    
    font-size: 30px;
    font-weight: 500;
    color: blue;
    height: 200px;
    width: 200px;
    margin-top: 20%;
    margin-left: 20%;
  }
  .card4{
      font-size: 30px;
      margin-top: 10%;
      
  }
  .card5{
    font-size: 20px;
    padding-top: 50px;
  }
  @media(max-width:578px){
    .card{
      width: 80vw;
      border: 10px solid #00FFFF;
      margin: 40px auto;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows:repeat(1,1fr) ;
      padding-bottom: 10px;
  }
  .card2{
    
    font-size: 30px;
    font-weight: 600;
    color: blue;
    height: 200px;
    width: 200px;
    margin-top: 20%;
    margin-left: 20%;
  }
  .card4{
    font-size: 30px;
    margin-top: 20%;
    
}
.card3{
  margin-left: 50px;
}
}
  .indus{
    width: 80vw;
    height: 85vh;
    margin: 40px auto;
    background-image: url("img/client-logo/industry.png");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
   
}