/* Skills Page Specific Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.skills-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}
.skill-category {
    background: rgba(13, 59, 102, 0.8);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.skill-category h3 {
    color: #ffdd57;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.skill-category h3 i {
    font-size: 1.2em;
}
.skill-category ul {
    list-style-type: none;
    padding: 0;
}
.skill-category ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skill-category ul li i {
    margin-right: 10px;
    color: #ffdd57;
}
.skill-level {
    background-color: rgba(255, 221, 87, 0.2);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #ffdd57;
}
.skill-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}
.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffdd57;
    border-radius: 3px;
    width: 0%;
    transition: width 1s ease;
}

/* Animation for skill bars */
@keyframes fillBar {
    from { width: 0%; }
}

.animate-skill-bar .skill-progress {
    animation: fillBar 1.5s forwards;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}
.hero-section h2 {
    font-size: 2.5rem;
    color: #ffdd57;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Animation delays for staggered effect */
.skill-category:nth-child(1) { animation-delay: 0.1s; }
.skill-category:nth-child(2) { animation-delay: 0.2s; }
.skill-category:nth-child(3) { animation-delay: 0.3s; }
.skill-category:nth-child(4) { animation-delay: 0.4s; }

/* Footer Styles */
footer {
    background: rgba(13, 59, 102, 0.8);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Dark Mode Styles */
body[data-theme="dark"] {
    background: #000000;
    color: #ffffff;
}

body[data-theme="dark"] .skill-category {
    background: rgba(0, 0, 0, 0.8);
}

body[data-theme="dark"] .skill-category h3 {
    color: #ffffff;
}

body[data-theme="dark"] .skill-level {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

body[data-theme="dark"] .skill-card .icon {
    color: #ffffff;
}

body[data-theme="dark"] .main-title,
body[data-theme="dark"] .cta-button,
body[data-theme="dark"] .skill-category h3,
body[data-theme="dark"] .hero-section h2 {
    color: #ffffff;
}

body[data-theme="dark"] .skill-category li i {
    color: #ffffff;
}

/* Light Mode Styles */
body[data-theme="light"] {
    background: #ffffff;
    color: #000000;
}

body[data-theme="light"] .skill-category {
    background: #f5f5f5;
    color: #000000;
}

body[data-theme="light"] .main-title,
body[data-theme="light"] .cta-button,
body[data-theme="light"] .skill-category h3,
body[data-theme="light"] .hero-section h2 {
    color: #000000;
}

body[data-theme="light"] .skill-card .icon {
    color: #000000;
}

body[data-theme="light"] .skill-category li i {
    color: #000000;
}

body[data-theme="light"] .skill-level {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

@media (max-width: 768px) {
    .skills-content {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        display: none;
    }
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 59, 102, 0.95);
        padding: 1rem;
    }
    .hamburger-menu {
        display: block;
    }
    .skill-category {
        flex: 1 1 100%;
    }
    .hero-section h2 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

/* ...existing code... */
.navbar {
    /* ...existing code... */
    content: "Tehj Patel"; /* Re-add the name "Tehj Patel" */
}

/* Remove the name "Tehj Patel" */
.navbar h1 {
    display: block; /* Show the h1 heading "Tehj Patel" */
}
/* ...existing code... */
