

.tut-launchpad-slider-widget-main-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.features-section {
    position: relative;
    overflow: hidden;
    pointer-events: none;
    padding: 20px 0px;
}

.launchpad-slider-swiper-wrapper {
  transition-timing-function: linear !important;
}

.tut-launchpad-slider-widget-btn-container .flow_content_btn_container {
  justify-content: center;
}

/* Starfield background */
.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  opacity: 0.4;
}

.swiper-container {
  width: 100%;
  height: 450px;
  position: relative;
}

.launchpad-slider-swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  padding-top: 50px;
}

.feature-card {
  text-align: center;
  color: white;
  max-width: 280px;
  opacity: 1;
  /* transform: translateY(100px); */
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
}

/* .icon-wrapper::after {
        content: "";
        position: absolute;
        width: 2px;
        height: 180px;
        background: linear-gradient(180deg, white 0%, transparent 100%);
        bottom: -180px;
        left: 50%;
        transform: translateX(-50%);
      } */

.icon {
  font-size: 32px;
}

.wrench {
  color: #6366f1;
}
.cart {
  color: #10b981;
}
.target {
  color: #3b82f6;
}
.globe {
  color: #10b981;
}
.chart {
  color: #a855f7;
}

.feature-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Wave indicator */
.wave-indicator {
  position: relative;
  /* bottom: 40px; */
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #3b82f694 10%,
    #3b82f694 20%,
    transparent 30%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: waveMove 18s linear infinite;
}

.launch-trail {
  position: relative;
  width: 2px;
  /* height: 120px; */
  background: linear-gradient(180deg, white 0%, transparent 100%);
  left: 50%;
  transform: translateX(-50%);
}

.launch-trail:nth-child(even) {
  height: 120px;
}

.launch-trail:nth-child(odd) {
  height: 200px;
}

@keyframes waveMove {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive */
@media (max-width: 768px) {


  .swiper-container {
    height: 400px;
  }

  .feature-card {
    max-width: 220px;
  }

  /* .icon-wrapper {
          width: 60px;
          height: 60px;
          margin-bottom: 25px;
        }

        .icon-wrapper::after {
          height: 150px;
          bottom: -150px;
        } */

  .icon {
    font-size: 28px;
  }

  /* .feature-title {
          font-size: 16px;
        } */
}

@media (max-width: 480px) {
  .swiper-container {
    height: 350px;
  }

  .feature-card {
    max-width: 200px;
  }

  /* .icon-wrapper {
          width: 50px;
          height: 50px;
          margin-bottom: 20px;
        }

        .icon-wrapper::after {
          height: 120px;
          bottom: -120px;
        } */

  .icon {
    font-size: 24px;
  }

  /* .feature-title {
          font-size: 14px;
        } */
}

.bar-pattern {
  width: 100vw;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    #1e40ff 0px,
    #1e40ff 3px,
    #0b1b5c00 3px,
    #0b1b5c00 6px
  );
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.bar-pattern {
  background-size: 200% 100%;
  animation: move 20s linear infinite;
}

@keyframes move {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 100% 0;
  }
}
