/* ==========================================
   INDUSTRIES SECTION STYLES
   ========================================== */

.industries-section {
  padding: 60px 0 20px 0;
  background-color: #FFFFFF;
  width: 100%;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* --- Section Heading --- */
.industries-heading {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.industries-heading .text-highlight {
  color: #FF5A1F;
}

.industries-subheading {
  font-size: 1.05rem;
  color: #64748B;
  max-width: 680px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

/* --- 3x2 Centered Grid --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #E2E8F0;
  border-left: 1px solid #E2E8F0;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Grid Items with Subtle Separation --- */
.industry-card {
  text-align: left;
  padding: 40px 32px;
  border-right: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-card:hover {
  background-color: #FAFAFA;
}

/* --- Soft Orange Icon Box --- */
.industry-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(255, 90, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.industry-icon-box svg,
.industry-icon-box i {
  width: 22px;
  height: 22px;
  color: #FF5A1F;
  stroke: #FF5A1F;
}

/* --- Card Typography --- */
.industry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.industry-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* --- Hover Link Arrow --- */
.industry-link {
  display: inline-flex;
  align-items: center;
  color: #FF5A1F;
  transition: transform 0.2s ease;
}

.industry-link svg,
.industry-link i {
  width: 20px;
  height: 20px;
  color: #FF5A1F;
  stroke: #FF5A1F;
}

.industry-card:hover .industry-link {
  transform: translateX(4px);
}

/* ==========================================
   RESPONSIVE & MOBILE ENHANCEMENTS
   ========================================== */

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile View (<= 768px): 2 Columns with Larger, Readable Text */
@media screen and (max-width: 768px) {
  .industries-section {
    padding: 40px 0 10px 0 !important;
  }

  .industries-heading {
    font-size: 2rem !important;
  }

  .industries-subheading {
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
    padding: 0 12px !important;
  }

  .industries-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    border: none !important;
  }

  .industry-card {
    padding: 16px 12px !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }

  .industry-icon-box {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 10px !important;
    border-radius: 8px !important;
  }

  .industry-icon-box svg,
  .industry-icon-box i {
    width: 18px !important;
    height: 18px !important;
  }

  /* Larger, prominent mobile card title */
  .industry-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
  }

  /* Clear, easily readable mobile description */
  .industry-desc {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .industry-link svg,
  .industry-link i {
    width: 16px !important;
    height: 16px !important;
  }
}