body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.experience-section {
    padding: 50px 20px;
    background-color: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #007bff;
    transform: translateX(-50%);
}

.timeline-entry {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.timeline-entry.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-entry.left {
    flex-direction: row-reverse;
}

.timeline-entry .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #007bff;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 18px;
    margin: 5px 0;
}

.timeline-content h4 {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 14px;
    color: #777;
}