html {
    scroll-behavior: smooth;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


@keyframes partner-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-partner-scroll {
    width: max-content;
    animation: partner-scroll 40s linear infinite;
}

/* Timeline wrapper */
.main-timeline {
    position: relative;
    padding: 2rem 0;
}

/* Vertical line */
.main-timeline::after {
    content: "";
    position: absolute;
    width: 3px;
    background-color: #F96100;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px;
}

/* Card */
.timeline-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.timeline-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f1f5f9;
}

.timeline-card .content {
    padding: 1.25rem;
}

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F96100;
    margin-bottom: 0.5rem;
}

/* Circles */
.timeline-item::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #F96100;
    border-radius: 50%;
    top: 24px;
    z-index: 1;
}

/* Left / Right positioning */
.left {
    left: 0;
}

.left::after {
    right: -9px;
}

.right {
    left: 50%;
}

.right::after {
    left: -9px;
}

/* Mobile */
@media (max-width: 768px) {
    .main-timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .right {
        left: 0;
    }
}