
.about-section {
    padding: 100px 20px;
    background-image: url(/BackgroundImages/ReviewsBg.png);
    background-size: contain;
    background-position: center;
    background-repeat: revert-layer;
    color: white;
    font-family: 'Roboto', sans-serif;
}
.about-container, .mission-section, .what-we-do-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: rgba(41, 0, 92, 0.8); 
    border-radius: 10px;
}

.section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.section-title:hover::before {
    left: 0;
}

.section-title:hover {
    color: #29005C;
}

.about-description, .mission-description, .what-we-do-description {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px 0;
}


.mission-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 20px;
    border-radius: 10px;
}

.mission-image img {
    width: 300px; 
    height: 300px; 
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}


.mission-image img:hover {
    transform: scale(1.05);
}


.what-we-do-section {
    padding-top: 80px;
    border-radius: 10px;
}

.what-we-do-services {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.service-box {
    text-align: center;
    width: 30%;
    transition: transform 0.4s ease;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box img {
    width: 250px; 
    height: 250px; 
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-box h3 {
    font-size: 24px;
    margin-top: 15px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.service-box p {
    font-size: 16px;
    color: white;
}

@media (max-width: 1024px) {
    .mission-section {
        flex-direction: column;
    }

    .what-we-do-services {
        flex-direction: column;
    }

    .service-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .mission-image img {
        width: 100%; 
        height: auto;
    }

    .service-box img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .about-description, .mission-description, .what-we-do-description {
        font-size: 16px;
    }

    .mission-section {
        flex-direction: column;
        text-align: center;
    }

    .what-we-do-services {
        flex-direction: column;
    }

    .service-box {
        width: 100%;
    }
}
