body {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
}

.nav-bar {
  background-color: #5454ff;
  padding: 1rem 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5rem;
}

.nav-logo {
  height: 2.5rem;
  width: auto;
}

.nav-link {
  color: #ffff;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
  transition: ease-in-out 0.3s;
}

.nav-link:hover{
  color: #FE94FF;
}

/* .nav-link {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
} */

/* Underline animation */
/* .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #fe94ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
} */


.header {
  overflow: hidden;
  position: relative;
  height: 40rem;
  background-color: #5454ff;
  padding: 0rem 9rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  cursor: default;
  /* cursor: url('/imgs/pointer.svg') 12 12, default; */
}

/* .header-h1 {
  font-size: 4.5rem;
  margin: 0%;
  background: linear-gradient(90deg, #ffe67f 10%, #fe94ff 40%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
} */

.header-h1 {
  font-size: 4.5rem;
  margin: 0;
  background: linear-gradient(90deg, #FFE67F 0%, #FE94FF 50%, #FFE67F 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 10s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}


.p-wrapper {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-top: 1rem;
}

.header-pointer {
  height: 2rem;
  width: auto;
}

.header-p {
  color: #ffff;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0%;
}

.icon {
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("/imgs/star-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 1s ease-in-out infinite alternate;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-10px) rotate(0deg);
  }
}

.wave {
  height: 120px;
  width: 100%;
  background-image: url("/imgs/wave.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  margin-top: -4rem;
}

.services-wrapper {
  padding: 4rem 9rem;
  cursor: default;
}

.service-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-title-icon {
  height: 3rem;
  width: auto;
}

.service-title-h1 {
  font-size: 3rem;
  margin: 0%;
}

.service-title-p {
  font-size: 1.4rem;
  font-weight: 450;
  text-align: center;
}

.services-grid {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 4rem;
  margin: 4rem 0rem;
  text-align: center;
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  height: 16rem;
  width: auto;
}

.service-h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem;
}

.service-p {
  width: 20rem;
  font-size: 1.2rem;
  font-weight: 400;
  /* font-weight: 500; */
  margin: 0%;
}

.footer {
  margin: 2rem 0rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-option {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-icon {
  height: 1.5rem;
  width: auto;
}

/* .footer-h1 {
  color: #5454ff;
  margin: 0.5rem;
  font-size: 1.5rem;
} */


.footer-h1 {
  position: relative;
  display: inline-block;
  margin: 0.5rem;
  font-size: 1.5rem;
  color: #5454ff;
  text-decoration: none;

  /* transition: ease-in-out 0.1s; */
}

/* .footer-h1:hover {
  color: #FE94FF;
} */


.illustration-group {
  margin-top: 4rem;
  display: flex;
  justify-content: right;
  pointer-events: none;
  gap: .1rem;
}

.header-img {
  /* height: 11rem; */
  height: 18rem;
  animation: float ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-1 {
  margin-right: -4rem;
  animation-duration: 4s;
  z-index: 1;
  height: 14rem;
}
.float-2 {
  margin-top: -4rem;
  margin-left: -2rem;
  height: 11rem;
  animation-duration: 3.5s;
  z-index: 2;
}
.float-3 {
  margin-top: -9rem;
  margin-left: -2rem;
  height: 11rem;
  animation-duration: 4.2s;
  z-index: 4;
}
.float-4 {
  margin-left: -12rem;
  height: 11rem;
  animation-duration: 5s;
  z-index: 3;
}
.float-5 {
  margin-top: -3rem;
  margin-left: -1rem;
  animation-duration: 3.8s;
  z-index: 4;
  height: 12rem;
}
.float-6 {
  margin-top: -10rem;
  margin-left: -5rem;
  animation-duration: 4.5s;
  z-index: 3;
  height: 13rem;
}
.float-7 {
  margin-left: -10rem;
  height: 11rem;
  animation-duration: 5.2s;
  z-index: 4;
}
