
/* ================= WHY CHOOSE ================= */
.why-choose-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.why-choose-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 40px;
}

/* Cards */
.why-choose-card {
  background: #f0f0f0;
  border-radius: 15px;
  box-shadow: 0 8px 20px #545454;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px #000000;
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.why-choose-card-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000000;
}

.why-choose-card-desc {
  font-size: 18px;
  font-weight: 500;
  color: #4f4f4f;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-card {
    padding: 25px 15px;
  }
  .why-choose-card-title {
    font-size: 16px;
  }
  .why-choose-card-desc {
    font-size: 17px;
  }
  .why-choose-icon {
    width: 50px;
    height: 50px;
  }
}
