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

/* =========================
   BASE (SAME AS OTHER PAGES)
   ========================= */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #111;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
    width: 100%;
    background-color: #ffffff;
    padding: 18px 0;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nav-pill {
    background-color: #FCD200;
    padding: 12px 34px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links li {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.nav-links li:hover {
    background-color: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}


/* =========================
   SKILLS PAGE
   ========================= */
.skill {
    padding: 120px 20px;
    background-color: #ffffff;
}

/* TOP LETTERS */
.skill-container-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.skill-write {
    display: flex;
    gap: 14px;
}

/* LETTER CARDS */
.skill-card {
    width: 70px;
    height: 90px;
    background-color: #FCD200;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 28px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    background-color: #000;
    color: #FCD200;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* =========================
   SKILLS GRID
   ========================= */
.skill-container-2 {
    display: flex;
    justify-content: center;
}

.skills {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}

/* SKILL BOX */
.skills-card {
    background-color: #ffffff;
    padding: 36px 20px;
    text-align: center;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skills-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}


/* =========================
   FOOTER (REUSED — SAME AS OTHER PAGES)
   ========================= */
.contact-footer {
    background-color: #ffffff;
    padding: 100px 20px 60px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-size: 15px;
    color: #444;
    max-width: 620px;
    margin: 0 auto 60px;
    line-height: 1.7;
    text-align: justify;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.footer-card {
    background-color: #f9e26d;
    border: 1px solid #e5e5e5;
    padding: 28px 22px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #000;
}

.footer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
    background-color: #ffffff;
}

.footer-card a:hover {
    color: #FCD200;
}

.footer-card p,
.footer-card a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
}