/* ==========================================================================
   Portfolio Stylesheet: Fatim Zahrae Tijani
   Identity: Master 2 ICDA — Junior Full-Stack Web Developer
   Theme: Elegant, Minimalist, High-Contrast Black & White
   ========================================================================== */

:root {
    /* Pure Black & White Color System */
    --bg-main: #000000;
    --bg-surface: #0c0c0c;
    --bg-surface-elevated: #161616;
    --bg-surface-glass: rgba(0, 0, 0, 0.88);
    
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #737373;
    
    --border-subtle: rgba(255, 255, 255, 0.15);
    --border-hover: rgba(255, 255, 255, 0.7);
    --border-card: rgba(255, 255, 255, 0.1);
    
    --badge-bg: rgba(255, 255, 255, 0.05);
    --badge-text: #E5E5E5;
    --badge-border: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing & Layout */
    --container-max: 1180px;
    --header-height: 76px;
    --section-padding: 5.5rem 0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-white: 0 8px 30px -6px rgba(255, 255, 255, 0.12);
}

/* Base & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container & Sections */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.75rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-compact {
    padding: 3rem 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    max-width: 620px;
    margin: 0 auto 1.25rem auto;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.section-line {
    width: 48px;
    height: 1px;
    background: #FFFFFF;
    margin: 0.8rem auto 0 auto;
    opacity: 0.4;
}

/* Header & Navigation */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-card);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

#site-header.scrolled {
    background: rgba(0, 0, 0, 0.96);
    border-bottom-color: var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: transform var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFFFFF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width var(--transition-smooth), left var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger Mobile Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition-fast);
}

.hamburger-bar {
    width: 22px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.menu-toggle:hover {
    border-color: #FFFFFF;
}

.menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 860px;
}

.profile-frame {
    position: relative;
    margin-bottom: 2rem;
}

.profile-pic {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05), 0 20px 35px -10px rgba(0, 0, 0, 0.9);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.profile-pic:hover {
    transform: scale(1.02);
    border-color: #FFFFFF;
}

.status-indicator {
    position: absolute;
    bottom: 4px;
    right: -10px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.location-badge svg {
    color: #FFFFFF;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero-role {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #E0E0E0;
    letter-spacing: -0.2px;
    margin-bottom: 0.5rem;
}

.hero-academic {
    font-size: 1.05rem;
    font-weight: 400;
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
    font-style: italic;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: #FFFFFF;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: #E5E5E5;
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #000000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
}

.btn-outline:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
}

.btn-icon:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #FFFFFF;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-closing {
    color: #FFFFFF !important;
    font-weight: 400;
    border-left: 2px solid #FFFFFF;
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.highlight-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.highlight-label strong {
    display: block;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.highlight-label span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Skills Section
   ========================================================================== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.skill-category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.skill-category-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-surface-elevated);
    transform: translateY(-4px);
    box-shadow: var(--shadow-white);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-card);
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.3px;
    margin: 0;
}

.badge-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    font-weight: 400;
}

.tech-badge:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
}

.tech-badge.highlight {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    font-weight: 600;
}

/* ==========================================================================
   Featured Project: LUNSOLE Booking
   ========================================================================== */
.featured-project-card {
    background: var(--bg-surface);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.9), var(--shadow-white);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.featured-project-card:hover {
    border-color: #FFFFFF;
    box-shadow: 0 25px 55px -10px rgba(255, 255, 255, 0.15);
}

.featured-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
}

.project-category {
    font-size: 0.85rem;
    color: #CCCCCC;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-body {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2.5rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.project-features-block {
    margin-bottom: 1.5rem;
}

.features-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #E0E0E0;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.features-grid li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.5;
}

.features-grid li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-size: 1rem;
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #000000;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.tech-stack-box h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-actions {
    margin-top: 2rem;
}

.project-github-btn {
    width: 100%;
    padding: 0.95rem;
    justify-content: center;
}

/* Secondary Projects Grid */
.projects-secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.project-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-surface-elevated);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.project-header {
    margin-bottom: 1rem;
}

.project-card .project-title {
    font-size: 1.4rem;
    margin-top: 0.4rem;
    margin-bottom: 0.75rem;
}

.project-card .project-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.features-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-bottom: 1.5rem;
}

.features-list-tags li {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-footer {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    align-self: flex-start;
}

.project-link:hover {
    color: #A0A0A0;
    transform: translateX(3px);
}

/* ==========================================================================
   Education Section
   ========================================================================== */
.education-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #FFFFFF;
}

.education-main {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-card);
}

.edu-badge-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edu-school {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #CCCCCC;
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
}

.edu-degree {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.edu-field {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.edu-focus-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Split Section: Currently Learning & Career Objective
   ========================================================================== */
.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.feature-panel:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.panel-header {
    margin-bottom: 1rem;
}

.panel-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #AAAAAA;
    margin-bottom: 0.3rem;
}

.panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
}

.panel-desc {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.objective-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--bg-surface-elevated);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
}

.objective-location svg {
    color: #FFFFFF;
    flex-shrink: 0;
}

.objective-location strong {
    color: #FFFFFF;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-card-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.contact-tile {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.contact-tile:not(.non-interactive):hover {
    border-color: #FFFFFF;
    background: var(--bg-surface-elevated);
    transform: translateY(-3px);
    box-shadow: var(--shadow-white);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-val {
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    border-top: 1px solid var(--border-card);
    padding: 3.5rem 0 2.5rem 0;
    margin-top: 4rem;
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: #888888;
}

.copyright {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (max-width: 992px) {
    .featured-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        grid-template-columns: 1fr;
        padding: 2.25rem;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 4rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.75rem;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--border-card);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .hero-name {
        font-size: 2.6rem;
    }

    .hero-role {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.02rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .featured-project-card {
        padding: 1.75rem;
    }

    .project-title {
        font-size: 1.6rem;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .education-card {
        padding: 1.75rem;
    }

    .education-main {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .profile-pic {
        width: 140px;
        height: 140px;
    }
}