/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #f97316;
    --accent-light: #fb923c;
    --secondary: #06b6d4;
    --emerald: #10b981;
    --pink: #ec4899;

    /* Neutrals */
    --bg-dark: #030014;
    --bg-darker: #010008;
    --bg-card: #0a0a1a;
    --bg-card-hover: #0f0f2a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}


/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 12px;
}

.section-subtitle strong {
    color: var(--primary-light);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(3, 0, 20, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-greeting {
    font-size: 1.1rem;
    color: var(--primary-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-subtitle .accent {
    color: var(--accent);
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-badge.accenture {
    background: rgba(160, 0, 255, 0.15);
    color: #c77dff;
    border: 1px solid rgba(160, 0, 255, 0.3);
}

.hero-badge.clearance {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
}

.image-border {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
}

.highlight-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== Skills Section ===== */
.skills {
    padding: var(--section-padding) 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition-normal);
}

.skill-category:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.skill-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.skill-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.skill-icon svg {
    width: 20px;
    height: 20px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.skill-tag.advanced {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.skill-tag.intermediate {
    background: rgba(6, 182, 212, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.skill-tag.basic {
    background: rgba(113, 113, 122, 0.15);
    color: var(--text-secondary);
    border: 1px solid rgba(113, 113, 122, 0.3);
}

.skill-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.advanced {
    background: var(--primary);
}

.legend-dot.intermediate {
    background: var(--secondary);
}

.legend-dot.basic {
    background: var(--text-muted);
}

/* ===== Experience Section ===== */
.experience {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

/* Employer Banner */
.employer-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(160, 0, 255, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(160, 0, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.employer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.employer-logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a000ff, #6366f1);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.employer-text h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.employer-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Employer Logo Base Styles */
.employer-logo-img {
    width: 160px;
    height: 64px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.employer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12),
                0 4px 10px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.employer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.02) brightness(1.01);
}

/* Accenture Employer Banner */
.employer-logo.accenture-logo {
    width: 160px;
    height: 64px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(160, 0, 255, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(160, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.employer-banner.accenture:hover .employer-logo.accenture-logo {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 0, 255, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(160, 0, 255, 0.2);
}

.employer-logo.accenture-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.02) brightness(1.01);
}

/* Oxford International Employer Banner */
.employer-banner.oxford {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(0, 102, 153, 0.1));
    border: 1px solid rgba(0, 51, 102, 0.2);
}

.employer-logo.oxford-logo {
    width: 160px;
    height: 64px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.employer-banner.oxford:hover .employer-logo.oxford-logo {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 51, 102, 0.2);
}

.employer-logo.oxford-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.02) brightness(1.01);
}

/* University of Greenwich Employer Banner */
.employer-banner.greenwich {
    background: linear-gradient(135deg, rgba(0, 89, 76, 0.1), rgba(0, 128, 128, 0.1));
    border: 1px solid rgba(0, 89, 76, 0.2);
}

.employer-logo.greenwich-logo {
    width: 160px;
    height: 64px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 89, 76, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 89, 76, 0.1);
    transition: all 0.3s ease;
}

.employer-banner.greenwich:hover .employer-logo.greenwich-logo {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 89, 76, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 89, 76, 0.2);
}

.employer-logo.greenwich-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.02) brightness(1.01);
}

.clearance-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.95rem;
}

.clearance-badge svg {
    width: 22px;
    height: 22px;
}

/* Confidential Note */
.confidential-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--emerald);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.confidential-note svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--emerald);
    margin-top: 2px;
}

.confidential-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.confidential-note strong {
    color: var(--emerald);
}

/* Project Client Tag */
.project-client {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--bg-darker);
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.timeline-badge {
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 1rem;
    color: var(--primary-light);
    font-weight: 400;
    margin-bottom: 12px;
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.timeline-achievements {
    margin-bottom: 16px;
    padding-left: 20px;
}

.timeline-achievements li {
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 8px;
}

.timeline-achievements li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Volunteer Role Section */
.volunteer-role {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.volunteer-header h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.volunteer-card {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.volunteer-card:hover {
    border-color: var(--secondary);
}

.volunteer-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--secondary);
}

.volunteer-icon svg {
    width: 32px;
    height: 32px;
}

.volunteer-content {
    flex: 1;
}

.volunteer-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.volunteer-title-row h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.volunteer-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50px;
}

