/**
 * Industries cards inside #projects.projects-section — text-only (replaces image carousel).
 * Layout: 3 / 2 / 1 columns; hover aligned with product showcase pattern.
 */

#projects .sec-title > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--text-body);
  line-height: var(--lh-body, 1.75);
}

#projects .industry-card-one {
  margin-bottom: 30px;
}

#projects .industry-card-one .inner-box {
  position: relative;
  display: block;
  background: var(--surface-page);
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: 10px;
  padding: 40px 30px 34px;
  min-height: 160px;
  transition: all 0.3s ease;
}

#projects .industry-card-one .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow);
}

#projects .industry-card-one .static-content h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-heading);
}

#projects .industry-card-one .static-content .industry-category {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-muted);
  margin-bottom: 0;
}

#projects .industry-card-one .overlay-content > p,
#projects .industry-card-one .overlay-content .btn-box {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: opacity 0.35s ease, max-height 0.35s ease;
}

#projects .industry-card-one .inner-box:hover .overlay-content > p {
  opacity: 1;
  max-height: 120px;
  margin: 16px 0 22px;
  transition: opacity 0.35s ease 0.12s, max-height 0.35s ease 0.12s;
}

#projects .industry-card-one .inner-box:hover .overlay-content .btn-box {
  opacity: 1;
  max-height: 60px;
  transition: opacity 0.35s ease 0.12s, max-height 0.35s ease 0.12s;
}

#projects .industry-card-one .overlay-content > p {
  color: var(--text-body);
  line-height: 1.65;
}

#projects .industry-card-one .overlay-content .theme-btn-one {
  padding: 13px 34px;
}

@media only screen and (max-width: 991px) {
  #projects .industry-card-one .inner-box {
    min-height: 150px;
  }
}
