.btn-1 {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #87FCC4 0%, #28C1F5 100%);
    color: #111;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 400;
    text-decoration: none;
    overflow: hidden;     
    transition: transform 0.3s ease;
  }
  
  .btn-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(255,255,255,0) 0%, rgba(255, 249, 249, 0.784) 50%, rgba(255,255,255,0) 100%);
    transition: left 0.4s ease;
  }
  
  .btn-1:hover::after {
    left: 100%;
  }
  
  .btn-1:hover {
    transform: translateY(-2px);
  }

  .btn-2 {
    position: relative;
    display: inline-block;
    background: transparent;
    color: #28C1F5;         
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #28C1F5;
    font-weight: 400;
    text-decoration: none;
    overflow: hidden;
}

.btn-3 {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 400;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;

    color: transparent;
    background-image: linear-gradient(90deg, #87fcc3 0%, #28c2f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.btn-3::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(135,252,195,0.25) 0%, rgba(40,194,245,0.25) 100%);
    border-radius: 8px;
    z-index: -1;
}

  .btn-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(255,255,255,0) 0%, rgba(255, 249, 249, 0.502) 50%, rgba(255,255,255,0) 100%);
    transition: left 0.4s ease;
  }
  
  .btn-3:hover::after {
    left: 100%;
  }
  
  .btn-3:hover {
    transform: translateY(-2px);
  }


  