/* Elementor Timeline Widget Styles */
.elementor-timeline-widget {
    position: relative;
    width: 100%;
}

.timeline-wrapper {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2a2a2a;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #8b5cf6;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #2a2a2a;
    z-index: 2;
}

.timeline-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.timeline-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.timeline-company {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.timeline-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f3f4f6;
    color: #374151;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.timeline-tag:hover {
    background-color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding-left: 30px;
    }
    
    .timeline-dot {
        left: -28px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-line {
        left: 10px;
    }
    
    .timeline-card {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-company {
        font-size: 15px;
    }
    
    .timeline-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .timeline-wrapper {
        padding-left: 25px;
    }
    
    .timeline-dot {
        left: -23px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-line {
        left: 8px;
    }
    
    .timeline-card {
        padding: 16px;
    }
}
