#intro {
    display: flex;             
    justify-content: space-between; 
    align-items: center;        
    gap: 40px;                  
    flex-wrap: wrap; 
    margin-bottom: 200px; 
    
              
}


.sumUp{
    position: relative;
    display: flex;
    flex: 2;
    flex-direction: column;
    
    gap: 20px;
}
.topLeft{
    display: flex;
    flex:2;
    flex-direction: row;
    gap: 20px;
    text-align: center; 
    margin-left: 60px;
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
     

}
.bottomLeft{
    
    position: absolute;
    
    top: 70%;
    padding-top: 30px;
    
    
       
    
    
}



.home-img {
    flex: 1;                    
    display: flex;
    justify-content: flex-end;  
}
.home-img .img-box{
    position: relative;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    padding: 5px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home-img .img-box::before,
.home-img .img-box::after{
    content: '';
    position:absolute;
    width: 500px;
    height:500px;
    background: conic-gradient(transparent, transparent, transparent, #7cf03d);

}

.home-img .img-box .img-item{
    position: relative;
    width: 100%;
    height: 100%;
    background: #1f242d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    z-index: 1;
    overflow: hidden;


}

.home-img .img-box .img-item img {
    position: absolute;
    top: 30px;
    display: block;
    width: 85%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

@media screen and (max-width: 768px) {
    #intro {
        display: flex;
        flex-direction: column;  /* stack elements vertically */
        align-items: center;
        gap: 20px;
    }

    /* Move image first */
    .home-img {
        order: 1;             /* image comes first */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* sumUp comes below image */
    .sumUp {
        order: 2;             /* sumUp after image */
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 10px;
        position: relative;  /* remove absolute if any */
    }

    /* Top-left headings */
    .topLeft {
        position: static;     /* remove absolute positioning */
        transform: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
        margin: 0; 
    }

    /* Bottom-left paragraph */
    .bottomLeft {
        position: static;
        width: 100%;
        text-align: center;
        padding-top: 40px;
    }

    /* Resize image */
    .home-img .img-box {
        width: 60vw;
        height: 60vw;
    }
}
