/* [project]/src/styles/IndustriesSection.css [client] (css) */
.industries-section {
  background-color: #000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  display: flex;
}

.industries-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

.industries-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.industries-title {
  font-size: 42px;
  font-family: var(--font-heading);
  color: #fff;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 48px;
}

.industries-title .text-highlight {
  color: #54b248;
}

.industries-subtitle {
  font-size: 18px;
  font-family: var(--font-body);
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

.stats-row {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
  margin-bottom: 50px;
  display: grid;
}

.stat-card {
  text-align: center;
  background-color: #fff;
  border: 2.5px dashed #54b248;
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 15px 30px #0000004d;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px #54b24833;
}

.stat-custom-img {
  object-fit: contain;
  width: 65px;
  height: 64px;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 26px;
  font-family: var(--font-body);
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.stat-text {
  font-size: 18px;
  font-family: var(--font-body);
  color: #000;
  margin: 0;
  font-weight: 600;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  display: grid;
}

.value-card {
  text-align: center;
  background-color: #fff;
  border: none;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  min-height: 270px;
  padding: 30px 20px;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px #0000000d;
}

.value-card:before {
  content: "";
  opacity: 0;
  z-index: 5;
  background-color: #54b248;
  width: 6px;
  height: 100%;
  transition: opacity .2s;
  position: absolute;
  top: 0;
  right: 0;
}

.value-card:after {
  content: "";
  z-index: 5;
  background-color: #54b248;
  width: 0;
  height: 6px;
  transition: width .4s;
  position: absolute;
  bottom: 0;
  right: 0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px #0000001a;
}

.value-card:hover:before {
  opacity: 1;
}

.value-card:hover:after {
  width: 100%;
}

.value-icon {
  color: #54b248;
  justify-content: center;
  align-items: center;
  width: 69px;
  height: 59px;
  margin-bottom: 20px;
  display: flex;
}

.value-icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.value-card:hover .value-icon img {
  transform: scale(1.1);
}

.value-title {
  font-size: 26px;
  font-family: var(--font-body);
  color: #54b248;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.value-desc {
  font-size: 18px;
  font-family: var(--font-body);
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.5;
}

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

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 15px;
    display: grid;
  }

  .stat-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 20px 10px;
  }

  .stat-custom-img {
    width: 50px;
    height: 50px;
  }

  .industries-title {
    font-size: 32px;
  }

  .industries-section {
    padding: 40px 0 !important;
  }

  .industries-header {
    margin-bottom: 25px;
  }

  .stats-row {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .value-title {
    font-size: 22px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/*# sourceMappingURL=src_styles_IndustriesSection_css_65f1660e._.single.css.map*/