@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Geist:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --dark-color:#18171B;
  --light-dark-color:#2D2547;
  --main-color:#a486fa;
  --main-dark:#483475;
  --button-color:#6b5997;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Geist", serif;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu{
  position: sticky;
max-width: 90%;
  margin: 0 auto;
  padding: 4px 4px 4px 10px;
  background: #18171B40;
  backdrop-filter: blur(50px);
  color: #18171B;
  border: 1px solid #ffffff20;
  border-radius: 30px;
  display: flex;
  justify-content:center;
  align-items: center;
color: #fff;
overflow: hidden;
}
.main-menu a{
  position: relative;
  color: var(--main-menu);
  padding:0 7px;
  font-size: 16px;
}
.main-menu a:hover::after{
  content: "";
  position: absolute;
  top: 160%;
  left: 0;
  width: 100%;
  height: 2px;
  background: radial-gradient(transparent, #a486fa);
  box-shadow: 0 0 16px #a486fa;
}

.btn{
  background: linear-gradient( to bottom, #453173,#6a5896 );
  padding: 6px 15px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 0 5px  #6a589680;
  color: #fff;
  margin-left: 6px;
    font-size: 16px;
}
.btn-trans{
  font-size: 16px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
}
.hero{
    width: 100%;
  background-image: radial-gradient(
    farthest-corner at 40% -80%,
    #2D2547 20%,
    #18171B 100%);
}
.header{
  width: 90%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid linear-gardient(to right, transparent 0% ,#453173 50%,transparent 100% );
}
.logo{
  width: 100px;
  height: auto;
}
.hero-content{
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding-top: 200px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.transparent{
  display: block;
  margin: 2px auto;
  padding: 8px 12px;
  background: #18171B40;
  backdrop-filter: blur(50px);
  color: #fff;
  border: 1px solid #ffffff20;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
}
.hero-content h1{
  font-size: 60px;
  text-align: center;
}
.hero-content h1 span{
  color: #a486fa;
}
.hero-content p{
  margin: 5px 20% 50px;
  font-size: 15px;
    text-align: center;
}
.btn-group1{
  display: flex;
  gap:20px;
}
#hero-ani{
  display: flex;
  width: 100%;
  justify-content: space-around;
}
#hero-ani i{
  color: #ffffff20;
  opacity: 0;
  animation: spark 10s infinite ease-in-out;

}

#hero-ani i:nth-child(2n){
  font-size: 50px;
    animation-delay: calc(var(--a) * 2s);
}
#hero-ani i:nth-child(2n+1){
  font-size: 20px;
    animation-delay: calc(var(--a) * 0.3s);
}
@keyframes spark {
  0%{
    transform: translateY(50px);
    opacity: 0;
  }
  50%{
    transform: translateY(-200px);
    opacity: 1;
  }
  100%{
    transform: translateY(-500px);
    opacity: 0;
  }
}

.container{
  width: 100%;
  /* height: 100vh; */
background-image: radial-gradient(
  farthest-corner at 40% -80%,
  #18171B 70%,
  #2D2547 100%
  );
  padding: 50px;
}
.back-spark{
  position: relative;
  width: 80%;
margin:0 auto;
/* background: #18171B40; */
backdrop-filter: blur(10px);
color: #fff;
}
.back-spark::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: radial-gradient(#a486fa, #a486fa);
  box-shadow: -5px -10px 26px #a486fa;
  border-radius: 50%;
  z-index: -11;
}
.back-spark::after{
  content: "";
  position: absolute;
  bottom: 50px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: radial-gradient(#a486fa, #a486fa);
  box-shadow: 5px 10px 26px #a486fa;
  border-radius: 50%;
  z-index: -11;
}
.imagebox{
  position: relative;
  width: 100%;
  margin:0 auto;
  /* background: #18171B40; */
  backdrop-filter: blur(50px);
  color: #fff;
  border-radius: 30px;
}

.imagebox img{
  width: 100%;
  height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 10px #18171B ;
    background-size: cover;
    padding: 15px;
    border: 1px solid #ffffff20;
}
.wrap-company{
  width: 100%;
  padding: 10%;
  background: #18171B;
  text-align: center;
  color: #fff;
}
.company-pp{
  width: 90%;
  margin: 0 auto;
  border-bottom: 2px solid linear-gradient(#fff, transparent);
}
.animated-com{
  position: relative;
  margin: 20px 0;
display: flex;
overflow: hidden;
}
.animated-com::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,#18171B, transparent,transparent,transparent,transparent,#18171B);
  z-index: 5;
}
.animated-com i{
  font-size: 70px;
  margin-left: 50px;
  animation: slidebar 15s infinite ease-in-out;
}
@keyframes slidebar {
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-500px);
  }
}
.wrap-tool{
  width: 100%;
background: #18171B;
}
.wrap-content{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 50px;
  background: radial-gradient(
    farthest-corner at 50% 120%,
    #483475 0%,
    #18171B 60%,
    #18171B 100%
    );
}
.wrap-content h1{
  font-size: 50px;
}
.wrap-content h1 span{
  color: #A689FA;
}
.wrap-col{
  width: 80%;
  margin: 0 auto;
  padding: 50px;

}
.wrap-row1{
  width: 100%;
  background: radial-gradient(
    farthest-corner at 50% -50%,
    #483475 0%,
    #18171B 60%,
    #18171B 100%
    );
    box-shadow: 0 0 5px #483475;
    border: 1px solid #ffffff60;
    padding: 40px 40% 40px 40px;
    border-radius: 15px;
    color: #fff;
      position: relative;
}
.wrap-row1-cont{
  display: block;
  flex-direction: column;
}
.wrap-row1-cont h4{
  font-size: 17px;
  color: #A689FA;
}
.wrap-row1-cont h1{
  font-size: 40px;
  margin: 20px 0;
}
.wrap-row1-cont p{
  font-size: 16px;
  letter-spacing: .4px;
  margin: 10px 0;
}
.wrap-row1-cont ul{
  display: inline-flex;
  gap: 20px;
  margin: 10px 0;
  color: #A689FA;
}
.wrap-row1-cont ul li{
  display: flex;
  align-items: center;
  gap:10px;
  font-size: 15px;
}
.btn-more{
  display: block;
  background: radial-gradient(
    farthest-corner at 50% -50%,
    #483475 0%,
    #18171B 60%,
    #18171B 100%
    );
    box-shadow: 0 0 5px #483475;
    border: 1px solid #ffffff60;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    margin: 15px 0;
}
.wrap-row1::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(https://nebula.tailwindawesome.com/_next/static/media/globe.bac42ac6.svg) ;
  background-size: cover;
  background-position: right;
  width: 40%;
  height:100%;
}
.wrap-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap:10px;
}
.wrap-col1{
  margin: 20px auto;
  flex-basis: 47%;
  background: radial-gradient(
    farthest-corner at 50% -50%,
    #483475 0%,
    #18171B 60%,
    #18171B 100%
    );
    box-shadow: 0 0 5px #483475;
    border: 1px solid #ffffff60;
    padding: 3%;
    border-radius: 15px;
    color: #fff;
}
.footer{
  width: 100%;
  background: #18171B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  border: none;
  color: #fff;
}



















































