.timeline-section{
    padding: 60px 20px;
    background: #fff;
}

.timeline-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.timeline-item{
    position: relative;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px 20px;
    width: 190px;
    min-height: 216px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.timeline-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(248,71,71,0.18);
}

.timeline-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f84747 0%, #d02525 100.08%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 12px 25px rgba(248,71,71,0.35);
    position: relative;
    flex-shrink: 0;
}

.timeline-icon::after{
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(248,71,71,0.35);
}

.timeline-item h4{
    color: #222;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* Timeline Line */
.timeline-line{
    width: 60px;
    height: 4px;
    background: linear-gradient(180deg, #f84747 0%, #d02525 100.08%);
    border-radius: 50px;
}

.breadcrumb_button {
    width: 150px;
}



/* Laptop */
@media(max-width:1200px){

    .timeline-item{
        width: 170px;
    }

    .timeline-line{
        width: 40px;
    }
}

/* Tablet */
@media(max-width:991px){

    .timeline-container{
        gap: 8px;
    }

    .timeline-item{
        width: 150px;
        min-height: 240px;
        padding: 20px 15px;
    }

    .timeline-line{
        width: 25px;
    }

    .timeline-item h4{
        font-size: 15px;
    }
}

/* Mobile */
@media(max-width:767px){

    .timeline-container{
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .timeline-item{
        min-width: 220px;
        min-height: 230px;
        flex: 0 0 auto;
    }

    .timeline-line{
        min-width: 40px;
        flex: 0 0 auto;
    }

    /* Scrollbar */
    .timeline-container::-webkit-scrollbar{
        height: 6px;
    }

    .timeline-container::-webkit-scrollbar-thumb{
        background: #d02525;
        border-radius: 20px;
    }
}