/*------fonts-----------*/
@import url("https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Dongle&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manjari:wght@100;400;700&family=Nata+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=REM:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/*---global styling----*/
* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
video {
  width: 100%;
  pointer-events: none;
  user-select: none;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-backgrond-color: #0a0a12;
  --primary-border-color: #fff;
}
/*-----------body------------*/
body {
  font-family: "Inter", sans-serif;
  color: white;
  background: var(--primary-backgrond-color);
}
/*-----------preloader------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}
#preloader #preLoad-brand {
  padding: 2rem 4rem;
  width: fit-content;
  background-color: rgba(216, 214, 214, 0.63);
  margin: 1rem 1.5rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
  background-size: 400% 400%;
  animation: shimmer 1.4s ease infinite;
}
#preloader #preLoad-hero {
  height: 60vh;
  margin: 1rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
  background-size: 400% 400%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  gap: 1rem;
}
#preloader #preLoad-hero div {
  padding: 2rem 4rem;
  width: fit-content;
  background-color: rgba(216, 214, 214, 0.63);
  border-radius: 10px;
  background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
  background-size: 400% 400%;
  animation: shimmer 1.4s ease infinite;
}
#preloader #preLoad-hero #preLoad-headline {
  padding: 6rem 9em;
}
#preloader #preLoad-hero #preLoad-para {
  padding: 2rem 7rem;
}
#preloader #preLoad-hero #preLoad-button {
  padding: 1.8rem 5rem;
  border-radius: 40px;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
/*-----main---------*/
main {
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
  padding-top: 8vh;
}
/*-------main hero section---------*/
main #hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem 1.3rem;
  gap: 0.8rem;
  color: white;
}
main h2 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0 1rem;
}
main #hero h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
main h2 strong {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #facc15, #f97316);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
main #hero p {
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
  padding: 0 1rem;
}
main #hero .hero-ctas {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main #hero .hero-ctas a {
  background: linear-gradient(to right, #ee0979, #ff6a00);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(114, 112, 112, 0.39);
}
main #hero .hero-ctas a:nth-of-type(2) {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
}
/*---main search and demos section-----------*/
main #search-demos {
  border-top: 1px solid rgb(41, 40, 40);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}
main #search-demos #search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 94%;
}
main #search-demos #search input {
  color: white;
  border: none;
  border: 1px solid rgba(114, 112, 112, 0.39);
  font-size: 1.2rem;
  padding: 0.8rem;
  font-weight: 400;
  border-radius: 30px;
  width: 95%;
  background: rgba(255, 255, 255, 0.068);
  transition: all 0.2s;
}
main #search-demos #search input::placeholder {
  color: rgba(255, 255, 255, 0.822);
}
main #search-demos #search input:focus {
  outline: none;
  border: 1px solid rgba(114, 112, 112, 0.39);
}
main #search-demos #search .search-categories {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0.5rem 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  max-width: 100%;
}
main #search-demos #search .search-categories li {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.5rem 1rem;
  flex-shrink: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(114, 112, 112, 0.29);
  transition: all 0.2s;
  user-select: none;
}
main #search-demos #search .search-categories li:nth-of-type(1) {
  background: rgb(2, 73, 70);
}
main #search-demos #search .search-categories li:active {
  outline: none;
  transform: scale(0.95);
}
/*--------------main demo sites / section------------*/
main #search-demos #demos,
main #search-demos #demos .demo-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
main #search-demos #demos .demo-options {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: fixed;
  z-index: 8000;
  bottom: 0;
  right: 0;
  height: 0vh;
  width: 100%;
  background-color: rgb(8, 8, 8);
  border: 1px solid rgba(114, 112, 112, 0.39);
  animation: openUp 0.2s ease-in-out forwards;
}
main #search-demos #demos .demo-options .demo-options-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
main #search-demos #demos .demo-options .demo-options-close:hover {
  color: rgb(0, 183, 255);
}
main #search-demos #demos .demo-options ul {
  background-color: inherit;
  display: flex;
  flex-direction: column;
  list-style: none;
  justify-content: space-evenly;
  height: 100%;
}
main #search-demos #demos .demo-options ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s;
  user-select: none;
}
main #search-demos #demos .demo-options ul li:hover,
main #search-demos #demos .demo-options ul li:active {
  color: rgb(0, 183, 255);
}
main #search-demos #demos .demo-options ul li span {
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.2s;
}
@keyframes openUp {
  0% {
    height: 0vh;
  }
  100% {
    height: 30vh;
  }
}
main #search-demos #demos .custom-share {
  position:fixed;
  background: rgb(20, 19, 19);
  bottom: 0;
  z-index: 9000;
  right: 0;
  left: 0;
  border-top: 1px solid rgba(114, 112, 112, 0.26);
  display:none;
  flex-direction: column;
  justify-content:space-evenly;
  gap: 1rem;
  animation: openUp 0.2s ease-in-out forwards;
  padding-bottom:2rem;
}
main #search-demos #demos .custom-share h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 500;
  padding:0 2rem;
}
main #search-demos #demos .custom-share h3 span {
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
main #search-demos #demos .custom-share h3 span:hover {
  color: rgb(0, 183, 255);
}
main #search-demos #demos .custom-share .custom-share-list {
  display: grid;
  grid-template-columns: repeat(4,4fr);
  gap: 1rem;
  row-gap: 2rem;
}
main #search-demos #demos .custom-share .custom-share-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  user-select: none;
  font-size: 1rem;
}
main #search-demos #demos .custom-share .custom-share-list a:hover {
  color: rgb(0, 183, 255);
}
main #search-demos #demos .custom-share .custom-share-list a span {
  font-size: 1.5rem;
  transition: all 0.2s;
  user-select: none;
}








