.cta-button {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}



.cta-button:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}



@media screen and (min-width:1024px) {
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
        background: linear-gradient(135deg, #ff5252, #26c6da);
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover .cta-icon {
        transform: translateX(3px);
    }

    
}