/* ExamConnect - Why Choose Section */

.ec-whychoose-section {
  padding: 80px 0;
  background: #ffffff;
}

.ec-whychoose-section .ec-section-badge {
  display: inline-block;
  background: #fff8e6;
  color: #c17a00;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 20px;
  border: 1px solid #F59E0B;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  font-family: Poppins, sans-serif;
}

.ec-whychoose-section .ec-section-title {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0F4C81;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ec-whychoose-section .ec-section-subtitle {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #64748b;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ec-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.ec-why-card {
  background: #f0faf9;
  border: 1px solid #b2dbd8;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ec-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #327b74;
  border-radius: 14px 0 0 14px;
}

.ec-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(50, 123, 116, 0.15);
}

.ec-why-card-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 38px;
  font-weight: 700;
  color: #327b74;
  opacity: 0.08;
  line-height: 1;
  font-family: Poppins, sans-serif;
}

.ec-why-card-icon {
  width: 48px;
  height: 48px;
  background: #327b74;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ec-why-card-icon i {
  color: #ffffff;
  font-size: 22px;
}

.ec-why-card h4 {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0F4C81;
  margin: 0 0 8px;
}

.ec-why-card p {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .ec-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ec-why-grid {
    grid-template-columns: 1fr;
  }
  .ec-whychoose-section .ec-section-title {
    font-size: 24px;
  }
}
.btn-ec-whychoose-cta {
  display: inline-block;
  background: #327b74;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  margin-top: 16px;
}

.btn-ec-whychoose-cta:hover {
  background: #245c57;
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}