.sp-container-1594e677 {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow: hidden; /* Prevent scrollbar during animation */
}

.sp-card-1594e677 {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    opacity: 0; /* Hidden initially for animation */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-out;
}

.sp-card-left-1594e677 {
    transform: translateX(-150px);
}

.sp-card-right-1594e677 {
    transform: translateX(150px);
}

/* JS will add this class */
.sp-card-1594e677.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fallback for elementor editor so we can see it */
.elementor-editor-active .sp-card-1594e677 {
    opacity: 1;
    transform: translateX(0);
}

.sp-overlay-1594e677 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    transition: background-color 0.3s;
}

.sp-content-1594e677 {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.sp-title-1594e677 {
    margin: 0 0 10px 0;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.sp-caption-1594e677 {
    margin: 0 0 25px 0;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.sp-btn-1594e677 {
    display: inline-block;
    padding: 15px 30px;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-btn-1594e677:hover {
    background: #222222;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .sp-container-1594e677 {
        flex-direction: column;
    }
    .sp-card-left-1594e677 {
        transform: translateX(-50px);
    }
    .sp-card-right-1594e677 {
        transform: translateX(50px);
    }
}