.woc-chart {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}
    
.woc-chart  {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    color: #333;
    /* padding: 20px; */
}
    
.woc-chart .chart-card-container {
    width: 100%;
    max-width: 650px;
    height: auto;
    perspective: 1000px;
    position: relative;
}
    
.woc-chart .profile-card {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}
    
.woc-chart .profile-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.woc-chart .header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
}
    
.woc-chart .profile-image {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}
    
.woc-chart .profile-card:hover .profile-image {
    transform: scale(1.05);
}

.woc-chart .header-details {
    flex: 1;
}
    
.woc-chart .name {
    font-size: 24px;
    font-weight: 700;
    /* margin-bottom: 5px; */
    letter-spacing: -0.5px;
    /* color: #3E3D53 !important; */
    /* color: #010103 !important; */
}
    
.woc-chart .title {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1c8e51 !important;
    /* margin-bottom: 8px !important; */
}
    
.woc-chart .fungsi {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    /* gap: 4px; */
}
    
.woc-chart .location svg {
    width: 14px;
    height: 14px;
}
    
.woc-chart .status {
    position: absolute;
    top: 0;
    right: 0;
    /* background-color: rgba(110, 100, 195, 0.1); */
    background-color: rgba(119, 206, 98, 0.45);
    color: #1c8e51;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
    
.woc-chart .status-dot {
    width: 8px;
    height: 8px;
    background-color: #1c8e51;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
    
.woc-chart .about {
    margin-bottom: 28px;
    line-height: 1.6;
    color: #333;
    font-size: 15px;
    position: relative;
    max-height: 70px;
    overflow: hidden;
}
    
.woc-chart .about.expanded {
    max-height: 1000px;
    transition: max-height 0.5s ease;
}
    
.woc-chart .read-more {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    color: #6E64C3;
    background-color: #fff;
    cursor: pointer;
    padding-left: 8px;
}
    
.woc-chart .skills-section {
    margin-bottom: 20px;
}
    
.woc-chart .section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #3E3D53;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}
    
.woc-chart .section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6E64C3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
    
.woc-chart .profile-card:hover .section-title::after {
    transform: scaleX(1);
}
    
.woc-chart .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
    
.woc-chart .badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background-color: #E5F7FF;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
    
.woc-chart .badge:nth-child(3n+2) {
    background-color: #F0EBFF;
}
    
.woc-chart .badge:nth-child(3n+3) {
    background-color: #FFEDE0;
}

.woc-chart .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.woc-chart .badge::before {
    content: attr(data-level);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: #3E3D53;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    opacity: 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.woc-chart .badge:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.woc-chart .badge::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) scale(0);
    width: 8px;
    height: 8px;
    background-color: #3E3D53;
    opacity: 0;
    transition: all 0.2s ease;
}

.woc-chart .badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) scale(1);
}

.woc-chart .testimonials-slider {
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}
    
.woc-chart .testimonials {
    display: flex;
    transition: transform 0.5s ease;
}

.woc-chart .testimonial {
    flex: 0 0 100%;
    padding: 16px;
    background-color: #F5F5F5;
    border-radius: 10px;
    margin-right: 10px;
}

.woc-chart .testimonial-content {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.6;
}

.woc-chart .testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: #6E64C3;
}

.woc-chart .testimonial-company {
    font-size: 12px;
    color: #777;
}

.woc-chart .slider-controls {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.woc-chart .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woc-chart .slider-dot.active {
    background-color: #6E64C3;
    width: 20px;
    border-radius: 10px;
}

.woc-chart .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.woc-chart .stats {
    display: flex;
    gap: 15px;
}

.woc-chart .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woc-chart .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #3E3D53;
}
    
.woc-chart .stat-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woc-chart .actions {
    display: flex;
    gap: 12px;
}

.woc-chart .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.woc-chart .btn-primary {
    background-color: #6E64C3;
    color: #fff;
}

.woc-chart .btn-primary:hover {
    background-color: #5a52a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 100, 195, 0.3);
}

.woc-chart .btn-secondary {
    background-color: #fff;
    color: #3E3D53;
    border: 1px solid #3E3D53;
}

.woc-chart .btn-secondary:hover {
    background-color: #3E3D53;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(62, 61, 83, 0.2);
}

.woc-chart .wave {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%236E64C3" fill-opacity="0.05" d="M0,192L48,202.7C96,213,192,235,288,224C384,213,480,171,576,165.3C672,160,768,192,864,213.3C960,235,1056,245,1152,234.7C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: -1;
}
    
.woc-chart .endorsement-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FFF3DC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woc-chart .endorsement-badge:hover {
    transform: scale(1.1);
    background-color: #FFDC91;
}

.woc-chart .endorsement-badge svg {
    width: 16px;
    height: 16px;
    color: #F6B93B;
}
    
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}
    
/* Responsive styles */
@media screen and (max-width: 600px) {
    .woc-chart .profile-card {
        padding: 20px;
    }
    
    .woc-chart .header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .woc-chart .profile-image {
        margin: 0 auto;
    }
    
    .woc-chart .status {
        position: relative;
        margin-top: 10px;
        align-self: center;
    }
    
    .woc-chart .footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .woc-chart .actions {
        width: 100%;
        justify-content: center;
    }
    
    .woc-chart .stats {
        width: 100%;
        justify-content: space-around;
    }
}