/*====================================
    INDUSTRIES SECTION
====================================*/

.industries-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.industries-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.industries-section p {
  color: #666;
}

.industry-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.industry-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-content {
  padding: 25px;
}

.industry-content h4 {
  color: #074f8f;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.industry-content p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .industries-section {
    padding: 60px 0;
  }

  .industries-section h2 {
    font-size: 32px;
  }

  .industry-card img {
    height: 200px;
  }

  .industry-content {
    padding: 20px;
  }

  .industry-content h4 {
    font-size: 20px;
  }
}
