/* =====================================================
   INDUSTRIES PAGE — ULTRA MODERN ENTERPRISE DESIGN
   Split Cards • Icons • Gradient Hero • Smooth Animations
   Fully aligned with global style.css
   ===================================================== */

/* -----------------------------
   HERO SECTION
------------------------------ */
.industry-hero {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #041727, #0b3c67);
  text-align: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.industry-hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  margin-bottom: 12px;
}
.industry-hero .sub {
  font-size: 1.25rem;
  opacity: 0.85;
}

/* -----------------------------
   INTRO
------------------------------ */
.industry-intro {
  padding: 70px 0;
  text-align: center;
}
.industry-intro h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.industry-intro p {
  max-width: 820px;
  margin: 0 auto 18px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.07rem;
}

/* -----------------------------
   GRID LAYOUT
------------------------------ */
.industry-grid-section {
  padding: 70px 0 90px;
  background: #f8fbff;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
}

/* -----------------------------
   SPLIT CARD DESIGN
------------------------------ */
.industry-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.28s ease;
  position: relative;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

/* ICON */
.icon .icon {
  font-size: 54px;            /* bigger icon */
  width: 78px;                /* bigger container */
  height: 78px;
  margin-bottom: 14px;        /* spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11,115,255,0.18), rgba(0,183,199,0.14));
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}


.industry-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.industry-card p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

/* SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.split h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.split ul {
  margin-left: 18px;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA */
.learn {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.learn:hover {
  text-decoration: underline;
}

/* -----------------------------
   CLOSING SECTION
------------------------------ */
.industry-closing {
  padding: 80px 0;
  background: #fbfdff;
  text-align: center;
}
.industry-closing p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.7;
}

/* -----------------------------
   ANIMATIONS
------------------------------ */
[data-anim] {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.75s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* -----------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
  .industry-hero {
    padding: 80px 0 50px;
  }
  .industry-intro {
    padding: 50px 0;
  }
  .industry-grid-section {
    padding: 50px 0 70px;
  }
}
/* GRADIENT CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(11,115,255,0.25);
  transition: 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,115,255,0.35);
}
