/*==============================================================================
    WHY CHOOSE US
    File : why_choose_us.css
    Project : GyanPeeth Academy
    Version : 2.0.0
==============================================================================*/

/*==============================================================================
    SECTION
==============================================================================*/

.fe-why {
  position: relative;

  overflow: hidden;

  padding: 100px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.06),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(249, 115, 22, 0.05),
      transparent 30%
    ),
    #ffffff;
}

.fe-why::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  left: -240px;

  top: -240px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.05);

  filter: blur(90px);
}

.fe-why::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(14, 165, 233, 0.08);

  filter: blur(80px);
}

/*==============================================================================
    HEADER
==============================================================================*/

.fe-why-head {
  position: relative;

  z-index: 2;

  text-align: center;

  max-width: 900px;

  margin: 0 auto 70px;
}

.fe-why-kicker {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 20px;

  border-radius: 999px;

  background: #eff6ff;

  color: #2563eb;

  font-weight: 700;

  font-size: 0.9rem;

  margin-bottom: 20px;
}

.fe-why-title {
  margin: 0 0 20px;

  font-size: clamp(2.3rem, 4vw, 3.6rem);

  font-weight: 800;

  color: #0f172a;

  line-height: 1.2;
}

.fe-why-title span {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.fe-why-subtitle {
  max-width: 760px;

  margin: auto;

  color: #64748b;

  line-height: 1.9;

  font-size: 1.05rem;
}

/*==============================================================================
    STATISTICS
==============================================================================*/

.fe-why-stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-bottom: 55px;

  position: relative;

  z-index: 2;
}

.fe-why-stat {
  background: #fff;

  padding: 28px;

  text-align: center;

  border-radius: 24px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);

  transition: 0.35s;
}

.fe-why-stat:hover {
  transform: translateY(-8px);

  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.15);
}

.fe-why-stat strong {
  display: block;

  font-size: 2rem;

  color: #2563eb;

  font-weight: 800;

  margin-bottom: 8px;
}

.fe-why-stat span {
  color: #64748b;

  font-weight: 500;
}

/*==============================================================================
    TRUST CHIPS
==============================================================================*/

.fe-why-trust {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 70px;
}

.fe-why-trustchip {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 22px;

  border-radius: 999px;

  background: #fff;

  border: 1px solid #e5e7eb;

  color: #334155;

  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);

  transition: 0.35s;
}

.fe-why-trustchip i {
  color: #2563eb;
}

.fe-why-trustchip:hover {
  transform: translateY(-5px);

  background: #2563eb;

  color: #fff;

  border-color: #2563eb;
}

.fe-why-trustchip:hover i {
  color: #fff;
}

/*==============================================================================
    GRID
==============================================================================*/

.fe-why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  position: relative;

  z-index: 2;
}

/*==============================================================================
    FEATURE CARD
==============================================================================*/

.fe-why-card {
  position: relative;

  display: flex;

  flex-direction: column;

  height: 100%;

  padding: 34px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(226, 232, 240, 0.9);

  border-radius: 30px;

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.fe-why-card::before {
  content: "";

  position: absolute;

  inset: 0;

  padding: 1px;

  border-radius: 30px;

  background: linear-gradient(135deg, #2563eb, #0ea5e9, #06b6d4);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  opacity: 0;

  transition: 0.35s;
}

.fe-why-card::after {
  content: "";

  position: absolute;

  width: 240px;

  height: 240px;

  right: -120px;

  top: -120px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);

  transition: 0.35s;
}

.fe-why-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.16);
}

.fe-why-card:hover::before {
  opacity: 1;
}

.fe-why-card:hover::after {
  transform: scale(1.2);
}

/*==============================================================================
    ICON
==============================================================================*/

.fe-why-card-icon {
  width: 74px;

  height: 74px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 1.8rem;

  margin-bottom: 24px;

  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.15);

  transition: 0.35s;
}

.fe-why-card:hover .fe-why-card-icon {
  transform: rotate(-8deg) scale(1.08);
}

