/* ================================
   INDUSTRIES SECTION
================================ */
.vti-industries-section {
  background: rgba(255, 255, 255, 0.02);
}

.vti-industry-card {
  padding: 35px 30px;
  border-radius: 18px;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.vti-industry-card:hover {
  border-color: #b93a26;
  transform: translateY(-6px);
  box-shadow: 0 25px 60px #b93a26;
}

.vti-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("../img/service/noise.png");
  pointer-events: none;
}

.industry-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;

  font-family: poppins;
}

.industry-sub {
  font-size: 13px;
  color: #f74f37;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.industry-list {
  margin: 0;
  padding-left: 18px;
}

.industry-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.industry-case {
  background: #75453e;
  border: 1px solid #b93a26;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  height: 84px;
  color: rgba(255, 255, 255, 0.8);
}
/* ================================
   EQUAL HEIGHT INDUSTRY CARDS
================================ */
.vti-industries-section .row {
  display: flex;
  flex-wrap: wrap;
}

.vti-industries-section [class*="col-"] {
  display: flex;
}

.vti-industry-card {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Case study ko bottom me fix karne ke liye */
.vti-industry-card .industry-case {
  margin-top: auto;
}

@media (max-width: 767px) {
  .industry-case {
    background: #75453e;
    border: 1px solid #b93a26;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    height: auto;
    color: rgba(255, 255, 255, 0.8);
  }
}
