/* HERO SECTION */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: fixed;   /* stays in place */
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;       /* IMPORTANT → keeps content visible */
}

.hero-content {
  display: none;
}

.hero-content h1 {
  font-size: 5.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-weight: 300;
}

/* TAGLINE */
.tagline-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.tagline-section .h3 {
  font-size: 2.2rem;
}

.tagline-section .h4 {
  color: var(--color-light);
  font-weight: 300;
}

/* SERVICES OVERVIEW */
.services-overview .service-card {
  background-color: var(--color-darker);
  border: 1px solid rgba(178, 24, 24, 0.15);
  border-left: 5px solid var(--color-accent);
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  height: 100%;
}

.services-overview .service-card:hover {
  border-left: 5px solid #D62525;
  box-shadow: 0 10px 30px rgba(178, 24, 24, 0.1);
  transform: translateY(-5px);
}

.services-overview .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* TRUST */
.trust-section .feature-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border-top: 3px solid var(--color-accent);
  transition: transform 0.3s ease;
  padding: 2rem;
  height: 100%;
}

.trust-section .feature-box:hover {
  transform: translateY(-10px);
}

.trust-section .feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* CTA */
.cta-section {
  min-height: 60vh;
  background-position: center top;
}

.cta-section::before {
  background: rgba(0,0,0,0.85);
}

.contact-details {
  background-color: rgba(255, 255, 255, 0.05);
  display: inline-block;
  padding: 20px 30px;
  border-radius: 5px;
  margin-top: 30px;
}

/* Mobile */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}