* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 3px solid #ffffff;
    object-fit: cover;
    background-color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    cursor: pointer;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;

}

.image-container img.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(6);
    z-index: 1000;
    transform-origin: center center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);

 }
}

/* Optional: Add dark overlay behind expanded image */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-overlay.active {
    opacity: 1;
    visibility: visible;
}

.name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title {
    font-size: 1rem;
    color: #cccccc;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.navigation {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.page-views {
    font-size: 0.8rem;
    color: #888888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.7rem;
    color: #666666;
    letter-spacing: 1px;
    padding-top : 20px;
}

.content-section {
    display: none;
    max-width: 800px;
    width: 100%;
    text-align: left;
    margin-top: 40px;
}

.content-section.active {
    display: block;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.experience-item, .education-item, .project-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-title, .degree-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.company, .school {
    color: #cccccc;
    font-size: 1rem;
}

.date {
    color: #888888;
    font-size: 0.9rem;
    white-space: nowrap;
}

.description {
    color: #cccccc;
    line-height: 1.6;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-category {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.skill-category h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.1rem;
}

.skill-list {
    color: #cccccc;
}

.skill-list ul {
    list-style: none;
}

.skill-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.skill-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.certification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.cert-name {
    color: #ffffff;
    font-weight: bold;
}

.cert-date {
    color: #888888;
    font-size: 0.9rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
    margin: 20px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-item {
    color: #cccccc;
    font-size: 1rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .name {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .navigation {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}