/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://highreachmedianetwork.com/img/bg2.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-light);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Animated background shapes */
.hero-bg-animation::before,
.hero-bg-animation::after {
  content: '';
  position: absolute;
  background: radial-gradient(circle, rgba(153, 0, 0, 0.2) 0%, rgba(153, 0, 0, 0) 70%);
  border-radius: 50%;
}

.hero-bg-animation::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: float 30s infinite alternate ease-in-out;
}

.hero-bg-animation::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -150px;
  animation: float 20s infinite alternate-reverse ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100px, 100px);
  }
  100% {
    transform: translate(100px, -100px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}