/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body */
body {
  background: #0b0f19;
  color: #ffffff;
}

/* Section */
.why-section {
  padding: 80px 10%;
  position: relative;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 20px;
}

/* Title */
.title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Gradient Text */
.title span {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.subtitle {
  color: #9ca3af;
  max-width: 600px;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.6;
}

/* Cards Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card Style */
.card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Hover Effect */
.card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}

/* Hover Animation */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

/* Icon */
.icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Card Text */
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}

/* Bottom Features */
.bottom-features {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Feature Box */
.feature {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Feature Hover */
.feature:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 15px rgba(6,182,212,0.2);
}

/* Feature Title */
.feature span {
  display: block;
  font-size: 18px;
  margin-top: 8px;
  font-weight: 500;
}

/* Feature Text */
.feature p {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }

  .bottom-features {
    flex-direction: column;
  }
}
/* Back Button */
.back-btn {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Hover Effect */
.back-btn:hover {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}
.back-center {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}