* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
  	background-color: #000000;
}
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  	
}
#bg { 
    position: fixed; 
  	background-color: #000000;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    outline: none; 
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.021);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.185);
    color: #f0f0f0;
    padding: 0;
}

.cv-container {
    display: flex;
}

.certified-section a {
    color: #ffffff;
    text-decoration: none;
}

.cv-left {
    flex: 1;
    background-color: rgba(33, 3, 58, 0);
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.075);
}
.profile-pic { 
    text-align: 
    center; 
    margin-bottom: 20px; 
}
.profile-pic img { 
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid rgba(255, 255, 255, 0.5); 
}
.cv-left h2 { 
    font-size: 1.1em; 
    color: #ffffff; 
    padding-bottom: 8px; 
    border-bottom: 2px solid #ffffff31; 
    margin-top: 25px; 
    margin-bottom: 15px; 
}
.contact-section p, .details-section p, .education-section p, .language-section p { 
    margin-bottom: 10px; 
    font-size: 0.9em; 
}
.contact-section i { 
    color: #ffffff6c; 
    margin-right: 10px; 
    width: 15px; 
    text-align: center; 
}
.contact-section a {
    text-decoration: none;
    color:  #ffffff;
    padding-left: 5px;
}

.cv-right { 
    flex: 2; 
    padding: 30px; 
}
.header { 
    text-align: center; 
    margin-bottom: 30px; 
}
.header h1 { 
    font-size: 3em; 
    margin-bottom: 10px; 
    color: #ffffff; 
}
.summary { 
    font-style: italic; 
    color: #d0d0d0; 
}
.main-section h2 { 
    background-color: #7700ff; 
    color: #ffffff; 
    padding: 8px 15px; 
    border-radius: 5px; 
    font-size: 1.1em; 
    margin-bottom: 20px; 
}

.timeline-item { 
    display: flex; 
    margin-bottom: 20px; 
}
.timeline-date { 
    flex-basis: 150px; 
    padding-right: 20px; 
    text-align: right; 
    color: #ffffff; 
    font-size: 0.9em; 
}
.timeline-content { 
    flex: 1; 
    border-left: 2px solid #7700ff80; 
    padding-left: 20px; 
}
.timeline-content h3 { 
    margin-bottom: 5px; 
}
.timeline-content ul { 
    padding-left: 20px; 
    font-size: 0.9em; 
}

.skills { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; }
.skill-item { 
    font-size: 0.9em; 
}
.skill-bar { 
    width: 100%; 
    background-color: rgba(75, 74, 74, 0.3);
    border-radius: 10px; 
    height: 5px; 
    margin-top: 5px; 
    overflow: hidden; 
}
.skill-level { 
    height: 100%; 
    background-color: #7700ff; 
    border-radius: 10px; 
}

.content::-webkit-scrollbar { 
    width: 1px; 
}
.content::-webkit-scrollbar-thumb { 
    background: rgba(174, 175, 175, 0.5); 
    border-radius: 4px; }

.name-mobile {
    display: none;
}

.cv-right .header h2 { 
    display: none;
}

@media (max-width: 768px) {

.content {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    margin-bottom: 20px; 
    max-height: none;
    overflow-y: visible;
    padding: 0;
}

.cv-container {
    flex-direction: column;
}

.cv-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.profile-pic img {
    width: 120px;
    height: 120px;
}

.header h1 {
    font-size: 2.2em;
}

.timeline-item {
    display: flex;
    margin-bottom: 20px;
}
.timeline-date {
    flex-basis: 150px; 
    padding-right: 20px;
    text-align: right;
    color: #ffffff;
    font-size: 0.9em;
}
.timeline-content {
    flex: 1;
    border-left: 2px solid #7700ff80;
    padding-left: 20px;
}
.timeline-content h3 {
    margin-bottom: 5px;
}
.timeline-content ul {
    padding-left: 20px;
    font-size: 0.9em;
}

.skills {
    grid-template-columns: 1fr;
}

.name-desktop {
    display: none;
}

.name-mobile {
    display: block;
    text-align: center;
    font-size: 2em;
    margin-top: 15px;
    margin-bottom: 20px;
}

.cv-right .header {
    text-align: left; 
    margin-bottom: 20px;
}

.main-section h2 { 
    background-color: #7700ff;
    color: #ffffff;
    padding: 8px 15px; 
    border-radius: 5px; 
    font-size: 1.1em; 
    margin-bottom: 20px; 
}

.cv-right .header h2 { 
    display: block;
    background-color: #7700ff;
    color: #ffffff;
    padding: 8px 15px; 
    border-radius: 5px; 
    font-size: 1.1em; 
    margin-bottom: 20px; 
}

}