.about-container {
    margin-left: 120px;
    margin-right: 120px;
}

/* Education Styles */

.timeline {
        position: relative;
        max-width: 1200px;
        margin: auto;
    }

    .timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0%;
        width: 4px;
        height: 100%;
        background: black;
        transform: translateX(-50%);
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0%;
        width: 4px;
        height: 100%;
        background: black;
        transform: translateX(-50%);
    }
    
    .timeline-item::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0%;
        width: 12px; /* Circle size */
        height: 12px; /* Circle size */
        background: black; /* Circle color */
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .timeline-item:hover::after {
        background: red;
        transition: 0.5s;
    }
    

    /* .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
    } */

    .timeline-item {
        background-color: aliceblue;
        margin-left: 10px;
        margin-bottom: 20px;
        border-top-right-radius: 20px; /* Rounds top-right corner */
        border-bottom-right-radius: 20px; /* Rounds bottom-right corner */
        position: relative;
        padding: 20px;
        width: 100%;
        text-align: justify;
    }



/* Workshops Styles */

#workshops .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

#workshops .modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

#workshops .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}



/* Certificate Styles */

#certifications img {
    width: auto;
    height: 300px;

}



/* Responsive Web Design */

@media screen and (max-width: 768px) {
    .about-container {
        margin-left: 20px;
        margin-right: 20px;
    }

    
    
}

@media screen and (max-width: 480px) {
    .about-container {
        margin-left: 10px;
        margin-right: 10px;
    }
    
}

@media screen and (max-width: 320px) {
    .about-container {
        margin-left: 5px;
        margin-right: 5px;
    }
    
}

