.hero-banner{
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}


.hero-banner::before{
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,16,32,0.05) 0%, rgba(6,16,32,0.75) 100%);
}
.hero-slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-slide.active{ opacity: 1; }
.hero-banner::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,10,22,0.55) 0%, rgba(4,10,22,0.1) 42%, transparent 68%);
  z-index: 1;
}

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 1240px;
    padding: 0 7% 48px;
    color: #fff;
}

.hero-banner h1{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.1vw, 54px);
  line-height: 80px;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.hero-banner h2{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 50px;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.hero-content > *{
  animation: heroIn 0.65s ease both;
}

@keyframes heroIn{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}