/* Industry pages — Why Choose Us card grid */

.industry-why-choose-section {
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 55%);
}

.industry-why-choose-header {
  position: relative;
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.industry-why-choose-header .industry-our-services-heading {
  margin-bottom: 0;
}

.industry-why-choose-header .industry-our-services-underline-image {
  width: 180px;
  max-width: 50%;
}

.industry-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(31, 44, 94, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 44, 94, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5facdf, #49bce9);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.industry-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 172, 223, 0.35);
  box-shadow: 0 14px 32px rgba(31, 44, 94, 0.1);
}

.industry-why-card:hover::before {
  opacity: 1;
}

.industry-why-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.industry-why-card-num {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(95, 172, 223, 0.12);
  color: #5facdf;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.industry-why-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf5fc 0%, #d8ebf8 100%);
}

.industry-why-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.industry-why-card-title {
  margin: 0;
  color: #1f2c5e;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .industry-why-choose-header .industry-our-services-underline-image {
    width: 140px;
  }

  .industry-why-card-icon {
    width: 48px;
    height: 48px;
  }

  .industry-why-card-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 767.98px) {
  .industry-why-choose-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .industry-why-choose-header .industry-our-services-heading {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .industry-why-card {
    padding: 1.5rem 1.25rem;
  }

  .industry-why-card-title {
    font-size: 1rem;
  }
}
