.support_section {
  /* background-color: #f8f9fc; */
  padding: 60px 0;
}

.support_inr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.row {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Ensures all boxes stretch to the same height */
  gap: 20px;
  flex-wrap: nowrap; /* Keeps all boxes in a single line */
}

.support_details {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  /* border: 1px solid green; */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  flex: 1; /* Ensures equal width distribution */
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.support_details:hover {
  transform: translateY(-5px);
  border: none;
}

.support_details img {
  max-width: 145px;
  height: auto;
  margin-bottom: 10px;
}

.support_box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.support_box h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.support_box p {
  font-size: 0.9rem;
  color: #444;
  margin: 4px 0;
  /* word-wrap: break-word; */
  overflow-wrap: break-word;
}

.support_box strong {
  font-weight: bold;
}

/* Maintain Equal Height */
.row {
  display: flex;
}

.support_details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

@media (max-width: 1024px) {
  .row {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }
  .support_details {
    max-width: 100%;
    min-height: auto; /* Adjust height dynamically */
  }
}
