/* Hero AI Background Section */
.hero-ai-section {
  height: 700px;
  position: relative;
}

/* Dark gradient overlay for better text visibility */
.hero-ai-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(6, 18, 38, 0.65),
    rgba(6, 18, 38, 0.35)
  );
  z-index: 1;
}

/* Keep content above overlay */
.hero-ai-section * {
  position: relative;
  z-index: 2;
}

