.desc a {
    color: white;
    text-decoration: underline;
  }


/* Skills section styling */
.skills-container {
    margin-bottom: 30px;
}

.skill-category {
    margin-bottom: 20px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.skill-tag {
    background-color: #232323; /* Dark background that's slightly lighter than your body */
    padding: 8px 16px;
    border-radius: 24px; /* Matching your button radius */
    font-size: 14px;
    display: inline-block;
    border: 1px solid #333; /* Subtle border like your btn-std */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.skill-tag:hover {
    background-color: #2a2a2a; /* Slightly lighter on hover */
    transform: scale(1.05); /* Subtle scale effect like your partner grid */
}

/* Different colors for different skill categories */
.skill-category:nth-child(1) .skill-tag {
    border-color: rgba(0, 123, 255, 0.5); /* Blue tint for AI skills */
}

.skill-category:nth-child(2) .skill-tag {
    border-color: rgba(40, 167, 69, 0.5); /* Green tint for Development */
}

.skill-category:nth-child(3) .skill-tag {
    border-color: rgba(255, 193, 7, 0.5); /* Yellow/gold tint for Data Science */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skill-tags {
        gap: 8px;
    }
    
    .skill-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* --- Navbar, Topbar, and Selector Styles --- */
.topbar {
    width: 100%;
    height: 48px;
    background: #23272f;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-bottom: 1px solid #22252a;
}

.navbar {
    width: 100%;
    background: #23272f;
    border-bottom: 1px solid #22252a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 3;
    padding: 0.5em 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 0 0 18px 18px;
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    color: #f3f6fa;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5em 0.8em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.navbar a:hover,
.navbar a:focus {
    background: #353945;
    color: #0078d4;
}

.section-nav {
    margin: 0;
    position: static;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    max-width: 320px;
    border-radius: 18px;
    background: #181a20;
    border: 1.5px solid #353945;
    color: #f3f6fa;
    padding: 0.5em 1.2em;
    font-size: 1.1em;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.section-nav:focus {
    outline: 2px solid #0078d4;
    border-color: #0078d4;
}

.section-nav option {
    background: #23272f;
    color: #f3f6fa;
    border-radius: 12px;
}

.section-nav + * {
    margin-top: 0;
}

#about, #services, #skills, #timeline, #projects, #media, #contact {
    scroll-margin-top: 60px;
}

