/* HERO CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 720px;
  z-index: 3; /* Ensure content stays above everything */
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* HERO SECTION - REMOVE ALL BACKGROUND FROM HERE */
.hero {
  height: 90vh;
  margin: 20px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--secondary-color);
}

/* Animated Background Image Layer */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/inno link.png") no-repeat;
  background-size: cover;
  animation: backgroundPan 50s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundPan {
  0% {
    background-position: center center;
  }
  25% {
    background-position: left center;
  }
  50% {
    background-position: left bottom;
  }
  75% {
    background-position: right bottom;
  }
  100% {
    background-position: center center;
  }
}

/* Overlay gradient to ensure text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 18, 44, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

/* Navbar needs to be above overlay */
.navbar {
  position: relative;
  z-index: 10;
}