.mobile{
  display: none;
}
.mobile-menu{
  display: none;
}
@media (max-width:600px) {
  .mobile{
    display: flex;
    align-items: center;
  }
  .nav-links{
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 350px;
    background: #483475;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;

  }
  .mobile-menu{
    display: none;
  }
    .mobile-menu.open{
      display: block;
    }
  .show-menu{
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .mobile-menu a{
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
  }
  .mobile-social-icon{
    color: #fff;
    font-size: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
  }
  .mobile-social-icon i{
      cursor: pointer;
    }
  .mobile .fa-solid{
    font-size: 18px;
    margin: 0 10px;
  }
  .desktop{
    display: none;
  }
  .header{
    display: none;
  }
  .logo{
    width: 60px;
    height: auto;
    margin-right: 20px;
  }
  header{
    position:fixed;
    height: 50px;
  }
  .main-menu{
    position: sticky;
    top: 50px;
  }
  .hero-content h1{
    font-size: 35px;
  }
  .wrap-row1-cont ul{
    display: flex;
    flex-direction: column;
  }
  .wrap-row1::after{
    visibility: none;
    opacity: 0;
  }
  .container{
    padding: 10px;
  }
  .back-spark{
    width: 90%;
  }
  .imagebox img{
    padding: 5px;
  }
  .trust h1{
    font-size: 20px;
  }
  .wrap-content h1{
    font-size: 25px;
    margin: 10px 0;
  }
  .wrap-content{
    padding: 60px 5px;
  }
  .wrap-row1{
    padding: 35px;
  }
  .wrap-col{
    width: 100%;
    padding: 30px;
  }
  .wrap-row1-cont h1{
    font-size: 25px;
  }
  .wrap-col1{
    flex-basis: 100%;
    padding: 30px;
  }
}
