@import url('https://fonts.googleapis.com/css2?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');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0F5DFF, #7A3CFF);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.slide-bg {
  transition: transform 6s linear;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.swiper-slide {
  opacity: 0 !important;
  transition: opacity 1.5s ease;
}

.swiper-slide-active {
  opacity: 1 !important;
}

/* Text Animation */
.hero-title,
.hero-desc,
.hero-btn {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.swiper-slide-active .hero-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}


.testimonialSwiper {
  padding: 60px 0;
}

.testimonialSwiper .swiper-slide {
  transition: all 0.4s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

.testimonialSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.testimonialSwiper .swiper-slide>div {
  background: #f9fafb;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  min-height: 320px;
}

.input {
  width: 100%;
  background: #F8FAFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14px;
  color: #0B1B3A;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease,
    background 0.25s ease;
}

/* Hover (very subtle lift) */
.input:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

/* Focus (main highlight) */
.input:focus {
  outline: none;
  border-color: var(--color-neon-purple);
  box-shadow:
    0 0 0 3px rgba(122, 60, 255, 0.12);

  transform: translateY(-1px);
}

/* Placeholder polish */
.input::placeholder {
  color: #94A3B8;
  transition: 0.2s ease;
}

/* Placeholder fade on focus */
.input:focus::placeholder {
  opacity: 0.6;
}

.input:focus {
  animation: inputGlow 0.3s ease;
}

.step-indicator {
  color: #94A3B8;
  cursor: pointer;
  transition: 0.2s;
}

.step-indicator.active {
  color: var(--color-neon-purple);
  font-weight: 600;
}

.step-indicator.active:hover {
  color: #7c3aed; 
}

@keyframes inputGlow {
  from {
    box-shadow: 0 0 0 0 rgba(122, 60, 255, 0);
  }

  to {
    box-shadow: 0 0 0 3px rgba(122, 60, 255, 0.12);
  }
}