.fe-why-icon1 {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.fe-why-icon2 {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.fe-why-icon3 {
  background: linear-gradient(135deg, #10b981, #22c55e);
}

.fe-why-icon4 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.fe-why-icon5 {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.fe-why-icon6 {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

/*==============================================================================
    TITLE
==============================================================================*/

.fe-why-card-title {
  margin: 0 0 18px;

  font-size: 1.4rem;

  font-weight: 700;

  color: #0f172a;

  line-height: 1.3;
}

/*==============================================================================
    DESCRIPTION
==============================================================================*/

.fe-why-card-desc {
  margin: 0 0 26px;

  color: #64748b;

  line-height: 1.9;

  font-size: 0.97rem;
}

/*==============================================================================
    LIST
==============================================================================*/

.fe-why-card-list {
  list-style: none;

  margin: 0;

  padding: 0;

  display: grid;

  gap: 14px;
}

.fe-why-card-list li {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #334155;

  font-weight: 500;
}

.fe-why-card-list li i {
  width: 28px;

  height: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #ecfeff;

  color: #0891b2;

  font-size: 0.75rem;

  flex-shrink: 0;
}

/*==============================================================================
    CARD FOOTER
==============================================================================*/

.fe-why-card-footer {
  margin-top: auto;

  padding-top: 24px;

  border-top: 1px solid #e5e7eb;
}

.fe-why-card-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #2563eb;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s;
}

.fe-why-card-link:hover {
  gap: 16px;
}

.fe-why-card-link i {
  transition: 0.3s;
}

.fe-why-card-link:hover i {
  transform: translateX(4px);
}

/*==============================================================================
    ACCESSIBILITY
==============================================================================*/

.fe-why-card:focus-within {
  outline: 3px solid rgba(37, 99, 235, 0.18);

  outline-offset: 5px;
}

/*==============================================================================
    CALL TO ACTION
==============================================================================*/

.fe-why-cta {
  position: relative;

  overflow: hidden;

  margin-top: 80px;

  padding: 60px;

  border-radius: 32px;

  background: linear-gradient(135deg, #2563eb, #1d4ed8, #0ea5e9);

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 60px;

  color: #fff;

  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.25);
}

.fe-why-cta::before {
  content: "";

  position: absolute;

  width: 340px;

  height: 340px;

  right: -140px;

  top: -140px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.fe-why-cta::after {
  content: "";

  position: absolute;

  width: 240px;

  height: 240px;

  left: -80px;

  bottom: -120px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
}

.fe-why-cta-content {
  position: relative;

  z-index: 2;

  max-width: 720px;
}

.fe-why-cta-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 20px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  margin-bottom: 22px;

  font-weight: 700;
}

.fe-why-cta-title {
  margin: 0 0 18px;

  color: #fff;

  font-size: 2.3rem;

  font-weight: 800;

  line-height: 1.2;
}

.fe-why-cta-title span {
  color: #facc15;
}

.fe-why-cta-text {
  margin: 0;

  color: rgba(255, 255, 255, 0.92);

  line-height: 1.9;

  font-size: 1rem;
}

.fe-why-cta-actions {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 35px;
}

.fe-why-cta .fe-btn {
  min-width: 220px;
}

.fe-why-cta .fe-btn-primary {
  background: #fff;

  color: #2563eb;

  border-color: #fff;
}

.fe-why-cta .fe-btn-primary:hover {
  background: #f8fafc;
}

.fe-why-cta .fe-btn-outline {
  color: #fff;

  border: 2px solid rgba(255, 255, 255, 0.7);

  background: transparent;
}

.fe-why-cta .fe-btn-outline:hover {
  background: #fff;

  color: #2563eb;
}

.fe-why-cta-icon {
  position: relative;

  z-index: 2;

  width: 180px;

  height: 180px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  flex-shrink: 0;
}

.fe-why-cta-icon i {
  font-size: 4rem;

  color: #fff;
}

/*==============================================================================
    FEATURE STRIP
==============================================================================*/

.fe-why-strip {
  margin-top: 70px;

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;
}

.fe-why-strip span {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 15px 22px;

  border-radius: 999px;

  background: #fff;

  border: 1px solid #e5e7eb;

  color: #334155;

  font-weight: 600;

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);

  transition: 0.35s;
}

.fe-why-strip span i {
  color: #2563eb;
}

.fe-why-strip span:hover {
  transform: translateY(-6px);

  background: #2563eb;

  color: #fff;

  border-color: #2563eb;
}

.fe-why-strip span:hover i {
  color: #fff;
}

/*==============================================================================
    RESPONSIVE
==============================================================================*/

@media (max-width: 1200px) {
  .fe-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .fe-why {
    padding: 90px 0;
  }

  .fe-why-head {
    margin-bottom: 60px;
  }

  .fe-why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .fe-why-cta {
    flex-direction: column;

    text-align: center;

    padding: 45px;
  }

  .fe-why-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .fe-why {
    padding: 80px 0;
  }

  .fe-why-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .fe-why-card {
    padding: 28px;
  }

  .fe-why-title {
    font-size: 2.2rem;
  }

  .fe-why-cta-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .fe-why {
    padding: 70px 0;
  }

  .fe-why-head {
    margin-bottom: 45px;
  }

  .fe-why-stats {
    grid-template-columns: 1fr;
  }

  .fe-why-card {
    padding: 24px;

    border-radius: 22px;
  }

  .fe-why-card-icon {
    width: 64px;

    height: 64px;

    font-size: 1.5rem;

    border-radius: 18px;
  }

  .fe-why-card-title {
    font-size: 1.25rem;
  }

  .fe-why-cta {
    padding: 35px 25px;
  }

  .fe-why-cta-actions {
    flex-direction: column;

    width: 100%;
  }

  .fe-why-cta-actions .fe-btn {
    width: 100%;
  }

  .fe-why-strip {
    justify-content: flex-start;
  }

  .fe-why-strip span {
    width: 100%;

    justify-content: center;
  }
}

/*==============================================================================
    ACCESSIBILITY
==============================================================================*/

@media (prefers-reduced-motion: reduce) {
  .fe-why-card,
  .fe-why-stat,
  .fe-why-strip span,
  .fe-why-trustchip,
  .fe-why-cta {
    transition: none !important;

    animation: none !important;
  }
}
