#about .about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: left;
    /* Align text to the left for column layout */
}

.about-image-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 350px;
    height: 350px;
}

.about-image-wrapper .image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* === THIS IS THE NEW  IMAGE URL === */
    background-image: url('https://cdn.pixabay.com/photo/2024/07/24/15/55/ai-generated-8918729_640.png');
    background-size: cover;
    background-position: center;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper .color-overlay-circle {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 100%;
    height: 100%;
    background-color: #0d9e92a1;
    /* Uses --accent-color with transparency */
    border-radius: 50%;
    z-index: -1;
    /* Places it behind the main image circle */
}

.about-text-content .section-title {
    margin-bottom: 1.5rem;
    /* Adjust spacing for the new layout */
}

.about-text-content p {
    max-width: 100%;
    /* color: black !important; */
}

.about-text-content .cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .vlt-container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .border-light {
        display: none;
    }

    .section-heading {
        font-size: 1.5rem !important;
    }

    .overlay-dark{
        display: none;
    }

    .ws{
        display: none;

    }

    .about-content {
        flex-direction: column !important;
    }

    .about-image-wrapper .image-circle {
        width: 80%;
        height: 80%;
        margin: 0 auto;
    }

    .color-overlay-circle {
        top: -30px !important;
        left: 0px !important;
        width: 80% !important;
        height: 80% !important;
    }

    .about-text-content{
        width: 100% !important;
    }

    .about-text-content .section-title{
        font-size: 2rem;
    }

    #about .about-content{
        gap: 0 !important;
    }
}