.left-half-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
background: linear-gradient(135deg, #FA4A3B, #FFB406);   
 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, #FA4A3B, #FFB406);
}

.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: #CC4017;
    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;
    }
}
/* Sidebar Icons */
a:hover {
    color: white;
}

.contact-profile-img {
    width: 90px;
    height: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #800E33;
    padding: 3px;
}

.profile-badge-contact {
    background: #800E33;
    color: #fff;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
}

.contact-card {
    margin-top: 25px;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    overflow: hidden;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f1f1;
    gap: 10px;
}

.contact-row .left {
    font-weight: 600;
    color: #800E33;
    min-width: 110px;
    display: flex;
    align-items: center;
}

.contact-row .left i {
    margin-right: 8px;
}

.contact-row .right {
    flex: 1;
    text-align: center;
    color: #444;
    font-size: 14px;
}

.close-contact-btn {
    margin-top: 20px;
    width: 100%;
    border: none;
    background: #800E33;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

.custom-error-popup {
    padding: 10px 5px;
    text-align: center;
}

.error-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.error-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff1f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fecdd3;
}

.error-icon-wrap i {
    font-size: 24px;
    color: #e11d48;
}

.error-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.error-message {
    margin-top: 10px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
}

.error-close-btn {
    margin-top: 20px;
    width: 100%;
    border: none;
    background: #800E33;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.error-close-btn:hover {
    background: #5f0a26;
}

.custom-success-popup {
    padding: 10px 5px;
    text-align: center;
}

.success-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.success-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #bbf7d0;
}

.success-icon-wrap i {
    font-size: 24px;
    color: #16a34a;
}

.success-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.success-message {
    margin-top: 10px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.6;
}

.swal-glass-popup {
    padding: 0 !important;
}

.swal-glass {
    position: relative;
    text-align: center;
    padding: 26px 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.swal-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
                  linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.swal-glass-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #16a34a;
    font-size: 26px;
    border: 2px solid #86efac;
    animation: pop 0.2s ease;
}

.swal-glass-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.swal-glass-message {
    margin-top: 6px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
}

.swal-glass::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #bbf7d0;
}

@keyframes pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.swal-glass-error {
    position: relative;
    text-align: center;
    padding: 26px 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.swal-glass-error::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
                  linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.swal-glass-error-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee2e2;
    color: #dc2626;
    font-size: 26px;
    border: 2px solid #fecaca;
    animation: pop 0.2s ease;
}

.swal-glass-error-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.swal-glass-error-message {
    margin-top: 6px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
}