/* ==================================================
   WHY CHOOSE US SECTION
================================================== */

.why-section {
  position: relative;
  padding: 40px 5%;

  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/b1.jpeg") center / cover no-repeat;

  color: #ffffff;
}


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

.why-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.why-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

/* GRID */

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

/* CARD */

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #306f1b;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