main #search-demos #demos .demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
main #search-demos #demos .demo .demo-img-info {
  width: 100%;
  position: relative;
}
main #search-demos #demos .demo .demo-img-info .demo-img {
  width: 100%;
  overflow: hidden;
}
main #search-demos #demos .demo .demo-catogory {
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  font-size: 0.8rem;
  bottom: 1rem;
  right: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
main #search-demos #demos .demo .demo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  width: 93%;
  font-weight: 600;
}
main #search-demos #demos .demo .demo-title span {
  font-size: 1.5rem;
  user-select: none;
}
main #search-demos #demos .demo .demo-discription {
  padding: 0 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.35;
  opacity: 0.8;
}
main #search-demos #demos .demo .demo-ctas {
  display: flex;
  gap: 2rem;
}
main #search-demos #demos .demo .demo-ctas a {
  background: rgba(255, 255, 255, 0.13);
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.13);
  user-select: none;
}
main #search-demos #demos .demo .demo-ctas a span {
  font-size: 1.1rem;
}
main #search-demos .load-more-demos {
  border: none;
  background: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  user-select: none;
  position: relative;
  margin-bottom: 4rem;
}
main #search-demos .load-more-demos legend {
  background: inherit;
  color: white;
  border: none;
  text-align: center;
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  user-select: none;
}

/*--------------main demo sites loader------------*/
main #search-demos #demo-loader {
  background: inherit;
  width: 100%;
  height: 5vh;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  z-index: 5000;
}
main #search-demos #demo-loader #load {
  width: 25px;
  height: 25px;
  border: 3.8px solid rgba(255, 255, 255, 0.377);
  background: inherit;
  border-top-color: rgb(0, 183, 255);
  border-radius: 50%;
  animation: load 0.5s linear infinite;
}
@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*---------3 step process---------*/
main .process {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
main .process .process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main .process .process-steps .step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.021);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
main .process .process-steps .step span {
  font-size: 2.7rem;
  font-weight: 500;
}
main .process .process-steps .step h3 {
  font-size: 1.3rem;
  font-weight: 500;
}
main .process .process-steps .step p {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
main .process .process-cta {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
main .process .process-cta span {
  font-weight: 300;
  font-size: 1.3rem;
}