.volunteer-org {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.charity-number {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.volunteer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.volunteer-responsibilities {
    margin-bottom: 20px;
    padding-left: 20px;
}

.volunteer-responsibilities li {
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 8px;
}

.volunteer-responsibilities li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
}

.volunteer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.volunteer-tags span {
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.8rem;
}

.volunteer-card.with-image {
    display: grid;
    grid-template-columns: 350px 1fr;
    padding: 0;
    overflow: hidden;
}

.volunteer-image {
    height: 100%;
    min-height: 300px;
}

.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volunteer-card.with-image .volunteer-content {
    padding: 32px;
}

.volunteer-card.with-image .volunteer-icon {
    display: none;
}

/* Volunteer Icon Variations */
.volunteer-icon.compass-icon {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

.volunteer-icon.greenwich-icon {
    background: rgba(0, 89, 76, 0.15);
    color: #00594c;
}

.volunteer-icon.mentor-icon {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.volunteer-icon.president-icon {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
}

.volunteer-icon.star-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
}

.volunteer-icon.ambassador-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.volunteer-icon.oxfam-icon {
    background: rgba(0, 166, 81, 0.1);
    color: #00a651;
}

/* Volunteer Cards Grid */
.volunteer-role .volunteer-card:not(.with-image) {
    margin-top: 24px;
}

/* Theatre Section */
.theatre-section {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.theatre-header h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.theatre-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.theatre-card:hover {
    border-color: var(--pink);
}

.theatre-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-darker);
}

.theatre-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.theatre-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theatre-badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 16px;
}

.theatre-content h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.theatre-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.theatre-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.theatre-role {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.role-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    color: var(--pink);
}

.role-icon svg {
    width: 16px;
    height: 16px;
}

.theatre-role span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* UNICEF Section */
.unicef-section {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.unicef-header h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.unicef-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.unicef-card:hover {
    border-color: #00aeef;
}

.unicef-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unicef-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(255, 199, 44, 0.15));
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00aeef;
    font-weight: 600;
    margin-bottom: 16px;
}

.unicef-badge svg {
    width: 16px;
    height: 16px;
    fill: #ffc72c;
    stroke: #ffc72c;
}

.unicef-content h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.unicef-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.unicef-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.unicef-highlight {
    padding: 6px 14px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #00aeef;
    font-weight: 500;
}

.unicef-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-darker);
}

.unicef-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

/* ===== Certifications Section ===== */
.certifications {
    padding: var(--section-padding) 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.cert-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.cert-card.aws {
    border-top: 3px solid #ff9900;
}

.cert-card.azure {
    border-top: 3px solid #0078d4;
}

.cert-card.terraform {
    border-top: 3px solid #7b42bc;
}

.cert-card.github {
    border-top: 3px solid #24292e;
}

.cert-card.bcs {
    border-top: 3px solid #1e3a5f;
}

.cert-card.greenwich {
    border-top: 3px solid #00594c;
}

.cert-card.python {
    border-top: 3px solid #3776ab;
}

.cert-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-card.aws .cert-logo {
    color: #ff9900;
}

.cert-card.azure .cert-logo {
    color: #0078d4;
}

.cert-card.terraform .cert-logo {
    color: #7b42bc;
}

.cert-card.github .cert-logo {
    color: #24292e;
}

.cert-card.bcs .cert-logo {
    color: #1e3a5f;
}

.cert-card.greenwich .cert-logo {
    color: #00594c;
}

.cert-card.edu-style .edu-logo {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 16px;
    padding: 14px 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 89, 76, 0.12),
                0 2px 6px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 89, 76, 0.1);
    transition: all 0.3s ease;
}

.cert-card.edu-style:hover .edu-logo {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 89, 76, 0.2),
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 89, 76, 0.25);
}

.cert-card.edu-style .edu-logo img {
    width: 100%;
    height: auto;
    filter: contrast(1.05) brightness(1.02);
}

.cert-card.python .cert-logo {
    color: #3776ab;
}

.cert-logo svg {
    width: 40px;
    height: 40px;
}

.cert-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.cert-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cert-issuer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cert-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Certification Categories */
.cert-category {
    margin-bottom: 48px;
}

.cert-category:last-of-type {
    margin-bottom: 60px;
}

.cert-category-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.education {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.education-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 32px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.edu-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
}

.edu-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.edu-icon svg {
    width: 28px;
    height: 28px;
}

.edu-logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edu-card:hover .edu-logo {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2),
                0 0 0 1px rgba(99, 102, 241, 0.3);
}

