.aboutSection{
    display: flex;
    justify-content: space-around;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 100px auto;
    overflow: hidden;
}
.image-box{
    flex: 1 1 500px;
    position: relative;
    padding: 15px;
}
.image-box img{
    width: 100%;
    border-radius: 10px;
    display: block;
}
.purple-corner{
    width: 100px;
    height: 100px;
    background: var(--gradient);
    position: absolute;
    top: -20px;
    right: -1.5px;
    z-index: -1;
}
.purple-corner2{
    width: 100px;
    height: 100px;
    background: var(--gradient);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}
.purple-corner3{
    width: 100px;
    height: 100px;
    background: var(--gradient);
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: -1;
}
.purple-corner4{
    width: 100px;
    height: 100px;
    background: var(--gradient);
    position: absolute;
    bottom: -20px;
    right: -1.5px;
    z-index: -1;
    
}
.text-box{flex: 1 1 500px;}
small{
    color:var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
}
.text-box p{
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-break: 1.6;
}
@media (max-width: 992px){

    .aboutSection{
        gap: 50px;
    }

    .image-box,
    .text-box{
        flex: 1 1 100%;
    }

}
@media (max-width: 768px){

    .aboutSection{
        margin: 60px auto;
        gap: 30px;
        padding: 0 15px;
    }

    .text-box{
        text-align: center;
    }

    .text-box p{
        font-size: 16px;
    }

    .purple-corner,
    .purple-corner2,
    .purple-corner3,
    .purple-corner4{
        width: 70px;
        height: 70px;
    }

}
@media (max-width: 480px){

    .aboutSection{
        margin: 40px auto;
    }

    .purple-corner,
    .purple-corner2,
    .purple-corner3,
    .purple-corner4{
        width: 50px;
        height: 50px;
    }

    .purple-corner{
        top: -10px;
        right: -10px;
    }

    .purple-corner2{
        top: -10px;
        left: -10px;
    }

    .purple-corner3{
        bottom: -10px;
        left: -10px;
    }

    .purple-corner4{
        bottom: -10px;
        right: -10px;
    }

}