html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  color: #031e23;
}

.hero-section {
  background-image: url("../images/hero-bg.webp"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 600px) {
  .hero-section {
    background-attachment: local;
  }
}


.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .5); /* Optional overlay */
  z-index: -1;
}

.section-container {
  padding: 150px 0;
}

.page-title-holder {
  margin-bottom: 75px;
  text-align: center;
}
.page-title-holder .up-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 90px;
  font-weight: 100;
  line-height: 100%;
  margin-bottom: 0;
  height: 58px;
  overflow: hidden;
}

.page-title-holder .entry-title {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 150%;
  word-break: break-word;
  letter-spacing: 5px;
  padding: 0;
  text-transform: uppercase;
}

.page-title-holder .page-description {
  font-size: 14px;
  line-height: 100%;
  font-family: "Karla", "sans-serif";
  letter-spacing: 1px;
  margin-top: -5px;
  margin-bottom: 15px;
}

.service-num {
  font-size: 264px;
  font-weight: 700;
  color: #f3f2fb;

  line-height: 100%;
  height: 165px;
  overflow: hidden;
  margin-bottom: -10px;
  -webkit-transform: translateZ(0);
}

.text-shadow-bottom {
  position: relative;
}

.text-shadow-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2rem;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}
