.webo-timeline-container {
    position: relative;
    width: 100%;
    padding: 0px 10px;
}

.webo-timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: #0073aa;
    opacity: 0;
    transition: height 0.4s ease, background 0.3s ease;
    z-index: 0;
}

.webo-timeline-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.webo-timeline-block.left {
    flex-direction: row-reverse;
}

.webo-timeline-content,
.webo-timeline-media {
    width: 43%;
}

.webo-timeline-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.webo-timeline-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 14px 20px;
}

.webo-timeline-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    padding: 18px 20px;
    margin: 0;
}

.webo-timeline-media img,
.webo-timeline-media video,
.webo-timeline-media iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.webo-timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    z-index: 3;
    transition: background 0.3s ease;
}

.connector-arrow {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

/* .webo-timeline-block.right .connector-arrow {
    background-image: url('../assets/f1-arrow.png');
}

.webo-timeline-block.left .connector-arrow {
    background-image: url('../assets/f1-arrow.png');
    transform: translate(-50%, -50%) scaleX(-1);
} */

/* ====================
    Mobile Styles
==================== */
@media screen and (max-width: 768px) {
    .webo-timeline-block {
        flex-direction: column !important;
        align-items: stretch;
        margin-bottom: 0px;
        gap: 20px;
    }

    .webo-timeline-content,
    .webo-timeline-media {
        width: 100%;
        text-align: center;
    }

    .webo-timeline-line,
    .webo-timeline-dot,
    .connector-arrow {
        display: none !important;
    }

    .webo-timeline-content {
        margin-top: 10px;
        margin-bottom: 40px
    }

    .webo-timeline-media {
        margin-bottom: 10px;
    }
}
.webo-timeline-endpoint {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0073aa;
    z-index: 2;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
/* ====================
    Tablet Styles
==================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .connector-arrow {
        display: none !important;
    }
}
@media screen and (max-width: 1399px) {
    .connector-arrow {
        display: none !important;
    }
    .webo-timeline-endpoint{
        display: none;
    }
}
