﻿.timeline-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.language-card {
    
}

#language {
    width: 100%;
}
.language-card {
    background: rgba(255, 245, 250, 0.38);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 24px 17px; 
    border: 1px solid rgba(255, 255, 255, 0.40);
    width: 95%;
    max-width: 100%;
    box-sizing: border-box;
}


.section-title {
    text-align: center;
    font-weight: 700;
    color: #4a1742;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.language-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 5px;
}



.language-item {
    margin-bottom: 10px;
}

.language-header {
    display: flex;
    justify-content: space-between;
    align-items:right ;
    margin-bottom: 6px;
}

.language-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #3c096c;
}

.language-percent {
    font-weight: 600;
    font-size: 0.8rem;
    color: #c2185b;
}

.language-progress {
    width: 100%;
    height: 5px;
    background: #f7e9ff;
    border-radius: 999px;
    overflow: hidden;
}

.language-progress-bar {
    height: 100%;
    background: #c2185b;
    border-radius: 999px;
    transition: width 0.4s ease;
}

.language-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(160, 90, 220, 0.22);
}
