* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f8fbff;
    color: #0f172a;
}

/* Navbar */

/*header {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    background: white;*/
/*    border-bottom: 1px solid #e5e7eb;*/
/*}*/

/*.nav-wrap {*/
/*    width: min(1200px, 92%);*/
/*    margin: 0 auto;*/
/*    padding: 16px 0;*/

/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/

/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    color: #0f172a;*/
/*}*/

/*.logo-img {*/
/*    height: 52px;*/
/*    width: auto;*/
/*}*/

/*nav a {*/
/*    margin-left: 24px;*/
/*    text-decoration: none;*/
/*    color: #475569;*/
/*    font-weight: 500;*/
/*}*/

/*nav a:hover {*/
/*    color: #2563eb;*/
/*}*/

/* Page */

.skills-page {
    padding: 48px 18px 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h1 {
    font-size: 42px;
    font-weight: 500;
    margin: 0 0 12px;
}

.section-title p {
    margin: 0;
    font-size: 20px;
    color: #475569;
}

/* Skills grid */

.skills-grid {
    width: min(1120px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.skill-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 26px;
    min-height: 250px;

    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: 0.25s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.skill-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
}

.icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Icon colors */

.icon.blue {
    background: #eef2ff;
    color: #2563eb;
}

.icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon.green {
    background: #ecfdf5;
    color: #0f9f8f;
}

.icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.icon.pink {
    background: #fdf2f8;
    color: #db2777;
}

.icon.yellow{
    background: #fef9c3;
    color: #ca8a04;
}

/* Skill list */

.skill-card ul {
    margin: 0;
    padding-left: 18px;
}

.skill-card li {
    margin-bottom: 12px;
    color: #334155;
    font-size: 16px;
    line-height: 1.35;
}

.blue-list li::marker {
    color: #2563eb;
}

.purple-list li::marker {
    color: #9333ea;
}

.green-list li::marker {
    color: #0f9f8f;
}

.orange-list li::marker {
    color: #ea580c;
}

.pink-list li::marker {
    color: #db2777;
}

.yellow-list li::marker {
    color: #d5db27;
}

/* Responsive */

@media (max-width: 1000px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .nav-wrap {
        flex-direction: column;
        gap: 14px;
    }

    nav a {
        margin: 0 8px;
    }

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

    .section-title h1 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 17px;
    }
}