/* Shared inner-page hero (parallax / service) */

.hero-section-wrapper {
  width: 100%;
  min-height: 75vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-section-wrapper .hero-content,
.hero-section-wrapper .about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 40px 24px;
}

.hero-section-wrapper .h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
}

/* Inner-page heroes (bg image): center the paragraph */
.hero-section-wrapper .hero-content .hero-para,
.hero-section-wrapper .hero-content .hero-sub,
.hero-section-wrapper .about-hero-content .hero-para {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
  margin: 20px auto 0;
  max-width: 580px;
  text-align: center;
}


/* Home split hero: paragraph is left-aligned */
.hero-section-wrapper .hero-content-div .hero-para {
  text-align: left;
  margin: 0;
  max-width: 32ch;
}


/* Strip yellow highlight from spans inside hero sections with bg images */
.hero-section-wrapper .heading-hilighter,
.hero-section-wrapper .highlight,
.hero-section-wrapper .text-span-4,
.hero-section-wrapper .text-span-5 {
  color: var(--white);
  background: none;
  padding: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-indicator .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: hero-chevron-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-chevron-bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

.hero-btn {
  margin-top: 24px;
}

@media screen and (max-width: 991px) {
  .hero-section-wrapper {
    min-height: 65vh;
  }
}
