﻿.circle-container {
    position: relative;
    width: clamp(300px, 60vw, 520px);
    height: clamp(300px, 60vw, 520px);
    margin:auto;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    height: 15%;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    z-index: 2;
}

.item {
    position: absolute;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: clamp(14px, 1.5vw, 22px);
    color: #4d4d4f;
    font-weight:600;
    z-index: 3;
    background: #f5f5f5;
}

svg.arc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-117deg);
    z-index: 0;
    pointer-events: none;
}

.plane {
    position: absolute;
    font-size: clamp(20px, 4vw, 36px); /* responsive and larger */
    color: #91d400;
    transform: translate(-50%, -50%) rotate(-85deg); /* correct heading */
    z-index: 4;
}


.label-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    background-color: #f5f5f5;
    padding: 0px 8px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3498db;
    z-index: 3;
}

.label-text {
    font-weight: 600;
    color: #4d4d4f;
    font-size: clamp(13px, 1.5vw, 15px);
}