
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.timeline-section{
    width:100%;
    padding:50px 6%;
    background:#f6f8fb;
    overflow:hidden;
}

.timeline-heading{
    text-align:center;
    margin-bottom:30px;
}

.timeline-heading span{
    color:#f29f05;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.timeline-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.timeline-heading p{
    max-width:700px;
    margin:auto;
    color:#777;
    line-height:1.7;
}

 .timeline-wrapper{

    display:flex;
    overflow-x:auto;
    gap:45px;
    padding:70px 20px 40px;
    position:relative;
    scroll-behavior:smooth;
}

.timeline-wrapper::-webkit-scrollbar{
    height:8px;
}







.timeline-wrapper::-webkit-scrollbar-thumb{
    background:#f29f05;
    border-radius:30px;
}

.timeline-wrapper::before{

    content:"";
    position:absolute;
    left:0;
    top:98px;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#f29f05,#ffcb47,#f29f05);
}

.timeline-item{

    position:relative;
    min-width:320px;
}

.circle{

    width:70px;
    height:70px;
    background:#f29f05;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:auto;
    position:relative;
    z-index:5;
    box-shadow:0 15px 35px rgba(242,159,5,.35);
}

.card{

    margin-top:45px;
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.5);
    border-radius:20px;
    padding:28px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.card h4{

    font-size:22px;
    margin-bottom:15px;
    color:#222;
}

.card p{

    color:#666;
    line-height:1.7;
    margin-bottom:15px;
}

.card span{

    display:inline-block;
    background:#f29f05;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.timeline-item:hover .card{

    transform:translateY(-18px);
    box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.timeline-item:hover .circle{

    transform:scale(1.12);
}

@media(max-width:768px){

.timeline-heading h2{
    font-size:30px;
}

.timeline-item{
    min-width:280px;
}

.card{
    padding:22px;
}

}


/* Timeline Wrapper arrow css code start here*/
.timeline-wrapper{
    display:flex;
    gap:35px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:30px 20px;
}

.timeline-wrapper::-webkit-scrollbar{
    display:none;
}

/* Navigation */
.timeline-navigation{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:45px;
    gap:30px;
}

/* Divider */
 .timeline-navigation .divider{
    width:1px;
    height:70px;
    background:#ddd;
} 

/* Circle Buttons */
.timeline-arrow{
    width:72px;
    height:72px;
    border-radius:50%;
    border:2px solid #f29f05;
    background:#fff;
    color:#f29f05;
    font-size:28px;
    cursor:pointer;
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;
}

.timeline-arrow:hover{
    background:#f29f05;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(242,159,5,.25);
}

.timeline-arrow:disabled{
    opacity:.35;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
}

/* Mobile */
@media(max-width:768px){

.timeline-arrow{
    width:55px;
    height:55px;
    font-size:20px;
}

.timeline-navigation .divider{
    height:45px;
}

}













