/* ================= HERO SECTION STYLES ================= */

/* Add hero section, overlays, main headline, subheadline, and hero animations here */ 

/* Inline hero content layout */
.hero-inline-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-headline, .hero-subheadline {
  margin: 0;
  padding: 0;
}
.hero-inline-separator {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  margin: 0 1.5rem;
  border-radius: 2px;
  opacity: 0.5;
  display: inline-block;
}
@media (max-width: 900px) {
  .hero-inline-content {
    flex-direction: column;
    gap: 1.2rem;
  }
  .hero-inline-separator {
    width: 80px;
    height: 2px;
    margin: 1rem 0;
  }
}

/* Remove all hero text animation classes and keyframes */
.headline-anim, .subline-anim, .animate-hero-headline, .animate-hero-sub, .glow-pop {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Hero headline and subheadline: same size, headline bold, subheadline normal */
.hero-headline {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 0.5em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.18);
  font-family: 'Poppins', Arial, sans-serif;
}

.hero-highlight {
  color: #00b6a9;
  font-weight: 800;
}

.hero-bold {
  color: #fff;
  font-weight: 800;
}
.hero-subheadline {
  font-size: 3.2rem;
  font-weight: 400;
  color: #e0f7f4;
  line-height: 1.1;
  margin-bottom: 1.2em;
  text-shadow: none;
  font-family: 'Poppins', Arial, sans-serif;
}
.hero-inline-separator {
  display: none;
}
@media (max-width: 900px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-subheadline {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero-headline {
    font-size: 1.3rem;
  }
  .hero-subheadline {
    font-size: 1rem;
  }
} 

/* Unique style for Lets Connect button in hero section */
.hero .btn-lets-connect {
  display: inline-block;
  margin-top: 2.2rem;
  padding: 1.1rem 4.5rem;
  min-width: 200px;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid #0ea5e9;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #169ddb 10%, #14b8a6 90%);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(20,184,166,0.18);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.hero .btn-lets-connect:hover,
.hero .btn-lets-connect:focus {
  background: transparent;
  color: #fff;
  border: 2px solid #0ea5e9;
  box-shadow: 0 8px 32px 0 rgba(14,165,233,0.22);
  transform: translateY(-2px) scale(1.04);
  outline: none;
} 

.hero,
.hero-video-wrapper,
.hero-video {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
}
.hero {
  /* Remove any default margin or padding */
  margin: 0 !important;
  padding: 0 !important;
}
.hero-video-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.hero-video {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
} 