
.solution-hero-section {
  width: 100%;
  height: 80vh;
  background: #323232;
  position: relative;
  overflow: hidden;
}

.solution-hero-section .solution-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
}

.solution-hero-section .container {
  padding-top: 72px;
}

.solution-hero-section .solution-heading {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Jost", sans-serif;
}

.solution-hero-section .solution-subheading {
  color: #ef9836;
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.solution-hero-section .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #FD7B33;
}

.solution-hero-section .btn-get-started:hover {
  background: #209dd8;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.solution-hero-section .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* Responsive styles */
@media (max-width: 991px) {
  .solution-hero-section {
    height: 100vh;
    text-align: center;
  }

  .solution-hero-section .animated {
    animation: none;
  }

  .solution-hero-section .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .solution-hero-section .solution-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .solution-hero-section .solution-subheading {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .solution-hero-section .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .solution-hero-section .hero-img img {
    width: 80%;
  }
}

