body {
  margin: 0;
}

.corporate-hero {
  height: 100vh;
  background: url("../../../images/events/other/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 100px;
  letter-spacing: 1px;
}

.back-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85, 2, 22, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(85, 2, 22, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #ffdbdb;
}

.back-btn svg {
  transition: transform 0.3s ease;
}

.back-btn:hover svg {
  transform: translateX(-4px);
}

.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.tagline-content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.tagline-content p {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.4;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.waves {
  position: relative;
  width: 100%;
  height: 70vh;
  margin-bottom: -7px;
}

.parallax-waves>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax-waves>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 20s;
}

.parallax-waves>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 13s;
}

.parallax-waves>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 10s;
}

.parallax-waves>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 7s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}


@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 40px;
  }

  .tagline-content {
    top: 50%;
  }

  .tagline-content p {
    font-size: 18px;
    max-width: 90%;
    margin: 0 auto;
  }

  .waves-container {
    height: 250px;
  }

  .back-btn {
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 468px) {
  .hero-overlay h1 {
    font-size: 30px;
  }

  .tagline-content p {
    font-size: 14px;
    line-height: 1.3;
    max-width: 100%;
  }

  .back-btn {
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
  }
}