/* ====================================
   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
==================================== */

.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 IMAGE
==================================== */

.industry-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.6s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
}

/* ====================================
   CARD CONTENT
==================================== */

.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;
}

/* ====================================
   CENTER 4 CARDS
==================================== */

#industries .row {
  justify-content: center;
}

/* ====================================
   TABLET
==================================== */

@media (max-width: 991px) {
  #industries .col-md-4 {
    max-width: 33.333333%;
  }
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 767px) {
  .industries-section {
    padding: 60px 0;
  }

  .industries-section h2 {
    font-size: 32px;
  }

  #industries .col-6 {
    max-width: 50%;
  }

  .industry-card img {
    height: 150px;
  }

  .industry-content {
    padding: 20px;
  }

  .industry-content h4 {
    font-size: 20px;
  }
}

/* ====================================
   SMALL MOBILE
==================================== */

@media (max-width: 480px) {
  #industries .col-6 {
    max-width: 100%;
  }

  .industry-card img {
    height: 100px;
  }
}

/* ====================================
   HOVER
==================================== */

.industry-card:hover .industry-content h4 {
  color: #fff;
}

#industries .row {
  justify-content: center;
}

@media (max-width: 991px) {
  #industries .col-md-4 {
    max-width: 33.333333%;
  }
}

@media (max-width: 767px) {
  #industries .col-6 {
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  #industries .col-6 {
    max-width: 100%;
  }
}
