.why-choose-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.why-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-title span {
  color: #e6b65c;
}

.why-subtitle {
  font-size: 1rem;
  opacity: 0.75;
}

/* Card */
.why-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 35px 25px;
  border-radius: 18px;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, #222, #141414);
}

/* Highlight card */
.why-card.highlight {
  border: 1px solid #e6b65c;
}

/* Icon */
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

/* Text */
.why-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 2.2rem;
  }
}
