/*==================================================
TIMELINE WRAPPER
==================================================*/

.exillar-timeline {
    position: relative;
}

/*==================================================
SVG LINE
==================================================*/

/* ✅ Gradient horizontal line */
.exillar-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100vw;
    height: 5px;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, #4453F0 0%, #30C4D8 25%, #6ED36D 50%, #D5CC1B 75%, #D92DD6 100%);
}

/*==================================================
SWIPER
==================================================*/

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 5;
    padding-top:10px;
}

.exillar-timeline .swiper {
    overflow: visible;
}

.exillar-timeline .swiper-wrapper {
    align-items: flex-start;
}

.exillar-timeline .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/*==================================================
ITEM
==================================================*/

.timeline-item {
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*==================================================
DOT SECTION
==================================================*/

.timeline-dot-wrapper {
    position: relative;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    z-index: 10;
}

.timeline-dashed {
    width: 2px;
    height: 120px;
    margin-top: 10px;
    border-left: 2px dashed #cfcfcf;
}

/*==================================================
CONTENT
==================================================*/

.timeline-content {
    margin: 0 auto;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Lexend', sans-serif;
    margin: 0 0 20px;
    color: #000;
}

.timeline-content h3 span {
    margin-right: 10px;
    font-weight:700;
}

.timeline-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5em;
    color: #000;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
}

/*==================================================
ACTIVE STATE
==================================================*/

.swiper-slide-active .timeline-dot {
    transform: scale(1.2);
}

.swiper-slide-active .timeline-item {
    transform: translateY(-5px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1024px) {
    .timeline-dashed {
        height: 100px;
    }
}

@media (max-width: 767px) {

    .timeline-dashed {
        height: 70px;
    }

    .timeline-dot-wrapper {
        height: 110px;
    }

    .timeline-dot {
        width: 30px;
        height: 30px;
    }
}