/* =====================
   INDUSTRIES SECTION
   ===================== */
.nb-industries {
  padding: 80px 0;
  background: #0F172A;
}
.nb-industries .nb-section-title h2 { color: #fff; }
.nb-industries .nb-section-title p  { color: #E2E8F0; }

.nb-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.nb-industries .nb-section-title{max-width:100%}
.nb-industries__card {
  background: var(--dark3, #1E293B);
  border-radius: var(--radius, 16px);
  padding: 24px;
  transition: all 0.3s ease;
}
.nb-industries__card:hover {
 
  transform: translateY(-3px);
 
}

.nb-industries__icon {
  width: 58px; 
  height: 58px;
  background: #334155;
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  transition: background 0.3s ease;
}


/* SVG icon inside icon box */
.nb-industries__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.nb-industries__card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 10px;
}
.nb-industries__card p {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 24px; 
  font-weight: 500;
}

.nb-industries__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #F8FAFC;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nb-industries__link:hover { 
  color: #fff; 
  gap: 10px; 
}
.nb-industries__link .arrow-icon {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M10.1967 21.2174L18.8022 12.6119L18.8093 17.6819L20.8033 17.6819L20.8033 10.1966C20.8033 9.64431 20.3556 9.19659 19.8033 9.19657L12.318 9.19658V11.1906L17.388 11.1977L8.78249 19.8032L10.1967 21.2174Z"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M10.1967 21.2174L18.8022 12.6119L18.8093 17.6819L20.8033 17.6819L20.8033 10.1966C20.8033 9.64431 20.3556 9.19659 19.8033 9.19657L12.318 9.19658V11.1906L17.388 11.1977L8.78249 19.8032L10.1967 21.2174Z"/></svg>') no-repeat center / contain;
  transition: transform 0.3s ease;
}
.nb-industries__link:hover .arrow-icon {
  transform: rotate(-45deg);
}

/* Responsive */
@media(max-width:992px) { 
  .nb-industries__grid { 
    grid-template-columns: repeat(2,1fr); 
  } 
}
@media(max-width:768px) {  
.nb-industries{padding:40px 0}}
@media(max-width:600px) {  
  .nb-industries__grid { 
    grid-template-columns: 1fr; 
  } 
  .nb-industries {
    padding: 30px 0;
  }
  .nb-industries__grid{margin-top:20px}
  .nb-industries__card h3{font-size: 18px;}
}
@media(max-width:480px) {
  .nb-industries { padding: 24px 16px; }
  .nb-industries .nb-section-title h2 { font-size: 18px; }
  .nb-industries .nb-section-title p { font-size: 14px; }
  .nb-industries__card p { font-size: 14px; }
}