/* ================= WHY CHOOSE ================= */
.why-choose {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.why-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.why-left h2 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-sub {
  font-size: 18px;
  color: #475569;
  margin-bottom: 36px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;

  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);

  transition: all 0.35s ease;
  opacity: 0;
}

.why-item span {
  font-size: 22px;
}

.why-item:hover {
  transform: translateX(10px);
  box-shadow: 0 18px 40px rgba(91,108,255,0.18);
}

/* RIGHT */
.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stats-card {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  padding: 36px;
  border-radius: 24px;
  text-align: center;

  box-shadow: 0 25px 50px rgba(91,108,255,0.15);
  transition: all 0.4s ease;

  opacity: 0;
}

.stats-card h3 {
  font-size: 42px;
  color: #5B6CFF;
  margin-bottom: 8px;
}

.stats-card p {
  color: #475569;
  font-weight: 500;
}

.stats-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(91,108,255,0.25);
}

/* ================= SCROLL ANIMATION ================= */
.why-choose.active .why-item {
  animation: slideFadeLeft 0.7s ease forwards;
}

.why-choose.active .stats-card {
  animation: slideFadeUp 0.7s ease forwards;
}

.why-choose.active .why-item:nth-child(1) { animation-delay: 0.2s; }
.why-choose.active .why-item:nth-child(2) { animation-delay: 0.35s; }
.why-choose.active .why-item:nth-child(3) { animation-delay: 0.5s; }
.why-choose.active .why-item:nth-child(4) { animation-delay: 0.65s; }

.why-choose.active .stats-card:nth-child(1) { animation-delay: 0.4s; }
.why-choose.active .stats-card:nth-child(2) { animation-delay: 0.55s; }
.why-choose.active .stats-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-left h2 {
    font-size: 30px;
  }

  .why-right {
    grid-template-columns: 1fr;
  }
  .why-choose{
    margin-top: -15%;
  }
}
