.our-journey-section {
  position: relative;
  min-height: 300vh;
}

.our-journey-heading {
  padding-bottom: 20px;
}

.our-journey-heading h2 {
  font-size: 50px;
  line-height: 1.1;
  padding-bottom: 30px;
}

.our-journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 60px 0;
}

.our-journey-card {
  position: relative;
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 12px;
  background: #ffffff;
  opacity: 0;
  box-shadow: 0 0 115px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(120px) scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}

.our-journey-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.our-journey-icon {
  margin-bottom: 20px;
  @media screen and (max-width: 576px) {
    margin-bottom: 10px;
    img {
      width: 48px;
      height: 48px;
    }
  }
}

.our-journey-card h3 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.our-journey-card p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 48px;
  flex-grow: 1;
}

.our-journey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.our-journey-section .row > [class*='col-'] {
  display: flex;
}

.col-lg-4:nth-child(2) .our-journey-card {
  transition-delay: 0.15s;
}

.col-lg-4:nth-child(3) .our-journey-card {
  transition-delay: 0.3s;
}

.our-journey-card {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

@media (max-width: 991px) {
  .our-journey-heading h2 {
    font-size: 40px;
  }

  .our-journey-card h3 {
    font-size: 32px;
  }

  .our-journey-section {
    min-height: auto;
  }

  .our-journey-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .our-journey-card {
    opacity: 1 !important;
    transform: none !important;
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .our-journey-heading h2 {
    font-size: 38px;
  }

  .our-journey-card h3 {
    font-size: 32px;
  }
}
