.btn-animated {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: rgb(249, 252, 249);
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background 0.5s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(18, 111, 218, 0.4);
}

.btn-animated:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    /* transform: scale(1.20); */
    box-shadow: 0 6px 20px rgba(18, 111, 218, 0.5);
    color: rgb(249, 252, 249); /* Ensure text color remains white */
}


