*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Lexend", sans-serif;
}


:root{
    --h1-font: 4rem;
    --h2-font: 3.5rem;
    --p-font: 1.1rem;

    --bg-color: #ffffff;
    --text-color: #000000;
    --main-color: #ffee02;
    --other-color: #727272;
}

.body{
  background-color: var(--bg-color);
  color: var(--text-color);
     width: 100%;
    overflow-x: hidden;
}

header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  width: 100%;
  position: fixed;
  right: 0;
  z-index: 1000;
  padding: 25px 17%;
  transition: all .6s ease;
}

.logo img{
   width: 100%;
   height: auto;
}
.navlinks a{
  display:  inline-block;
  font-size: var(--p-font);
  font-weight: 500;
  margin: 0 20px;
  color:var(--bg-color);
 transition: all .6s ease;
}
.navlinks a:hover{
  color: var(--main-color);
}
.h-right{
  display: flex;
  align-items: center;
}
.h-right a i {
  width: 100%;
  height: auto;
  color: var(--bg-color);
  font-size: 24px;
}
.h-right a i:hover{
  transform: scale(1.1);
  color: var(--main-color);
}
.h-btn{
  display: inline-block;
  font-size: 16px;
  color: var(--text-color);
   padding: 18px 60px 15px 40px; 
  font-weight: 700;
  background-color: var(--main-color);
  border-radius: 20px 0;
  margin: 0 30px;
  transition: all .7s ease;
}

.h-btn:hover{
  border-radius: 0 20px 0 0;
  background: var(--bg-color);
}
#menu-icon{
    font-size: 40px;
    z-index: 10001;
    color: var(--bg-color);
    cursor: pointer;
    display: none;
}

section{
  padding: 100px 17% 90px;
}
.home{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: url(assets/bg.jpg);
  background-size: cover;
  background-position: center;
}

.home-content{
  padding-top: 170px;
}
.home-img{
  position: relative;
}
.home-img img{
  width: 100% ; 
  height: 100%;
  margin-top: 50px;
  max-width: 100%;
  object-fit: contain;
}
.home-content h5{
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 9px;
  letter-spacing: .7px;
}
.home-content h1{
  font-size: var(--h1-font);
  color: var(--bg-color);
}
.info-box{
  position: absolute;
  background: #ffffff1a;
  border: 1px solid #ffffff33;
  border-radius: 30px;
  padding: 35px 20px 25px;
  max-width: 190px;
  right: 10px;
  top: 130px;
}
.count{
  font-size: 45px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 5px ;

}
.info-text{
  font-size: 15px;
  color: var(--bg-color);
  line-height: 28px;
  text-transform: uppercase;
}
.social-icons{
  position: absolute;
 top: 60%;
  left: 5%;
  /* transform: translateY(-50%); */


}
.social-icons i{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--bg-color);
  border: 1px solid #5a5a5b;
  margin-bottom: 15px;
  background: transparent;
  transition: all .6s ease;
}

.social-icons i:hover{
  transform: scale(1.1) translateY(-4px);
  color: var(--text-color);
  background-color: var(--bg-color);
  border: 1px solid var(--bg-color);
}
.arrow{
  position: absolute;
  bottom: 8%;
  right: 5%;


}

.arrow i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 30px;
  border-radius: 50%;
  color: var(--text-color);
  background-color: var(--main-color);
  font-size: 30px;
  border: 1px solid transparent;
  transition: all .7s ease;
}

.arrow i:hover{
  background: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  transform: scale(0.9);
}

header.sticky{
  background: #0c0c0c;
  box-shadow: 1px 1px 5px 0px rgb(0 0 0 / 30%);
  padding: 15px 17%;
}

