/* 전체 */
.edu-wrap{
    width:100%;
    padding:80px 20px;
    box-sizing:border-box;
    background:#fff;
    text-align:center;
    overflow:hidden;
}

/* 타이틀 */
.edu-title{
    font-weight:800;
    color:#0066d9;
    margin-bottom:90px;
}

/* 원 그룹 */
.edu-circle-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:28px;
}

/* 원 기본 */
.edu-circle{
    width:220px;
    height:220px;
    border-radius:50%;
    background:#1f4f8f;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
    position:relative;
    box-sizing:border-box;
}

/* 각 도형 점선 테두리 */
.edu-circle::before{
    content:"";
    position:absolute;
    top:-10px;
    left:-10px;
    width:calc(100% + 20px);
    height:calc(100% + 20px);
    border-radius:50%;
    border:3px dashed #d9d9d9;
    box-sizing:border-box;
}

/* 위로 올라가는 원 */
.edu-circle.up{
    transform:translateY(-55px);
}

/* 강조 원 */
.edu-circle.active{
    background:#0058d8;
}

/* 아이콘 */
.edu-circle .icon{
    margin-bottom:16px;
}

/* 텍스트 */
.edu-circle p{
    margin:0;
    line-height:1.3;
    font-weight:500;
    word-break:keep-all;
}

/* 원 기본 */
.edu-circle{
    width:220px;
    height:220px;
    border-radius:50%;
    background:#1f4f8f;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
    position:relative;
    box-sizing:border-box;

    /* 추가 */
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* 기본 위 배치 */
.edu-circle.up{
    transform:translateY(-55px);
}

/* hover 효과 */
.edu-circle:hover{
    transform:translateY(-15px);
    box-shadow:0 18px 30px rgba(0,0,0,0.15);
}

/* 원래 위에 있던 도형 hover */
.edu-circle.up:hover{
    transform:translateY(-70px);
}

/* 반응형 */
@media (max-width:1024px){

    .edu-circle{
        width:180px;
        height:180px;
    }

}

@media (max-width:768px){

    .edu-title{
        margin-bottom:50px;
    }

    .edu-circle-wrap{
        flex-wrap:wrap;
        gap:24px;
    }

    .edu-circle{
        width:150px;
        height:150px;
    }

    .edu-circle.up{
        transform:none;
    }
/* 모바일에서는 hover 제거 */
@media (max-width:768px){

    .edu-circle:hover{
        transform:none;
        box-shadow:none;
    }

    .edu-circle.up:hover{
        transform:none;
    }
}	
	
}