/* Timeline collapse styles - only for index.html */
.timeline-wrapper .timeline-item-modern {

    transform: translateY(30px);
    max-height: 2000px;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.timeline-wrapper .timeline-item-modern.active {

    transform: translateY(0);
}

.timeline-wrapper.collapsed .timeline-item-modern:nth-child(n+4) {

    max-height: 0;
    margin: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(0);
}

.timeline-show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
}

.alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    position: relative;
}

.alert-success {
    background-color: #e6f9f0;
    color: #0f5132;
    border: 1px solid #badbcc;
}
.alert-error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}