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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5e6d3 0%, #e5d6a9 100%);
    color: #333;
    min-height: 100vh;
}
nav {
    background-color: #EEDA97;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

nav a:hover {
    background-color: #333;
    color: #EEDA97;
    transform: translateY(-2px);
}
.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 60px;
    margin-bottom: 50px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.skill-box {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 2px solid #333;
    transition: all 0.3s;
}

.skill-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    background-color: #EEDA97;
}

.skill-box i {
    font-size: 90px;
    margin-bottom: 25px;
    color: #333;
    transition: all 0.3s;
}

.skill-box:hover i {
    transform: scale(1.1);
}

.skill-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.skill-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #EEDA97 0%, #ffeaa7 100%);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.description {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 2px solid #333;
}

.description h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #333;
}

.description p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

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

    .skill-box {
        padding: 30px;
    }

    .description {
        padding: 30px;
    }

    .description h2 {
        font-size: 28px;
    }

    .description p {
        font-size: 18px;
    }
}