:root {
    --primary-color: #FFC107;
    --text-light: #FFFFFF;
    --nav-width: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: var(--nav-width);
    background-color: var(--bg-dark);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 3rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: var(--nav-width);
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 8px;
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.skills-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skills-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.skills-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.skill-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.skill-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.skill-circle circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke: rgba(255, 255, 255, 0.1);
}

.skill-circle circle.progress {
    stroke: var(--primary-color);
    stroke-dasharray: 314;
    stroke-dashoffset: calc(314 - (314 * var(--progress)) / 100);
    transition: stroke-dashoffset 1s ease;
}

.skill-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.skill-name {
    font-size: 1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        
    }
}

@media (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      
    }

    .profile-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .skills-content {
        order: 0;
    }
}

