.hero-section {
  background: linear-gradient(to right, rgb(15, 48, 84), rgb(31, 93, 216));
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('https://www.transparenttextures.com/patterns/cloudy-day.png');
  opacity: 0.15;
  animation: cloudMotion 60s linear infinite;
  z-index: 0;
}

@keyframes cloudMotion {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(50%, 50%);
  }
}

html {
  scroll-behavior: smooth;
}

#solutions-showcase {
  scroll-margin-top: 100px;
}

/* Custom Gradient Button */
.btn-gradient {
  background: linear-gradient(45deg, rgb(38, 120, 182), rgb(18, 90, 166));
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-gradient:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-custom-blue {
    background-color: rgb(242, 164, 29);
    color: white;
}
.btn-custom-blue:hover {
    background-color: rgb(210, 141, 22);
    color: white;
}
.card-title{
       color: #505072;
}