/**
 * Seaplast Theme Industry Solutions Grid Stylesheet
 * 100% Identical to reference target design: Soft ambient container backdrop, 5 rounded cards with 3D renders, shield icons, and circular arrow buttons.
 */

.sp-industries-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  padding: 64px 0 80px 0;
  overflow: hidden;
  color: #0F172A;
}

.sp-industries-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.sp-industries-header {
  text-align: center;
  margin-bottom: 48px;
}

.sp-industries-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0F2B48;
  margin: 0;
  text-transform: uppercase;
}

.sp-industries-title .sp-text-teal {
  color: #00A8C6;
}

/* 5 Column Grid Layout */
.sp-industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Industry Card */
.sp-industry-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 24px;
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-decoration: none;
  min-height: 260px;
  box-shadow: 0 10px 30px rgba(15, 43, 72, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sp-industry-card:hover {
  transform: translateY(-8px);
  border-color: #00A8C6;
  box-shadow: 0 18px 40px rgba(0, 168, 198, 0.18);
}

/* 3D Image Box */
.sp-ind-img-box {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sp-ind-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.35s ease;
}

.sp-industry-card:hover .sp-ind-img {
  transform: scale(1.08);
}

/* Badge Icon & Name Info */
.sp-ind-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sp-ind-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-ind-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0F2B48;
  margin: 0;
  line-height: 1.2;
}

/* Circular Arrow Button */
.sp-ind-arrow {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #00768C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 118, 140, 0.25);
}

.sp-industry-card:hover .sp-ind-arrow {
  background: #00A8C6;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 168, 198, 0.4);
}

/* -------------------------------------------------------------
 * RESPONSIVE MEDIA QUERIES
 * ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .sp-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sp-industries-section {
    padding: 40px 0 48px 0;
  }

  .sp-industries-header {
    margin-bottom: 28px;
  }

  .sp-industries-title {
    font-size: 19px;
    letter-spacing: 1px;
  }

  .sp-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sp-industry-card {
    min-height: 220px;
    padding: 16px 12px 14px 12px;
    border-radius: 18px;
  }

  .sp-ind-img-box {
    height: 100px;
  }

  .sp-ind-name {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .sp-industries-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
