.about-section {
       background-color: var(--light-color);

       
    margin: 4px 0px;

    background-image: url(../assets/white-dotted.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px;
}

.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.info-box {
    /* background-image: url('../assets/new_logo.png'); */
    background-color: rgba(0, 0, 0, 0.7) !important;
    background-position: center;
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    margin-top: 20px;
    bottom: auto;
    right: auto;
    z-index: 2;

}

.info-box h4 { 
    color: white;
    margin-bottom: 5px;
}

.info-box p {
    color: white;
    margin-bottom: 15px;
}

.info-box ul li {
    margin-bottom: 8px;
    /* color: var(--text-color); */
    color: white;

}

.info-box ul li i {
    /* color: var(--primary-color); */
    color: white;

    width: 20px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.timeline-content .company {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .info-box {
        position: absolute;
        bottom: -50px;
        right: -30px;
        width: 80%;
        padding: 30px;
    }
    
    .about-section {
        padding: 40px;
    }
}

/* Desktop Styles (992px and up) - Original styles */
@media (min-width: 992px) {
    /* Keep your original desktop styles here if needed */
}