/* ==================== SKILLS RADAR ==================== */
.radar-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.radar-chart {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.radar-svg {
    width: 100%;
    height: auto;
}

.radar-legend {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1rem;
}

.radar-legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legend-bar {
    display: block;
    height: 8px;
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    border-radius: 4px;
    min-width: 40px;
}

.legend-label {
    font-size: 0.88rem;
    color: #b0b0b0;
    white-space: nowrap;
}

.legend-pct {
    font-size: 0.88rem;
    color: #03dac6;
    font-weight: 600;
    margin-left: auto;
}

/* ==================== AI READINESS ==================== */
.ai-highlight {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(3, 218, 198, 0.1));
    padding: 1.2rem;
    border-left: 4px solid #03dac6;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.ai-highlight p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.98rem;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.ai-card {
    background-color: #252525;
    padding: 1.2rem;
    border-radius: 6px;
    border-top: 3px solid #03dac6;
}

.ai-card h3 {
    color: #bb86fc;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.ai-card ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.ai-card li {
    margin-bottom: 0.4rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* ==================== DOMAIN EXPERTISE ==================== */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.domain-card {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #03dac6;
}

.domain-card h3 {
    color: #bb86fc;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.domain-card p {
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.domain-tag {
    background: rgba(187, 134, 252, 0.15);
    color: #bb86fc;
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==================== COMPETENCIES ==================== */
.competencies-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.comp-category {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #03dac6;
}

.comp-category h3 {
    font-size: 1.05rem;
    color: #03dac6;
    margin-bottom: 1rem;
    margin-top: 0;
}

.comp-category ul {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.comp-category li {
    margin-bottom: 0.6rem;
    color: #b0b0b0;
}

/* ==================== CERTIFICATIONS ==================== */
.certifications-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cert-section {
    background-color: #252525;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #03dac6;
}

.cert-section h4 {
    color: #bb86fc;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.cert-section ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.92rem;
}

.cert-section li {
    margin-bottom: 0.35rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Languages Grid */
.languages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.language-row ul {
    list-style: none;
    padding: 0;
}

.language-row ul li {
    color: #b0b0b0;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* ==================== EXPERIENCE ==================== */
.experience-block {
    background-color: #252525;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #03dac6;
}

.experience-block h3 {
    margin-bottom: 0.5rem;
    color: #bb86fc;
}

.exp-company {
    font-size: 0.95rem;
    color: #03dac6;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.exp-dates {
    font-size: 0.93rem;
    color: #888;
    margin-bottom: 1rem;
    font-style: italic;
}

.exp-responsibilities {
    margin-top: 1rem;
}

.exp-responsibilities ul {
    margin-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.exp-responsibilities li {
    margin-bottom: 0.6rem;
    color: #b0b0b0;
}

/* ==================== CV DOWNLOAD ==================== */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cv-card {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #03dac6;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(3, 218, 198, 0.2);
}

.cv-header {
    margin-bottom: 1rem;
}

.cv-card h3 {
    color: #bb86fc;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.cv-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    flex: 1;
    margin-bottom: 1.2rem;
}

.cv-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    color: #121212;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.cv-download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(187, 134, 252, 0.4);
}

.cv-download-btn span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== CREDLY SECTION ==================== */
.credly-intro {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1) 0%, rgba(3, 218, 198, 0.1) 100%);
    padding: 1.5rem;
    border-left: 4px solid #bb86fc;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.credly-intro p {
    margin: 0.8rem 0;
    color: #b0b0b0;
}

.credly-link {
    color: #03dac6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.credly-link:hover {
    color: #bb86fc;
    text-decoration: underline;
}

.credly-badges h3 {
    color: #bb86fc;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-item {
    background: rgba(187, 134, 252, 0.05);
    border: 1px solid rgba(187, 134, 252, 0.2);
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.badge-item:hover {
    background: rgba(187, 134, 252, 0.1);
    border-color: #bb86fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.2);
}

.badge-title {
    display: block;
    color: #03dac6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-issuer {
    display: block;
    color: #999;
    font-size: 0.9rem;
}

/* ==================== CERTIFICATES CAROUSEL ==================== */
.certs-intro {
    background: linear-gradient(135deg, rgba(3, 218, 198, 0.1) 0%, rgba(187, 134, 252, 0.1) 100%);
    padding: 1.5rem;
    border-left: 4px solid #03dac6;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.certs-intro p {
    margin: 0.8rem 0;
    color: #b0b0b0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    background: rgba(187, 134, 252, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(187, 134, 252, 0.2);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.carousel-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 6px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(187, 134, 252, 0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-control:hover {
    background-color: #bb86fc;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(187, 134, 252, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: #bb86fc;
    width: 28px;
    border-radius: 5px;
}

.indicator:hover {
    background-color: rgba(187, 134, 252, 0.6);
}

/* ==================== RESPONSIVE EXPERTISE ==================== */
@media (max-width: 768px) {
    .competencies-group,
    .cv-grid {
        grid-template-columns: 1fr;
    }

    .languages-grid {
        grid-template-columns: 1fr;
    }

    .radar-container {
        flex-direction: column;
    }

    .radar-chart {
        max-width: 100%;
    }

    .ai-grid {
        grid-template-columns: 1fr;
    }

    .domain-grid {
        grid-template-columns: 1fr;
    }
}
