.learn-more-btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: var(--primary-color);
  border: none;
  border-radius: 2em;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.learn-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-45deg);
  transition: 0.5s;
}

.learn-more-btn:hover::before {
  left: 200%;
}

.learn-more-btn:hover {
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}
.learn-more-icon{
  color:white;
  height: 16px
}

@media (max-width: 480px) {
  .learn-more-btn {
    font-size: 0.9rem;
    padding: 0.6em 1.2em;
  }
}


.banner-2{
  background: none;
}