.hero-title-col {
  padding-right: 200px;
}

.hero-heading {
  position: relative;
  display: inline-block;
}

.print-with {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.confidence {
  position: absolute;
  left: 170px; /* replaces margin-left:-90px */
  bottom: -60px; /* ✅ controls vertical placement */

  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 576px) {
  .hero-title-col {
    padding-right: 0;
  }

  .hero-heading {
    display: flex;
    flex-direction: column;
  }

  .confidence {
    position: relative;
    left: unset;
    bottom: unset;
  }
}
.hero .pt-4.text-start.fs-5 {
  margin-top: 50px;
}

.hover-view {
  overflow: hidden;
}
.hover-view.bg-image {
  background-size: 100%;
  transition: background-size 600ms ease;
}
.hover-view.bg-image:hover {
  background-size: 125%;
}
.hover-view p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms ease;
}
.hover-view:hover p {
  max-height: 500px;
}
