.why-softleed {
  padding: 90px 80px;
  background:#06071B;
  color: #fff;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-title {
  font-size: 36px;
  font-weight: 600;
  color: #4471F5;
  margin-bottom: 12px;
}

.why-subtitle {
  max-width: 620px;
  color: #cfcfe6;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(59,68,198,0.2),
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03),
    rgba(77,88,255,0.2)
  );
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




/* Text */
.why-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfd3ff;
}
.why-card {
  align-items: center; /* ✅ vertically center image & text */
}
/* Icon image inside card */
.why-card img {
  width: 70px;
  height: 70px;
  min-width: 70px; /* prevents shrinking */
  object-fit: contain;
  flex-shrink: 0;
  
}

/* Tablet */
@media (max-width: 992px) {
  .why-card img {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  

  .why-card img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    
  }
}

/* Responsive */
@media (max-width: 992px) {
    .why-title {
    font-size: 29px;
  }

  .why-subtitle {
    font-size: 16px;
  }

  .why-softleed {
    padding: 70px 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .why-title {
    font-size: 26px;
  }

  .why-subtitle {
    font-size: 15px;
  }

  .why-card {
    padding: 22px;
  }
  .why-content h3 {
  font-size: 16px;
}

.why-content p {
  font-size: 12px;
}
}
