.anibtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'YekanBakh', 'IRANSans', Tahoma, sans-serif;
    font-size: 1rem !important;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    line-height: 1.4rem;
    animation: softPulse 2.2s ease-in-out infinite;
}

 
.anibtn::after {
    display: none;
}

.anibtn:hover {
   
    box-shadow: 0 8px 30px rgba(0, 180, 219, 0.8);
    background: linear-gradient(135deg, #00c6e6, #0099cc);
    animation: none;
}

.anibtn:active {
     
    transition: all 0.1s ease;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
        background: linear-gradient(135deg, #00b4db, #0083b0);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 180, 219, 0.7);
        background: linear-gradient(135deg, #00c6e6, #0099cc);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
        background: linear-gradient(135deg, #00b4db, #0083b0);
    }
}