/* ======================================================= */
/* ====== EXACT WHY CHOOSE US SECTION CSS ================ */
/* ======================================================= */

.why-choose-us-section {
  background-color: white;
  padding: 5rem 0; /* py-20 */
}

@media (min-width: 640px) {
  /* sm:py-24 */
  .why-choose-us-section {
    padding: 6rem 0;
  }
}

.why-choose-us-container {
  /* width: 100%; */
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --- Section Title --- */
.whychoose-section-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700; /* font-bold */
  text-align: center;
  color: #1f2937; /* text-gray-800 */
  margin-bottom: 3rem; /* mb-12 */
}
@media (min-width: 640px) {
  /* sm:text-4xl */
  .section-title {
    font-size: 2.25rem;
  }
}

/* --- Features Container with Border --- */
.features-wrapper {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #818cf8; /* border-indigo-400 */
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 1.5rem; /* p-6 */
}
@media (min-width: 640px) {
  /* sm:p-10 */
  .features-wrapper {
    padding: 2.5rem;
  }
}

/* --- Responsive Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default 1 column */
  gap: 1.5rem; /* gap-6 */
}
@media (min-width: 640px) {
  /* sm:grid-cols-2 */
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  /* lg:grid-cols-4 */
  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* --- Single Feature Item --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem; /* p-4 */
}

.icon-container {
  background-color: #f3f4f6; /* bg-gray-100 */
  border-radius: 9999px; /* rounded-full */
  padding: 1.25rem; /* p-5 */
  margin-bottom: 1.25rem; /* mb-5 */
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); /* shadow-md */
}

.icon-container:hover {
  background-color: #e5e7eb; /* hover:bg-gray-200 */
  transform: scale(1.1); /* hover:scale-110 */
}

.feature-icon {
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  color: #1f2937; /* text-gray-800 */
}

.feature-text {
  color: #4b5563; /* text-gray-600 */
  max-width: 20rem; /* max-w-xs */
}
