.ct-5176-wrapper {
    position: relative;
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow: hidden;
}

.ct-5176-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    /* Defaults - overridden by Elementor controls */
    width: 1.5px;
    background-color: rgba(255, 255, 255, 0.1);
}

.ct-5176-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.ct-5176-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-5176-left {
    justify-content: flex-start;
}

.ct-5176-right {
    justify-content: flex-end;
}

.ct-5176-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Defaults - overridden by Elementor controls */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(26, 86, 255, 0.5);
}

.ct-5176-card {
    width: 45%;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    position: relative;
    z-index: 3;
}

.ct-5176-left .ct-5176-card {
    flex-direction: row-reverse;
    text-align: right;
}

.ct-5176-content {
    flex: 1;
}

.ct-5176-label {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    opacity: 0.7;
    display: block;
    margin-bottom: 8px;
}

.ct-5176-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #fff;
}

.ct-5176-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.ct-5176-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ct-5176-icon-box svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .ct-5176-line {
        left: 20px;
    }
    
    .ct-5176-dot {
        left: 20px;
    }
    
    .ct-5176-card {
        width: calc(100% - 50px);
        margin-left: 50px;
        flex-direction: column !important;
        text-align: center !important;
        border-radius: 20px !important;
        padding: 20px;
    }
    
    .ct-5176-left, .ct-5176-right {
        justify-content: flex-start;
    }
}