.cv {

    max-width: 1000px;
    margin: auto;
    padding: 50px;
    font-family: "Handjet", sans-serif;
    color: #222;
}

.cv-header {

    display: flex;
    gap: 50px;
    align-items: center;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.cv-image {

    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bs-primary);
}

.cv-header h1 {

    margin: 0;
    font-size: 3rem;
}

.cv-header p {

    margin: 8px 0;
}

.cv-about {

    margin-bottom: 60px;
}

.cv-about p {

    line-height: 1.6;
}

.cv-timeline {

    margin-bottom: 60px;
}

.cv-entry {

    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.cv-date {

    width: 150px;
    font-weight: bold;
    color: #777;
    flex-shrink: 0;
}

.cv-content {

    flex: 1;
    border-left: 3px solid var(--bs-primary);
    padding-left: 30px;
    position: relative;
}

.cv-content::before {

    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bs-primary);
    left: -10px;
    top: 8px;
}

.badge {

    display: inline-block;
    background: var(--bs-primary);
    color: white;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.cv-content h3 {

    margin: 5px 0;
}

.cv-skills {

    margin-top: 60px;
}

.skill {

    margin-bottom: 25px;
}

.skill-header {

    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-bar {

    width: 100%;
    height: 18px;
    background: #e9e9e9;
    border-radius: 999px;
    overflow: hidden;
}

.skill-fill {

    height: 100%;
    background: var(--bs-primary);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.cv h2 {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 10px;
    display: inline-block;
}