@charset "utf-8";


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    width: 1000px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
}

.container {
    max-width: 1200px;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 0 20px;
    width: 1000px;
}

.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 1000px;
    height: 66px;
    padding-top: auto;
    padding-left: auto;
    padding-right: auto;
    padding-bottom: auto;
    margin-left: auto;
    margin-bottom: auto;
    margin-right: auto;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    margin-left: auto;
}

.logo h3 {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: auto;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-top: -10px;
    padding-left: 0px;
    margin-right: 47px;
}

.skills {
    padding: 80px 0;
    background-color: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 950px;
}

.skill-category {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.skill-name {
    font-weight: 500;
    color: #333;
	}
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}
.skills-progress {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-left: 362px;
}

.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    text-align: center;
    margin-left: 195px;
}

.progress-circle svg {
    transform: rotate(-90deg);
    width: 100px;
    height: 100px;
    margin-left: -7px;
}

.progress-circle circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.progress-circle circle:first-child {
    stroke: #eee;
}

.progress-circle circle:last-child {
  stroke:#6366f1; /* progress color */
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.5s ease;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Poppins, sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin-left: -9px;
    margin-top: 7px;
}
