.statistic-card {
height: 150px;
width: 300px;
background: rgba(0, 0, 0, 0.8);
text-align: center;
align-content: center;
border-radius: 10px;
}
.profile-button {
background: rgba(0,0,0,.05);
color: #fff;
border: 2px solid #fff;
border-radius: 10px;
font-size: .9rem;
font-weight: 400;
line-height: normal;
opacity: .8;
margin: auto;
padding: .5rem 1rem .55rem;
}
.skill-icon-container {
max-height: 35px;
    position: relative;
    cursor: pointer;
}
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.profile-button {
background: rgba(0,0,0,.05);
color: #fff;
border: 2px solid #fff;
border-radius: 10px;
font-size: .9rem;
font-weight: 400;
line-height: normal;
opacity: .8;
margin: auto;
padding: .5rem 1rem .55rem;
}
.skill-icon-container {
max-height: 35px;
    position: relative;
    cursor: pointer;
}
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.profile-container {
    border: 2px solid #34d399;
    width: 70%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.3);
    overflow: hidden;
}
.profile-cover {
    position: relative;
    height: 200px;
    background: url('/path-covers/intro-to-cyber.jpg') center/cover no-repeat;
}
.profile-avatar {
    background: #fff;
    position: absolute;
    bottom: -50px;
    left: 30px;
    width: 100px;
    height: 100px;
    border: 5px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-info {
/*    margin-top: 70px; */
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.8);
}
.user-info h1 {
    font-size: 28px;
    color: #fff;
    font-family: Handjet;
    font-weight: 600;
}
.user-info p {
    font-size: 16px;
    color: #fff;
    margin: 5px 0;
}
.profile-sections {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px 30px;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8);
}
.bio-section, .skills-section, .completed-modules {
    flex: 1 1 calc(33.333% - 20px);
    background-color: rgba(0,0,0,.05);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    border-radius: 10px;
}
.bio-section h2, .skills-section h2, .completed-modules h2 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #fff;
}
.bio-section p, .skills-section p, .completed-modules ul {
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.completed-modules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.completed-modules li {
    padding: 10px;
    margin: 5px 0;
    background-color: #f1f1f1;
    border-radius: 5px;
    color: #444;
    font-size: 14px;
}
.achievement {
    display: inline-block;
    margin: 10px;
    position: relative;
    cursor: pointer;
    border: 2px solid #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.3);
    border-radius: 50%;
}
.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s;
}
.achievement:hover .achievement-icon {
    transform: scale(1.1);
}
.view-all-achievements {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}
.view-all-achievements:hover {
    text-decoration: underline;
}
