/* by whyr, contact: pangestu@whyr.my.id */
/* About Us Page Specific Styles */

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-blue), var(--brand-yellow));
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-weight: bold;
    font-size: 0.9rem;
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.modal-body img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 1.5rem;
    }
}