.about{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}
.about-img {
  position: relative;
}
.about-img img{
  width: 100%;
  height: 100%;
  max-width: 520px;
  object-fit: contain;
}
.ab-img img{
  position: absolute;
  top: -220px;
  right: 180px;
  max-width: 230px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.about-text h2{
  font-size: var(--h2-font);
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}
.about-text h5{
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.about-text p{
  font-size: var(--p-font);
  font-weight: 400;
  line-height: 30px;
  color: var(--other-color);
  margin-bottom: 25px;
}
.about-text h4{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 35px;
  line-height: 1.8;
}
.outer{
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.f-block{
font-size: 22px;
} 
.f-block i{
  font-size: 30px;
  margin-right: 10px;
}
.btn{
  display: inline-block;
  font-size: 16px;
  color: var(--text-color);
    padding: 18px 60px 15px 40px;  
    max-width: 200px;
  font-weight: 700;
  background-color: var(--main-color);
  border-radius: 20px 0;
  transition: all .7s ease;
}
.btn:hover{
  border-radius: 0 20px 0 0;
  background: var(--text-color);
  color: var(--bg-color);
}
.text-center{
  text-align: center;
}
.text-center h5{
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.text-center h2{
font-size: var(--h2-font);
font-weight: 700;
line-height: 1.2;
}
.services-content{
  display: grid;
  grid-template-columns: repeat(auto-fit , minmax(300px, auto));
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}

.s-img{
  margin-bottom: 10px;
  overflow: hidden;
  clip-path: polygon(0 27.5%, 100% 0, 100% 74%, 0 99%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.s-img img{
  display: block;
  width: 100%;
  transition: transform 0.6s;
  cursor: pointer;
}
.s-img img:hover{
  transform: scale(1.2);
}

.row h3{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.row p{
  font-size: var(--p-font);
  font-weight: 400;
  line-height: 30px;
  color: var(--other-color);
}
.feature-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
}
.inner-box{
  margin-bottom: 20px;
  padding: 30px;
}
.inner-box i{
  color: var(--text-color);
  background-color: var(--main-color);
  display: inline-block;
  padding: 12px;
  border-radius: 10px 0;
  font-size: 24px;
}
.inner-box h4{
  margin: 20px 0;
  font-size: 25px;
  font-weight: 600;
}
.inner-box p{
  font-size: var(--p-font);
  font-weight: 400;
  line-height: 30px;
  color: var(--other-color);
}
.feature-middle{
  width: 100%;
  height: auto;
}
.contact{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 2rem;
  background: var(--text-color);
  background-image: url(assets/c.jpg);
  background-size: cover;
  background-position: center;
}
.contact-box{
  display: flex;
  flex-direction: column;

}
.contact-box h3{
  color: var(--bg-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
.contact-box a{
  font-size: 20px;
  font-weight: 500;
  color: var(--other-color);
  margin-bottom: 1.1rem;
  transition: all .7s ease;
}
.contact-box a:hover{
  color: var(--bg-color);
  transform: translateY(-5px);
}
.contact-box .logo img{
  width: 170px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.qr img{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  padding: 13px;
  width: 110px;
  height: auto;
  border-radius: 0.8rem;
}

.copyright{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 17% 20px;
  background: #0c0c0c;
}
.end-text1{
  font-size: 17px;
  color: var(--other-color);
}
.end-text2 a{
  font-size: 17px;
  color: var(--other-color);
  transition: all .7s ease;
}
.end-text2 a:hover{
  color: var(--bg-color);
}

@media(max-width:1700px){
  header{
    padding: 20px 5%;
  }
  header.sticky{
    padding: 12px 5%;
  }
  section{
    padding: 90px 10% 80px;
  }
  .copyright{
    padding: 15px 10% 15px;
  }
  :root{
    --h1-font: 3.5rem;
    --h2-font: 2.5rem;
    --p-font: 15px;
  }
  .home-img img{
  width: 60%; 
  height: 10%;
  margin-top: 30px;
  max-width: 100%;
  object-fit: contain;
}
.ab-img img{
  position: absolute;
  top: -220px;
  right: 0px;
  max-width: 230px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
}

@media(max-width:1350px){
  :root{
    --h1-font: 3.5rem;
    --h2-font: 2.5rem;
    --p-font: 15px;
  }
}

@media(max-width:1190px){
  :root{
    --h1-font: 3rem;
    --h2-font: 2rem; 
  }
  .ab-img img{
    position: absolute;
    top: -20px;
    right: -270px;
    max-width: 130px;
  }
  .info-box{
    padding: 30px 20px 20px;
    max-width: 180px;
    right: 0px;
    top:80px;
  }
}

@media(max-width:1120px){
   #menu-icon{
    display: block;
   }
   .navlinks{
    position: absolute;
    width: 100%;
    height: 100vh;
    padding: 80px 40px;
    background-color: #0c0c0c;
    color: var(--bg-color);
    top: 0;
    right: 0;
    left: 100%;
    display: flex;
    flex-direction: column;
    transition: all .7s ease-in-out;
   }
   .navlinks a{
    display: block;
    padding: 0;
    margin: 0px 0px 42px 0px;
    font-size: 2rem;
    font-weight: 500;
   }
   .navlinks.open{
     left: 0;
   }
}
@media(max-width:1020px){
.home{
  height: 100vh;
}
  section{
    width: 100%;
     overflow-y: hidden;
  }
  header{
    padding: 15px 2%;
  }
  header.sticky{
    padding: 10px 2%;
  }
  section{
    padding: 80px 5% 70px;
  }
  .copyright{
    padding: 15px 5% 15px;
  }
  :root{
    --h1-font: 2.6rem;
    --h2-font: 1.8rem; 
  }
}

@media(max-width:800px){
    .about{
      grid-template-columns: 1fr;
    }
    .about-img{
      text-align: center;
    }
    .ab-img{
      display: none;
    }
    .info-box{
      display: none;
    }
    .social-icons{
      display: none;
    }
    :root{
      --h1-font: 2.4rem;
      --h2-font: 1.6rem; 
    }
    .home-img img{
      margin-top: 20px;
      max-width: 750px;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
}
@media(max-width:680px){
 .home{
  height: 100vh;
 }
 :root{
  --h1-font: 2rem;
  --h2-font: 1.4rem; 
}
.home-content{
  padding-top: 100px;
}
.home-content h5{
  font-size: 15px;
}
section{
  padding: 80px 2% 80px;
}
}
@media(max-width:568px){
  .home{
    height: 100vh;
   }
   :root{
    --h1-font: 1.6rem;
    --h2-font: 1.4rem; 
  }
  .h-btn{
    padding: 14px 30px 13px 30px;
    font-size: 14px;
    margin: 0 8px;
  }

}

@media(max-width:450px){

  .logo img{
    width: 80%;
    height: auto;
 }
 .h-right a i {
  width: 100%;
  height: auto;
  color: var(--bg-color);
  font-size: 22px;
}
.h-btn{
  display: inline-block;
  font-size: 14px;
  color: var(--text-color);
   padding: 12px 25px 10px 10px; 
  font-weight: 700;
  background-color: var(--main-color);
  border-radius: 20px 0;
  margin: 0 10px;
  transition: all .7s ease;
}
#menu-icon{
  font-size: 36px;
}
section .about{
  padding: 80px 2% 0px;
}
.services{
  padding: 0px 2% 80px;
}
.feature-middle img{
 height: 40vh;
 text-align: center;
 padding-left: 25%;
}
.contact{
padding-left: 10%;
}
.copyright{
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
}

}

@media(max-width:450px){
  .search-icon{
    display: none;
  }
  .h-btn{
    display: inline-block;
    font-size: 14px;
    color: var(--text-color);
     padding: 12px 20px 10px 10px; 
    font-weight: 700;
    background-color: var(--main-color);
    border-radius: 20px 0;
    margin: 0 10px;
    transition: all .7s ease;
  }
}
@media(max-width:1500px){
  .ab-img img{
    position: absolute;
    top: -260px;
    right: -20px;
    max-width: 200px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
  }
}
@media(max-width:1340px){
  .ab-img img{
    position: absolute;
    top: -260px;
    right: -30px;
    max-width: 200px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
  }
}
@media(max-width:1180px){
  .ab-img img{
    position: absolute;
    top: -200px;
    right: -30px;
    max-width: 180px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
  }
}
@media(max-width:935px){
  .ab-img img{
    position: absolute;
    top: -180px;
    right: -30px;
    max-width: 150px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
  }
}