.left-half-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #800E33, #B71C5D);
    overflow: hidden;
}

.left-half-bg::before,
.left-half-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.left-half-bg::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    background: #fff;
}

.left-half-bg::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 50px;
    background: #ffffff;
}

.visual-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    --radius: 160px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

.half-arc {
    position: absolute;
    width: calc(var(--radius) * 2);
    height: calc(var(--radius) * 2);
    border: 8px solid #e0e0e0;
    border-radius: 50%;
    z-index: 1;
    clip-path: inset(0 0 0 50%);
}

.profile-circle {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #B71C5D, #800E33);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
}

.icon-node {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #800E33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 4;
    border: 3px solid #fff;

    left: 50%;
    top: 50%;
    margin-left: -24px;
    margin-top: -24px;

    transform: translate(calc(cos(var(--angle)) * var(--radius)),
            calc(sin(var(--angle)) * var(--radius)));
}

.icon-1 {
    --angle: 270deg;
}

.icon-2 {
    --angle: 315deg;
}

.icon-3 {
    --angle: 0deg;
}

.icon-4 {
    --angle: 45deg;
}

.icon-5 {
    --angle: 90deg;
}

.bg-profile-id {
    position: absolute;
    top: 30px;
    left: 6px;
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    z-index: 5;
}

.bg-profile-id i {
    font-size: 17px;
    padding: 6px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.bg-profile-id::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -6px;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #fff, transparent);
    border-radius: 2px;
}
@media (min-width: 992px) and (max-width: 1199px) {

    .visual-wrap {
        height: 520px;
        --radius: 110px;
    }

    .profile-circle {
        width: 150px;
        height: 150px;
    }

    .profile-circle img {
        border-width: 5px;
    }

    .icon-node {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-left: -18px;
        margin-top: -18px;
    }

    .half-arc {
        width: calc(var(--radius) * 2);
        height: calc(var(--radius) * 2);
        border-width: 6px;
        clip-path: inset(0 0 0 50%);
    }

    .bg-profile-id {
        font-size: 12px;
        top: 20px;
        left: 10px;
    }

    .bg-profile-id i {
        font-size: 12px;
    }

    .bg-profile-id::after {
        width: 40px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {

    .visual-wrap {
        height: 560px;
        --radius: 140px;
    }

    .profile-circle {
        width: 200px;
        height: 200px;
    }

    .profile-circle img {
        border-width: 6px;
    }

    .icon-node {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-left: -23px;
        margin-top: -23px;
    }

    .half-arc {
        border-width: 7px;
    }

    .bg-profile-id {
        font-size: 16px;
        top: 25px;
        left: 8px;
    }

    .bg-profile-id i {
        font-size: 16px;
    }

    .bg-profile-id::after {
        width: 45px;
    }
}
