.about-main-container{
    width:  100%;
    object-fit: contain;
    position: relative;
}
.about-main-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.about-h2{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.our-mission, .our-vision{
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.our-mission p, .our-vision p{
    width: 80%;
    text-align: center;
}

.mile-stone-container {
    padding: 0rem 5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.h2 {
    color: #005b9f;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.milestone {
    width: 22%;
    margin-bottom: 20px;
}
.year {
    background-color: #005b9f;
    color: white;
    padding: 10px 20px;
    font-size: 1.5em;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    margin-bottom: 15px;
}
.mile-stone-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9em;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .milestone {
        width: 48%;
    }
}
@media (max-width: 480px) {
    .milestone {
        width: 100%;
    }
}


.client-slide-container{
    overflow: hidden;
    padding: 1rem ;
    position: relative;

}
.client-slide{
    white-space: nowrap;
    margin: 5rem 0rem;
}

.client-slide-container::before,  .client-slide-container::after {

    position: absolute;
    content: " ";
    height: 100%;
    width: 100px;
    z-index: 3;
    top: 0;
}

.client-slide-container::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.client-slide-container::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.client-slide img{
    height: 50px;
    margin: 0px 50px;
}

.client-slide1, .client-slide3{
    animation: 30s slideLeft infinite linear;
}
.client-slide2{
    animation: 30s slideRight infinite linear;
}

@keyframes slideLeft {
    from{
transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes slideRight {
    from{
transform: translateX(-100%);
    }
    to{
        transform: translateX(0);
    }
}