/* Global Styles */
/* body {
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
} */

/* Timeline Container */
.timeline-container {
    width: 100%;
    max-width: 1100px; /* Full width on large screens */
    position: relative;
    padding: 20px;
}

/* Timeline Line */
.timeline-container::before {
    content: "";
    position: absolute;
    left: 20%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #007bff;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

/* Year Column */
.year {
    flex: 0 0 20%;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    position: relative;
    color: #007bff;
}

/* Connecting Dot */
.year::after {
    content: "";
    width: 15px;
    height: 15px;
    background: #007bff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

/* Content Column */
.content {
    flex: 0 0 75%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.content:hover {
    transform: scale(1.03);
}

/* Image Styling */
.content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Heading */
.content h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

/* Paragraph */
.content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-container::before {
        left: 15%;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }

    .year {
        text-align: left;
        flex: none;
        width: 100%;
        margin-bottom: 10px;
        font-size: 24px;
        padding-left: 25px;
    }

    .timeline-container::before {
        left: 10px;
    }

    .year::after {
        left: 0;
        right: auto;
    }

    .content {
        width: 100%;
    }
}
