/* Animated Arrow Button — Uiverse.io by gharsh11032000 */
.animated-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 32px;
    border: 4px solid transparent;
    font-size: 0.9375rem;
    height: 52px;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
    background-color: transparent;
    border-radius: 100px;
    font-weight: 700;
    color: #0ea5e9;
    box-shadow: 0 0 0 2px #0ea5e9;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    white-space: nowrap;
}

.animated-btn svg {
    position: absolute;
    width: 22px;
    height: 22px;
    fill: #0ea5e9;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-btn .arr-1 {
    right: 14px;
}

.animated-btn .arr-2 {
    left: -25%;
}

.animated-btn .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #0ea5e9;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-btn .anim-text {
    position: relative;
    z-index: 1;
    transform: translateX(-10px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-btn:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #030712;
    border-radius: 12px;
}

.animated-btn:hover .arr-1 {
    right: -25%;
}

.animated-btn:hover .arr-2 {
    left: 14px;
}

.animated-btn:hover .anim-text {
    transform: translateX(10px);
}

.animated-btn:hover svg {
    fill: #030712;
}

.animated-btn:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #0ea5e9;
}

.animated-btn:hover .circle {
    width: 280px;
    height: 280px;
    opacity: 1;
}
