/* Discover More Button Animations */

.discover-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.discover-btn:hover {
    background: #6c5ce7 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.discover-btn .btn-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.discover-btn .arrow {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.discover-btn.clicked .btn-text {
    opacity: 0;
    transform: translateX(20px);
}

.discover-btn.clicked .arrow {
    opacity: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: arrowMove 1s ease-in-out;
}

@keyframes arrowMove {
    0% {
        left: 20%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 80%;
        opacity: 0;
    }
}

/* Reset animation after completion */
.discover-btn.reset .btn-text {
    opacity: 1;
    transform: translateX(0);
}

.discover-btn.reset .arrow {
    opacity: 0;
    left: -30px;
    transform: translateY(-50%);
}