.hero-section{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(135deg, rgba(5,15,30,.92), rgba(10,40,80,.85)),
    url('../img/img_bgg.jfif');
  background-size:cover;
  background-position:center;
}

/* Hero SVG Wave */
/* .hero-section {
  position: relative;
  overflow: hidden;
} */

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2; /* ensures text is above SVG */
}

/* Optional: smoother fade for wave */
.hero-wave path {
  transition: all 1s ease-in-out;
}


.hero-section h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:800;
}

.hero-section .lead{
  max-width:650px;
}

.section-padding{
  padding:100px 0;
}

/* INDUSTRY CARDS */
.industry-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(13,110,253,0.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* .bg-dark .industry-card {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.bg-dark .industry-card p {
  color: rgba(255,255,255,0.7);
}

.bg-dark .industry-card:hover {
  background: rgba(13,110,253,0.18);
  transform: translateY(-6px);
} */




/* ANIMATIONS */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

