body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Saira', sans-serif;
}

.relative {
  position: relative;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.bg-black {
  background-color: #161A1E;
}

.text-white {
  color: white;
}

.overflow-hidden {
  overflow: hidden;
}

.wave-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.wave-layer-1 {
  position: absolute;
  width: 300%;
  height: 200%;
  top: -50%;
  left: -100%;
  background: linear-gradient(
    45deg,
    rgba(0, 123, 255, 0.4) 0%,
    transparent 60%
  );
  animation: waveMotion 6s infinite linear alternate;
}

.wave-layer-2 {
  position: absolute;
  width: 300%;
  height: 200%;
  top: -30%;
  left: -80%;
  background: linear-gradient(
    45deg,
    rgba(57, 255, 20, 0.3) 0%,
    transparent 60%
  );
  animation: waveMotion 16s infinite linear alternate-reverse;
}

.wave-layer-3 {
  position: absolute;
  width: 300%;
  height: 200%;
  top: -20%;
  left: -60%;
  background: linear-gradient(45deg, rgba(51, 51, 51, 0.4) 0%, transparent 60%);
  animation: waveMotion 27s infinite linear alternate;
}

@keyframes waveMotion {
  0% {
    transform: translateX(0%) translateY(0%) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(10%) translateY(5%) rotate(10deg);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0%) translateY(0%) rotate(0deg);
    opacity: 0.3;
  }
}

.content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  z-index: 2;
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  animation: title 20s ease-in-out infinite;
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }
}

.subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .subtitle {
    font-size: 1rem;
  }
}

.services {
  position: absolute;
  bottom: 20px;
  width: 100%;
  overflow: hidden;
}

.services-scroller {
  display: flex;
  width: max-content;
  animation: scroll 100s linear infinite;
}

.service {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .service {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .service {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

@keyframes wave {
  0% {
    background-position: 0 0%;
    opacity: 0.2;
  }
  50% {
    background-position: 100% 0%;
    opacity: 0.4;
  }
  100% {
    background-position: 0 0%;
    opacity: 0.2;
  }
}

@keyframes title {
  0% {
    transform: scale(1);
    text-shadow: 0px 0px 5px rgba(0, 123, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0px 0px 15px rgba(0, 123, 255, 0.4);
  }
  100% {
    transform: scale(1);
    text-shadow: 0px 0px 5px rgba(0, 123, 255, 0.4);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
