/* =====================================================
   AUTOMATION PAGE STYLES
===================================================== */

/* ------------------------------
   HERO SECTION
------------------------------ */

.automation-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

#automationVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay for readability */
.automation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}

.automation-hero .container {
  position: relative;
  z-index: 2;
}

/* ------------------------------
   INTRO SECTION
------------------------------ */

.automation-section h2 {
  font-size: 2rem;
}

.automation-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ------------------------------
   SOLUTIONS SECTION
------------------------------ */

.automation-solutions {
  background: #f8f9fa;
}

.solution-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card i {
  font-size: 2.5rem;
  color: #dc3545; /* HELI red */
}

.solution-card h5 {
  margin-top: 15px;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   CTA SECTION
------------------------------ */

.automation-cta {
  background: linear-gradient(
    135deg,
    #b31217,
    #dc3545
  );
}

.automation-cta h2 {
  font-size: 2rem;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  .automation-hero h1 {
    font-size: 2.2rem;
  }

  .automation-hero p {
    font-size: 1.1rem;
  }
}