.edu-logo img {
    width: 100%;
    height: auto;
    filter: contrast(1.05);
}

.edu-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.edu-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.edu-grade {
    display: inline-block;
    padding: 4px 12px;
    margin: 4px 4px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== Social Impact Section ===== */
.social-impact {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.impact-tag {
    background: rgba(160, 0, 255, 0.1);
    border-color: rgba(160, 0, 255, 0.3);
    color: #c77dff;
}

/* Social Value Banner */
.social-value-banner {
    background: linear-gradient(135deg, rgba(160, 0, 255, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(160, 0, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin-bottom: 40px;
}

.sv-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sv-banner-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a000ff, #6366f1);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.sv-banner-text h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.sv-banner-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.impact-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
}

.impact-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.impact-card.upcoming {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.2);
}

.impact-card.upcoming:hover {
    border-color: var(--secondary);
}

.impact-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-image-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.impact-year {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

.impact-content {
    padding: 32px;
}

.impact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    color: var(--pink);
    margin-bottom: 20px;
}

.impact-icon svg {
    width: 28px;
    height: 28px;
}

.impact-icon.compass {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

.impact-icon.school {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.impact-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.impact-org {
    font-size: 0.95rem;
    color: var(--primary-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.impact-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.impact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.impact-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--emerald);
}

.impact-highlight svg {
    width: 14px;
    height: 14px;
}

.impact-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 16px;
}

.impact-stat {
    display: flex;
    flex-direction: column;
}

.impact-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
}

.impact-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.impact-outcome {
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--emerald);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--emerald);
    margin-top: 16px;
}

.impact-badge-upcoming {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.impact-planning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-sm);
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 16px;
}

.impact-planning svg {
    width: 18px;
    height: 18px;
}

/* Impact Gallery */
.impact-gallery {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.gallery-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.gallery-caption span {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

/* ===== Projects Section ===== */
.projects {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.1));
    filter: blur(100px);
    pointer-events: none;
}

.projects-tag {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--accent);
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.7;
}

.project-category {
    margin-bottom: 48px;
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: inline-block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-normal);
    text-decoration: none;
}

.project-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.project-logo {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.project-info {
    flex: 1;
}

.project-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.contact-icon.projects-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.contact-icon.projects-icon svg {
    width: 22px;
    height: 22px;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-link:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}


.contact-link-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.cta-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cv-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cv-note svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links svg {
    width: 18px;
    height: 18px;
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .image-wrapper {
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .hero-badges {
        justify-content: center;
    }

    .employer-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .employer-info {
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 8px;
        transition: var(--transition-normal);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 6px;
    }

    .timeline-item {
        padding-left: 32px;
    }

    .timeline-marker {
        left: 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card.featured {
        grid-template-columns: 1fr;
    }

    .impact-image {
        min-height: 200px;
    }

    .impact-highlights {
        flex-direction: column;
    }

    .volunteer-card {
        flex-direction: column;
        text-align: center;
    }

    .volunteer-card.with-image {
        grid-template-columns: 1fr;
    }

    .volunteer-image {
        min-height: 200px;
    }

    .volunteer-title-row {
        justify-content: center;
    }

    .volunteer-responsibilities {
        text-align: left;
    }

    .volunteer-tags {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .theatre-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .theatre-roles {
        justify-content: center;
    }

    .unicef-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .unicef-content {
        order: 1;
    }

    .unicef-video {
        order: 2;
    }

    .unicef-highlights {
        justify-content: center;
    }

    .sv-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
        --container-padding: 16px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-highlights {
        gap: 12px;
    }

    .highlight {
        flex-direction: column;
        text-align: center;
    }

    .skill-category {
        padding: 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-achievements {
        padding-left: 16px;
    }

    .education {
        padding: 24px;
    }

    .cta-card {
        padding: 28px;
    }

    .contact-link {
        flex-direction: column;
        text-align: center;
    }

    .skill-legend {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.about-content,
.skill-category,
.timeline-item,
.cert-card,
.projects,
.project-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animations */
.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; }
.skill-category:nth-child(5) { animation-delay: 0.5s; }
.skill-category:nth-child(6) { animation-delay: 0.6s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.15s; }
.cert-card:nth-child(3) { animation-delay: 0.2s; }
.cert-card:nth-child(4) { animation-delay: 0.25s; }
.cert-card:nth-child(5) { animation-delay: 0.3s; }
.cert-card:nth-child(6) { animation-delay: 0.35s; }
