/*@keyframes trustGlow {*/
    /*0% { color: white; text-shadow: 0px 0px 0px rgba(255, 0, 0, 0); }*/
    /*50% { color: #FF0D39; text-shadow: 0px 0px 10px rgba(255, 0, 0, 0.7); }*/
    /*100% { color: white; text-shadow: 0px 0px 15px rgba(255, 0, 0, 1); }*/
/*}*/


/*.animate-trust {*/
    /*animation: trustGlow 3s ease-in-out forwards;*/
    /*transform-origin: center; !* Ensures scaling from center *!*/
/*}*/
@keyframes lineAppear {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.animate-line-appear {
    animation: lineAppear 2s ease-out forwards;
}

/* Basic button styles */
.button-with-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #211d1e;
    padding: 0.5rem 1.3rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
}

.button-with-arrow:hover {
    background-color: #F5F5F5; /* Slight gray background on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Arrow Styles */
.arrow {
    display: inline-block;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Arrow hover effect */
.button-with-arrow:hover .arrow {
    animation: arrowAnimation 1s infinite alternate;
    color: #FF0D39; /* Make arrow red on hover */
}

/* Keyframe animation for left-to-right movement of the arrow */
@keyframes arrowAnimation {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px); /* Moves the arrow 5px to the right */
    }
    100% {
        transform: translateX(0);
    }
}

/* When locale is Arabic, reverse the text and arrow position */
.button-with-arrow.rtl {
    text-align: right;
    flex-direction: row-reverse; /* Moves the arrow to the right of the text */
}

.button-with-arrow.rtl .arrow {
    margin-right: 0; /* Remove right margin */
    margin-left: 0.5rem; /* Add left margin for Arabic */
}