/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* =========================
       GLOBAL THEME VARIABLES
       ========================= */

    /* 1. Base Colors (Light Mode Default) */
    --primary-color: #2563eb;
    /* Core Brand Blue */
    --secondary-color: #1e40af;
    /* Darker Blue */
    --accent-color: #fca311;
    /* Vivid Orange/Gold */

    /* 2. Backgrounds */
    --bg-main: #f8fafc;
    /* Main Page Background */
    --bg-section: #ffffff;
    /* Section Background */
    --bg-card: #ffffff;
    /* Card Background */
    --bg-nav: rgba(255, 255, 255, 0.95);
    /* Navbar Background */

    /* 3. Text */
    --text-main: #1e293b;
    /* Primary Text (Dark Slate) */
    --text-secondary: #475569;
    /* Secondary Text */
    --text-muted: #64748b;
    /* Muted Text */
    --text-light: #f8fafc;
    /* Light Text (for dark backgrounds) */

    /* 4. Borders & Shadows */
    --border-color: #e2e8f0;
    /* Borders */
    --shadow-color: rgba(0, 0, 0, 0.05);
    /* Subtle Shadow */
    --shadow-strong: rgba(0, 0, 0, 0.1);
    /* Stronger Shadow */

    /* 5. Gradient & Fonts */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --bg-secondary: #f1f5f9;

    /* 6. Neon Glow Variables */
    --neon-blue: 0 0 10px rgba(37, 99, 235, 0.5), 0 0 20px rgba(37, 99, 235, 0.3);
    --neon-purple: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
    --neon-cyan: 0 0 10px rgba(6, 182, 212, 0.5), 0 0 20px rgba(6, 182, 212, 0.3);
    --neon-orange: 0 0 10px rgba(249, 115, 22, 0.5), 0 0 20px rgba(249, 115, 22, 0.3);
    --neon-intensify: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px currentColor;
}

/* Dark Mode Overrides */
body.dark-mode {
    --primary-color: #60a5fa;
    /* Lighter Blue for Dark Mode */
    --secondary-color: #3b82f6;
    /* Bright Blue */
    --accent-color: #fbbf24;
    /* Lighter Gold/Amber */

    --bg-main: #0f172a;
    /* Deep Navy Background */
    --bg-section: #1e293b;
    /* Dark Slate Section */
    --bg-card: #1e293b;
    /* Dark Card Background */
    --bg-nav: rgba(15, 23, 42, 0.95);
    /* Dark Navbar */

    --text-main: #f1f5f9;
    /* White-ish Text */
    --text-secondary: #cbd5e1;
    /* Light Gray Text */
    --text-muted: #94a3b8;
    /* Muted Gray */
    --text-light: #f1f5f9;
    /* Keep light text light */

    --border-color: #334155;
    /* Dark Borders */
    --shadow-color: rgba(0, 0, 0, 0.3);
    /* Dark Shadows */
    --shadow-strong: rgba(0, 0, 0, 0.5);
    /* Strong Dark Shadows */

    /* Additional variables for specific sections */
    --bg-off-white: #1e293b;
    --text-dark: #f1f5f9;
    --bg-secondary: #334155;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ensure no text is ever transparent or invisible */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input,
textarea {
    opacity: 1 !important;
    /* Force visibility */
}

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

ul {
    list-style: none;
}

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

/* Typography hints */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Use highlighting class */
.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

/* =========================================
   2. REUSABLE COMPONENTS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--neon-blue);
}

.btn:active,
.btn.click-intensify {
    transform: translateY(0) scale(0.98);
    box-shadow: var(--neon-intensify) !important;
    transition: all 0.1s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--shadow-strong);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--neon-orange);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-color);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.nav-left {
    display: flex;
    gap: 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.nav-cta-btn {
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
    box-shadow: var(--neon-orange) !important;
}

@media (max-width: 768px) {
    .nav-cta-btn {
        display: none; /* Hide on small mobile to save space, or adjust as needed */
    }
}

.edit-btn,
.launch-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.edit-btn:hover,
.launch-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(252, 163, 17, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #1e293b;
    /* Dark Slate Blue from image */
    color: white;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #4ade80;
    /* Teal/Green logo icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: white;
    line-height: 1;
}

.logo-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #4ade80;
    /* Teal/Green subtitle */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: 'Courier Prime', monospace;
    /* Monospace font for headline from image */
}

.hero-headline .highlight {
    color: #2dd4bf;
    /* Teal color for Actionable Insights */
    display: block;
    font-family: 'Courier Prime', monospace;
}

.hero-intro {
    font-size: 1.15rem;
    color: #cbd5e1;
    /* Light gray text */
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: none;
    border-bottom: none;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    /* Orange color */
    margin: 0;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    background: #f97316;
    /* Orange background */
    color: white;
    box-shadow: 0 4px 15px var(--shadow-strong);
    border: none;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-strong);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1e293b;
}

.footer-icons {
    display: flex;
    gap: 20px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #94a3b8;
    transition: all 0.3s;
}

.footer-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--neon-cyan);
}

.hero-image {
    position: relative;
    z-index: 10;
}

.image-container {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 4px solid #2dd4bf;
    /* Teal border from image */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   5. SKILLS SECTION
   ========================================= */
.skills-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.skills-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.skills-icon {
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.skills-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.skill-category {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.category-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
}

.skill-info i {
    width: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* =========================================
   6. PROJECTS SECTION
   ========================================= */
.projects-section {
    padding: 100px 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.projects-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.projects-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-strong);
    /* Stronger shadow */
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-strong);
    /* Lift effect */
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px var(--shadow-strong);
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: #f1f5f9;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.project-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(252, 163, 17, 0.5);
    transform: scale(1.05);
}

.projects-cta {
    text-align: center;
    margin-top: 60px;
}

/* =========================================
   7. SOCIAL PLATFORMS & FOOTER
   ========================================= */
.social-platforms {
    background: var(--primary-color);
    padding: 60px 0;
    text-align: center;
}

.social-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icon-large {
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
}

.social-icon-large:hover {
    opacity: 1;
    transform: translateY(-5px);
    color: var(--accent-color);
}

.footer {
    background: #0b1120;
    /* Very dark blue */
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-link-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-center p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   8. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .image-container {
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }

    .logo-section,
    .stats,
    .cta-buttons,
    .footer-icons {
        justify-content: center;
    }

    .hero-headline {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .projects-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================================
   9. PROJECTS PAGE SPECIFIC
   ========================================= */
.projects-hero {
    background-color: #f8fafc;
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--shadow-color);
}

.projects-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.projects-hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.projects-stats-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-pill {
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.stat-pill i {
    color: var(--accent-color);
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: var(--bg-card);
    border-bottom: 1px solid #f1f5f9;
}

.search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-bar input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.search-bar input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.filters-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Custom Select */
.custom-select {
    position: relative;
    min-width: 180px;
    font-family: var(--font-body);
}

.select-selected {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-main);
}

.select-selected:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: var(--bg-card);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f8fafc;
}

.select-items div:hover {
    background-color: #f1f5f9;
}

/* Project Toolbar */
.project-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

.projects-count {
    font-weight: 600;
    color: var(--text-secondary);
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loading-state {
    text-align: center;
    padding: 60px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}


/* Layout Cleanup Merges */
.collaboration-section {
    padding: 80px 0;
    background-color: #f1f5f9;
    text-align: center;
}

.dark-footer {
    background-color: var(--primary-color);
}

.navbar.redesigned-navbar {
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

/* =========================================
   10. SKILLS PAGE SPECIFIC
   ========================================= */
.hidden {
    display: none !important;
}

.skills-hero {
    padding: 120px 0 40px;
    background: var(--bg-card);
    text-align: center;
}

.skills-page-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.skills-page-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.skills-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.skills-nav-item {
    padding: 14px 28px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--border-color);
    color: #64748b;
    /* Text Gray */
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.skills-nav-item i {
    font-size: 1.1em;
}

.skills-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.skills-nav-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(22, 33, 62, 0.2);
    transform: translateY(-2px);
}

.skills-nav-item.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(22, 33, 62, 0.3);
}

.tab-section {
    padding: 60px 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-center {
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle-center {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Detailed Cards for Skills Page */
.skills-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.skill-card-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: all 0.3s;
    cursor: pointer;
}

.skill-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
    border-color: var(--accent-color);
}

.skill-card-header {
    margin-bottom: 20px;
}

.skill-card-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.skill-metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.skill-project-count {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.view-details-btn {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.visible {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.modal-title {
    margin: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-section {
    margin-top: 25px;
}

.modal-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid var(--accent-color);
}


.timeline-meta .timeline-dot {
    display: none;
}

/* =========================================
   11. ABOUT PAGE REDESIGN
   ========================================= */

/* Hero Section */
.about-section {
    padding: calc(var(--header-height) + 80px) 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #115e59 100%);
    /* Deep Blue to Teal gradient */
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-kicker {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5eead4;
    /* Teal Accent */
    margin-bottom: 15px;
    font-weight: 600;
}

body.dark-mode .about-kicker {
    color: #2dd4bf;
}

.about-title {
    font-family: 'Courier Prime', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.about-role {
    font-size: 1.5rem;
    color: #ccfbf1;
    /* Light Teal */
    margin-bottom: 30px;
    font-weight: 500;
}

body.dark-mode .about-role {
    color: #99f6e4;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 90%;
}

.about-badges {
    display: flex;
    gap: 20px;
}

.about-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    min-width: 140px;
}

.about-badge-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

body.dark-mode .about-badge-label {
    color: #94a3b8;
}

.about-badge-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

body.dark-mode .about-badge-value {
    color: #f1f5f9;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-frame {
    width: 400px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Background Pattern/Glow */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Timeline / Journey Section */
.journey-section {
    padding: 100px 0;
    background: #f8fafc;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-title {
    font-family: 'Courier Prime', monospace;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.journey-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    /* Light gray line */
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
    position: relative;
}

.timeline-item.left {
    justify-content: flex-start;
    padding-right: 50%;
}

.timeline-item.right {
    justify-content: flex-end;
    padding-left: 50%;
}

.timeline-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    width: 90%;
    position: relative;
    margin: 0 30px;
    /* Spacing from center line */
}

body.dark-mode .timeline-card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dots on the line */
.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

body.dark-mode .timeline-dot {
    background: #0f172a;
    border-color: #60a5fa;
}

.timeline-item.left .timeline-dot {
    right: -39px;
    /* 30px margin + 9px to center on line */
}

.timeline-item.right .timeline-dot {
    left: -39px;
}

.timeline-date {
    display: inline-block;
    background: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px var(--shadow-strong);
    text-align: center;
    transition: transform 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: #0f766e;
    /* Dark Teal */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}

.philosophy-card-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.philosophy-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Skills Matrix Styling (Redesign) */
.skills-matrix-section {
    padding: 100px 0;
    background: #f8fafc;
}

.skills-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0f172a;
    /* Dark Blue */
    color: white;
    border-color: #0f172a;
}

.skills-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.skill-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.skill-icon-small {
    width: 40px;
    height: 40px;
    background: #f0fdfa;
    /* Light Teal bg */
    color: #0d9488;
    /* Teal Icon */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-header-info {
    flex: 1;
}

.skill-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.skill-category-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.skill-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.skill-badge.expert {
    background: #dcfce7;
    color: #166534;
}

/* Green */
.skill-badge.advanced {
    background: #e0f2fe;
    color: #075985;
}

/* Blue */

.skill-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex: 1;
}

.skill-progress-container {
    margin-top: auto;
}

.skill-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.skill-progress-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress-fill {
    height: 100%;
    background: #0d9488;
    /* Teal Fill */
    border-radius: 3px;
}

/* Impact Section (Zig Zag) */
.impact-section {
    padding: 100px 0;
    background: white;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-item:nth-child(even) .impact-content {
    order: 2;
    /* Content on right */
}

.impact-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fix ordering for even items via CSS Grid areas or implicit flow */
/* Actually, the best way for alternating in grid 2-col:
   Odd: [Image] [Content]
   Even: [Content] [Image]
   This assumes HTML order is consistent (Image first in HTML or consistent structure).
   If HTML is: .impact-item > .impact-image + .impact-content
*/
.impact-item:nth-child(even) .impact-image {
    order: 2;
}

.impact-item:nth-child(even) .impact-content {
    order: 1;
}


.impact-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.impact-icon {
    width: 40px;
    height: 40px;
    background: #ffedd5;
    /* Light Orange */
    color: #c2410c;
    /* Dark Orange icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.impact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.impact-example {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #475569;
}

/* Responsiveness for new sections */
@media (max-width: 991px) {
    .about-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-badges {
        justify-content: center;
    }

    .impact-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impact-title-group {
        justify-content: center;
    }

    /* Reset order for mobile */
    .impact-item:nth-child(even) .impact-content {
        order: 0;
    }

    .impact-item:nth-child(even) .impact-image {
        order: 0;
    }

    .about-image {
        margin-top: 40px;
    }

    .about-image-frame {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
        padding-right: 0 !important;
        align-items: flex-start;
        text-align: left;
    }

    .timeline-card {
        width: 100%;
        margin: 0;
    }

    .timeline-item.left .timeline-card::after,
    .timeline-item.right .timeline-card::after {
        left: -38px;
        /* Align to the left line */
        right: auto;
    }
}

/* =========================================
   12. ABOUT PAGE ADDITIONAL SECTIONS
   ========================================= */

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: #f8fafc;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.roadmap-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.roadmap-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.roadmap-icon {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.roadmap-badge {
    background: var(--bg-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.roadmap-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.roadmap-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.roadmap-milestones {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.milestone-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.milestone-list {
    list-style: none;
    padding: 0;
}

.milestone-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.milestone-list li i {
    color: #10b981;
    /* Green check */
    margin-top: 4px;
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    border: 1px solid #f8fafc;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-profile img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.testimonial-name {
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #0d9488;
    /* Teal */
    margin: 0;
}

.testimonial-rating {
    color: #f59e0b;
    /* Amber/Gold */
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}


/* Mentorship Section (Dark Theme) */
.mentorship-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #115e59 100%);
    /* Matching Hero Gradient */
    color: white;
    text-align: center;
}

.mentorship-title {
    font-family: 'Courier Prime', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.mentorship-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.8);
}

.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mentorship-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s;
}

.mentorship-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.mentorship-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 20px;
}

.mentorship-card-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.mentorship-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.mentorship-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #f97316;
    /* Orange */
    color: white;
    font-weight: 700;
    border-radius: 8px;
    /* Slightly squarer radius from ref */
    transition: all 0.3s;
}

.mentorship-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    color: white;
}


/* Resume Section */
.resume-section {
    padding: 100px 0;
    background: white;
}

.resume-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px var(--shadow-color);
    max-width: 900px;
    /* Constrained width */
    margin: 0 auto;
}

.resume-content {
    flex: 1;
}

.resume-title {
    font-family: 'Courier Prime', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resume-subtitle {
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 30px;
}

.resume-features {
    display: flex;
    gap: 40px;
}

.resume-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.resume-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    /* The specific icons used colored in ref, keeping simple for now */
    color: #3b82f6;
    /* Blueish for icons */
}

.resume-feature:nth-child(2) i {
    color: #10b981;
}

.resume-feature:nth-child(3) i {
    color: #f97316;
}


.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.resume-btn:hover {
    background: #1e293b;
    opacity: 0.9;
    color: white;
}

/* Response Fixes */
@media (max-width: 768px) {
    .resume-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .resume-features {
        justify-content: center;
        margin-bottom: 30px;
    }

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

/* Response Fixes */

/* =========================================
   13. SKILLS PAGE REDESIGN & BLOG
   ========================================= */

/* Tech Stack Redesign */
.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.tech-category-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.tech-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.tech-cat-icon {
    font-size: 1.5rem;
    color: #0d9488;
    /* Teal */
}

.tech-cat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.tech-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-item-main {
    display: flex;
    flex-direction: column;
}

.tech-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.tech-icon-small {
    font-size: 1.2rem;
    color: #64748b;
}

.tech-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.tech-experience {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 28px;
    /* Indent to align with text */
}

.tech-tags {
    display: flex;
    gap: 8px;
}

.tech-tag {
    background: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
}


/* Certifications Redesign */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.certification-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.cert-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #f1f5f9;
}

.cert-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cert-issuer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.cert-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.verify-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 10px;
    background: #0d9488;
    /* Teal */
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.verify-btn:hover {
    background: #0f766e;
    color: white;
}

.verify-btn.disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}


/* Learning Paths Redesign */
.learning-journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.journey-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.journey-grid .journey-card {
    padding: 0;
}

.journey-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.journey-icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-card)7ed;
    /* Light Orange */
    color: #c2410c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.journey-step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.journey-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.journey-list {
    list-style: none;
    padding: 0;
}

.journey-list li {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.journey-list li i {
    color: #10b981;
    /* Green check */
    margin-top: 4px;
}


.journey-image-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.journey-card:hover .journey-image {
    transform: scale(1.05);
}

/* Technical Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-thumbnail-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-tag {
    font-size: 0.8rem;
    color: #0d9488;
    background: #f0fdfa;
    padding: 2px 8px;
    border-radius: 4px;
}

.blog-btn {
    width: 100%;
    padding: 12px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.blog-btn:hover {
    background: #ea580c;
}

/* Response Fixes */

/* =========================================
   14. CONTACT PAGE REDESIGN
   ========================================= */

/* Contact Hero (Dark Theme) */
.contact-hero {
    padding: calc(var(--header-height) + 60px) 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #115e59 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.contact-text-content {
    text-align: left;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 25px;
    color: #ccfbf1;
    /* Light Teal */
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-hero-title {
    font-family: 'Courier Prime', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.contact-hero-title .highlight {
    color: #2dd4bf;
    /* Teal Highlight */
}

.contact-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-info-boxes {
    display: flex;
    gap: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-box-icon {
    font-size: 1.5rem;
    color: #f97316;
    /* Orange */
}

.info-box-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0;
    margin-bottom: 2px;
}

.info-box-text p {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.contact-hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.contact-hero-image {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.1);
}


/* Contact Grid (Info & Map) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
}

/* Override dark theme specific logic from old CSS if any, stick to light card on dark/light logic */
/* In previous block .contact-info-card was transparent. We want opaque white now if it's over the dark bg? 
   Actually, the design shows this part might be below Hero or overlapping.
   Let's assume it's a standard section below hero. */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f0fdfa;
    color: #0d9488;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--primary-color);
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.contact-details a:hover {
    color: #0d9488;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 40px var(--shadow-color);
}


/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: left;
    margin-bottom: 40px;
}

.form-title {
    font-family: 'Courier Prime', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-description {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.inquiry-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.inquiry-option {
    display: none;
}

.inquiry-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.inquiry-option:checked+.inquiry-label {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    color: var(--primary-color);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-col {
    flex: 1;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #1e293b;
    /* Darker */
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Courier Prime', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-subtitle {
    color: var(--text-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.faq-question::after {
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    margin-top: 0;
    padding-top: 20px;
}


/* FAQ Contact Box */
.faq-contact-box {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.faq-contact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.faq-contact-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.faq-contact-link {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-contact-link:hover {
    text-decoration: underline;
}

/* Response Fixes */
@media (max-width: 991px) {
    .contact-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-text-content {
        text-align: center;
    }

    .contact-info-boxes {
        justify-content: center;
    }

    .contact-hero-image-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

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

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================
   EXPERIENCE PAGE STYLES
   ========================================= */

/* Hero Section */
.exp-hero {
    background: linear-gradient(135deg, #1e4b5f 0%, #e89a3c 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.exp-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Courier Prime', monospace;
    /* Matching the font in image */
}

.exp-subheadline {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats Section */
.exp-stats-section {
    padding: 0 0 60px;
    /* Overlap effect if needed, but let's keep simple first */
    margin-top: -40px;
    /* Pull up into hero */
    position: relative;
    z-index: 2;
}

.exp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.exp-stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.exp-stat-card:hover {
    transform: translateY(-5px);
}

.exp-stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Specific icon colors based on position/type */
.exp-stat-card:nth-child(1) .exp-stat-icon {
    color: #1e4b5f;
}

.exp-stat-card:nth-child(2) .exp-stat-icon {
    color: #2ecc71;
}

.exp-stat-card:nth-child(3) .exp-stat-icon {
    color: #e67e22;
}

.exp-stat-card:nth-child(4) .exp-stat-icon {
    color: #27ae60;
}

.exp-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.exp-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Filter Bar */
.exp-filter-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.exp-filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
}

.exp-filter-btn {
    border: none;
    background: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.exp-filter-btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    box-shadow: var(--neon-blue);
    transform: translateY(-2px);
}

.exp-filter-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--neon-blue);
}

/* Timeline Section */
.exp-timeline-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
    /* Space for the vertical line */
}

/* Vertical Line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 0 0 4px white;
    /* Cleaner border effect */
}

.icon-briefcase {
    background-color: #1e4b5f;
}

.icon-grad {
    background-color: #2ecc71;
}

/* Teal/Green */
.icon-book {
    background-color: #e67e22;
}

/* Orange */
.icon-heart {
    background-color: #27ae60;
}

/* Green */
.icon-cert {
    background-color: #e67e22;
}

.timeline-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.timeline-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: background 0.2s;
}

.timeline-header:hover {
    background: #f8fafc;
}

.timeline-title-group h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.timeline-org {
    display: block;
    color: #2ecc71;
    /* Matching the green text color in image */
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.timeline-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.timeline-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.accordion-icon {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    margin-top: 5px;
}

.timeline-body {
    padding: 0 20px 20px;
    color: var(--text-main);
    display: none;
    /* Hidden by default */
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.timeline-body.active {
    display: block;
}

/* Footer CTA */
.exp-footer-cta {
    text-align: center;
    padding: 80px 0;
    background: white;
}

.exp-cta-headline {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Courier Prime', monospace;
}

.exp-cta-sub {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.exp-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Button Variants */
.btn-primary-dark {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    /* Slightly squarer as per design */
    font-weight: 500;
    transition: opacity 0.3s;
}

.btn-primary-dark:hover {
    opacity: 0.9;
}

.btn-outline-dark {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    border-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .exp-headline {
        font-size: 2rem;
    }

    .timeline-container {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -30px;
    }

    .exp-filter-bar {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .exp-filter-btn {
        white-space: nowrap;
    }
}

/* =========================================
    TAB & TESTIMONIAL STYLES (EXPERIENCE PAGE)
   ========================================= */

/* Tab Content Animation */
.tab-content {
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Testimonial Section */
#testimonials {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px var(--shadow-color);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    /* Quote icon from FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: #f1f5f9;
    position: absolute;
    top: 20px;
    left: 20px;
}

.stars {
    color: #f6b93b;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.author-role {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.author-company {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.testimonial-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
    width: 25px;
    /* Elongated active dot */
    border-radius: 5px;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* =========================================
   DARK MODE
   ========================================= */
/* Dark Mode Styles Moved to variables at top */


body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .skills-title,
body.dark-mode .category-title,
body.dark-mode .project-title,
body.dark-mode .projects-title,
body.dark-mode .contact-hero-title,
body.dark-mode .about-title,
body.dark-mode .timeline-heading,
body.dark-mode .philosophy-card-title,
body.dark-mode .skill-card-title,
body.dark-mode .mentorship-card-title,
body.dark-mode .resume-title,
body.dark-mode .projects-hero-title,
body.dark-mode .journey-title,
body.dark-mode .impact-title,
body.dark-mode .roadmap-title,
body.dark-mode .testimonial-name,
body.dark-mode .testimonial-role {
    color: #f1f5f9 !important;
}

body.dark-mode .projects-hero-description,
body.dark-mode .about-description,
body.dark-mode .journey-subtitle,
body.dark-mode .timeline-text,
body.dark-mode .philosophy-card-text,
body.dark-mode .skill-card-desc,
body.dark-mode .impact-text,
body.dark-mode .roadmap-desc,
body.dark-mode .testimonial-text,
body.dark-mode .mentorship-card-desc,
body.dark-mode .resume-subtitle {
    color: #cbd5e1 !important;
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .nav-links a {
    color: #f1f5f9;
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active {
    color: var(--accent-color);
}

body.dark-mode .skill-category,
body.dark-mode .project-card,
body.dark-mode .contact-info-card,
body.dark-mode .philosophy-card,
body.dark-mode .skill-card,
body.dark-mode .mentorship-card,
body.dark-mode .resume-card,
body.dark-mode .testimonial-card,
body.dark-mode .timeline-card,
body.dark-mode .skill-card-detailed {
    background-color: #1e293b;
    border-color: #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .timeline-item.left .timeline-card::after {
    border-left-color: #1e293b;
}

body.dark-mode .timeline-item.right .timeline-card::after {
    border-right-color: #1e293b;
}

body.dark-mode .project-overlay {
    background: rgba(30, 41, 59, 0.95);
    color: #f1f5f9;
}

body.dark-mode .progress-bar {
    background: #334155;
}

body.dark-mode .tag {
    background: #334155;
    color: #f1f5f9;
}

body.dark-mode .social-platforms {
    background: #1e293b;
}

body.dark-mode .footer {
    background: #0b1120;
    border-top: 1px solid #334155;
}

body.dark-mode .theme-toggle-btn {
    color: #f1f5f9;
}

body.dark-mode .theme-toggle-btn:hover {
    color: #fbbf24;
    /* Sun color */
}

/* Resume Section Styles */
.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.resume-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

body.dark-mode .resume-card {
    background: #1e293b;
    border-color: #334155;
}

.resume-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.resume-icon {
    width: 70px;
    height: 70px;
    background: #f0fdfa;
    /* Light Teal background */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: background 0.3s, color 0.3s;
}

body.dark-mode .resume-icon {
    background: rgba(45, 212, 191, 0.1);
}

.resume-card:hover .resume-icon {
    background: var(--primary-color);
    color: white;
}

.resume-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.resume-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* =========================================
   DARK MODE INTERACTION FIXES
   ========================================= */

/* DARK MODE INTERACTION FIXES - Consistently using .dark-mode */
body.dark-mode .about-section,
body.dark-mode .journey-section,
body.dark-mode .philosophy-section,
body.dark-mode .impact-section,
body.dark-mode .roadmap-section,
body.dark-mode .testimonials-section,
body.dark-mode .mentorship-section,
body.dark-mode .resume-section,
body.dark-mode .projects-hero,
body.dark-mode .filter-section,
body.dark-mode .project-toolbar,
body.dark-mode .projects-listing,
body.dark-mode .skills-matrix-section,
body.dark-mode .tech-stack-section,
body.dark-mode .certifications-section,
body.dark-mode .learning-section,
body.dark-mode .blog-section,
body.dark-mode .radar-chart-section,
body.dark-mode .detailed-skills-section,
body.dark-mode .exp-stats-section,
body.dark-mode .exp-filter-section,
body.dark-mode .exp-timeline-section,
body.dark-mode .exp-footer-cta,
body.dark-mode .faq-section {
    background-color: #0f172a;
    border-color: #334155;
}

/* Individual Card Styling for Dark Mode */
body.dark-mode .skill-card,
body.dark-mode .skill-card-detailed,
body.dark-mode .roadmap-card,
body.dark-mode .project-card,
body.dark-mode .testimonial-card,
body.dark-mode .philosophy-card,
body.dark-mode .resume-card,
body.dark-mode .contact-info-card,
body.dark-mode .contact-form-container,
body.dark-mode .skill-category,
body.dark-mode .mentorship-card,
body.dark-mode .timeline-card,
body.dark-mode .certification-card,
body.dark-mode .tech-category-card,
body.dark-mode .journey-card,
body.dark-mode .blog-card,
body.dark-mode .exp-stat-card,
body.dark-mode .exp-filter-bar,
body.dark-mode .timeline-content,
body.dark-mode .skill-card-detailed {
    background-color: #1e293b;
    border-color: #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Filter Buttons & Interactive Elements */
body.dark-mode .filter-btn,
body.dark-mode .search-bar input {
    background-color: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

body.dark-mode .search-bar input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Component Details */
body.dark-mode .skill-icon-small,
body.dark-mode .roadmap-icon {
    background: rgba(15, 23, 42, 0.5);
    color: #60a5fa;
}

body.dark-mode .skill-category-label,
body.dark-mode .milestone-label {
    color: #94a3b8;
}

body.dark-mode .skill-badge.expert {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

body.dark-mode .skill-badge.advanced {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

body.dark-mode .skill-progress-label {
    color: #60a5fa !important;
}

body.dark-mode .skill-progress-bar {
    background: #334155;
}

body.dark-mode .roadmap-badge {
    background: #334155;
    color: #cbd5e1;
}

body.dark-mode .roadmap-milestones {
    border-top-color: #334155;
}

body.dark-mode .milestone-list li {
    color: #cbd5e1 !important;
}

body.dark-mode .cert-title {
    color: var(--text-main);
}

body.dark-mode .cert-issuer,
body.dark-mode .cert-date {
    color: var(--text-secondary);
}

body.dark-mode .cert-image {
    border-bottom-color: #334155;
}

body.dark-mode .verify-btn.disabled {
    background: #334155;
    color: #64748b;
}

/* Tech Stack Specifics */
body.dark-mode .tech-category-header {
    border-bottom-color: #334155;
}

body.dark-mode .tech-icon-small {
    color: var(--text-secondary);
}

body.dark-mode .tech-tag {
    color: var(--text-secondary);
}

/* Journey & Blog Specifics */
body.dark-mode .journey-list li,
body.dark-mode .blog-excerpt {
    color: var(--text-secondary);
}

body.dark-mode .journey-icon-box {
    background: rgba(15, 23, 42, 0.5);
    color: #ccfbf1;
}

body.dark-mode .journey-step-number {
    background: var(--primary-color);
    color: #0f172a;
}

body.dark-mode .blog-meta {
    border-top-color: #334155;
}

body.dark-mode .blog-tag {
    background: #0f172a;
    color: #2dd4bf;
}

/* Modal Specifics */
body.dark-mode .modal-content {
    background-color: #1e293b;
    border: 1px solid #334155;
}

body.dark-mode .modal-header {
    border-bottom-color: #334155;
}

body.dark-mode .modal-list li {
    background: #0f172a;
    color: var(--text-secondary);
}

body.dark-mode .blog-modal-meta span {
    color: var(--text-secondary);
}

/* Experience Page Specifics */
body.dark-mode .exp-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .exp-stat-number {
    color: var(--text-main);
}

body.dark-mode .exp-stat-label,
body.dark-mode .exp-filter-btn {
    color: var(--text-secondary);
}

body.dark-mode .exp-filter-btn.active {
    background: var(--primary-color);
    color: #0f172a;
}

body.dark-mode .timeline-container::before {
    background: #334155;
}

body.dark-mode .timeline-marker {
    box-shadow: 0 0 0 4px #1e293b;
}

body.dark-mode .timeline-header:hover {
    background: #1e293b;
}

body.dark-mode .timeline-org {
    color: #2dd4bf; /* Brighter Teal for dark mode */
}

body.dark-mode .timeline-body {
    border-top-color: #334155;
}

body.dark-mode .author-role,
body.dark-mode .author-company {
    color: var(--text-secondary);
}

/* Contact Page Specifics */
body.dark-mode .faq-item {
    background-color: #1e293b;
    border-color: #334155;
}

body.dark-mode .faq-item[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: #475569;
}

body.dark-mode .faq-answer {
    border-top-color: #334155;
    color: var(--text-secondary);
}

body.dark-mode .faq-contact-box {
    background-color: #1e293b;
    border-color: #334155;
}

body.dark-mode .faq-contact-link {
    color: #60a5fa;
}

body.dark-mode .inquiry-label {
    background-color: #0f172a;
    color: var(--text-secondary);
    border-color: #334155;
}

body.dark-mode .inquiry-option:checked + .inquiry-label {
    background-color: var(--primary-color);
    color: #0f172a;
    border-color: var(--primary-color);
}

/* Form Styling */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #1e293b;
    color: #f1f5f9;
    border-color: #334155;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #64748b;
}

/* Footer & Toast Correction */
body.dark-mode .site-footer {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

body.dark-mode .toast {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .stat-pill {
    background: #1e293b;
    border-color: #334155;
    color: #60a5fa;
}

body.dark-mode .search-bar input::placeholder {
    color: #94a3b8;
}

body.dark-mode .select-selected {
    background-color: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

body.dark-mode .select-items {
    background-color: #1e293b;
    border-color: #334155;
}

body.dark-mode .select-items div {
    border-bottom-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .select-items div:hover {
    background-color: #334155;
    color: #f1f5f9;
}

body.dark-mode .projects-count,
body.dark-mode .sort-label {
    color: #cbd5e1;
}

body.dark-mode .no-results,
body.dark-mode .loading-state {
    color: #cbd5e1;
}

body.dark-mode .contact-details a {
    color: var(--text-secondary);
}

body.dark-mode .social-links-contact a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

body.dark-mode .social-links-contact a:hover {
    background: var(--accent-color);
    color: #fff;
}

body.dark-mode .filter-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-main);
}

body.dark-mode .skill-card-detailed:hover {
    background: var(--bg-nav);
    border-color: var(--accent-color);
}

/* View Details Button */
.view-details-btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: var(--bg-card);
}

body.dark-mode .view-details-btn:hover {
    background: var(--primary-color);
    /* White in dark mode */
    color: #000;
    /* Force black text */
    font-weight: 700;
}

/* Form Inputs */
body.dark-mode input:focus,
body.dark-mode textarea:focus {
    border-color: var(--accent-color);
    background-color: var(--bg-card);
}

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    border-left: 4px solid var(--accent-color);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    background: #e6fffa;
    color: #38b2ac;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Success Toast */
.toast.success {
    border-left-color: #38b2ac;
}

.toast.success .toast-icon {
    background: #e6fffa;
    color: #38b2ac;
}

/* Error Toast */
.toast.error {
    border-left-color: #e53e3e;
}

.toast.error .toast-icon {
    background: #fff5f5;
    color: #e53e3e;
}

/* Dark Mode Toast */

/* Dark Mode Toast */
body.dark-mode .toast {
    background: var(--bg-card-dark, #1e293b);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   PREMIUM FOOTER (Global)
   ========================================= */
/* =========================================
   PREMIUM SaaS-STYLE FOOTER (Global)
   ========================================= */
.site-footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, #0f172a 100%);
    background-color: #0f172a;
    color: #f8fafc;
    padding: 80px 0 0; /* Padding bottom handled by copyright section */
    position: relative;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 40px 40px 0 0; /* Modern rounded top */
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.05);
    margin-top: 80px;
}

.site-footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding: 0 40px 60px;
}

/* Column 1: Brand & Socials */
.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-subtitle {
    font-size: 1rem;
    color: #6366f1; /* Indigo 500 */
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #94a3b8;
    max-width: 420px;
    margin-bottom: 30px;
}

/* Social Icons with Neon Glow */
.footer-social-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px; /* Matches Home Section style */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.footer-social-link svg {
    width: 40px; /* Filled the box as requested */
    height: 40px;
    transition: all 0.3s ease;
}

.footer-social-link i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* Default (rest state) brand tints */
.footer-social-link.linkedin  { color: #0A66C2; border-color: rgba(10,102,194,0.25); }
.footer-social-link.github    { color: #e0e0e0; border-color: rgba(224,224,224,0.2); }
.footer-social-link.twitter   { color: #a0a0a0; border-color: rgba(160,160,160,0.2); }
.footer-social-link.email     { color: #EA4335; border-color: rgba(234,67,53,0.25); }
.footer-social-link.phone     { color: #25D366; border-color: rgba(37,211,102,0.25); }
.footer-social-link.instagram { color: #E1306C; border-color: rgba(225,48,108,0.25); }

/* Hover brand glow */
.footer-social-link.linkedin:hover  { background: rgba(10,102,194,0.12);  border-color: #0A66C2;  box-shadow: 0 0 18px rgba(10,102,194,0.4);  }
.footer-social-link.github:hover    { background: rgba(255,255,255,0.08);  border-color: #ffffff;   box-shadow: 0 0 18px rgba(255,255,255,0.25); color: #fff; }
.footer-social-link.twitter:hover   { background: rgba(0,0,0,0.35);        border-color: #ffffff;   box-shadow: 0 0 18px rgba(255,255,255,0.2);  color: #fff; }
.footer-social-link.email:hover     { background: rgba(234,67,53,0.12);    border-color: #EA4335;   box-shadow: 0 0 18px rgba(234,67,53,0.4);    }
.footer-social-link.phone:hover     { background: rgba(37,211,102,0.12);   border-color: #25D366;   box-shadow: 0 0 18px rgba(37,211,102,0.4);   }
.footer-social-link.instagram:hover { background: rgba(225,48,108,0.12);   border-color: #E1306C;   box-shadow: 0 0 18px rgba(225,48,108,0.4);   }

/* Brand overrides for SVGs */
.footer-social-link.linkedin svg   { fill: #0A66C2; }
.footer-social-link.github svg     { fill: #ffffff; }
.footer-social-link.twitter svg    { fill: #ffffff; }
.footer-social-link.email svg      { stroke: #EA4335; }
.footer-social-link.phone svg      { stroke: #25D366; }
.footer-social-link.instagram svg  { stroke: #E1306C; }

.footer-social-link.github:hover svg     { fill: #ffffff !important; }
.footer-social-link.twitter:hover svg    { fill: #ffffff !important; }
.footer-social-link.email:hover svg      { stroke: #EA4335 !important; }
.footer-social-link.phone:hover svg      { stroke: #25D366 !important; }
.footer-social-link.instagram:hover svg  { stroke: #E1306C !important; }

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation Columns */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #6366f1;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px #6366f1;
}

.footer-col a:hover {
    color: #f8fafc;
    transform: translateX(5px);
}

.footer-col a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top-wrap {
    margin-top: 30px;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a78bfa;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-to-top-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Legal Buttons Style */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

.legal-btn:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.5);
    color: #f8fafc;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.legal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: 0.5s;
}

.legal-btn:hover::before {
    left: 100%;
}

/* Legal Modal System */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: rgba(30, 41, 59, 0.7);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalFadeUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalFadeUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    padding: 25px 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #f8fafc;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-body {
    padding: 35px;
    overflow-y: auto;
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
}

.modal-body h3 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #6366f1, #a78bfa, transparent) 1;
    letter-spacing: 0.03em;
}

.modal-body ul {
    margin-bottom: 25px;
}

.modal-body li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.modal-body li::before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

@media (max-width: 1024px) {
    .site-footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 30px 50px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-legal {
        grid-column: span 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .legal-btn {
        max-width: 210px;
    }
}

@media (max-width: 768px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-legal {
        grid-column: span 1;
        justify-content: flex-start;
        flex-direction: column;
    }
    .legal-btn {
        max-width: 100%;
    }
    .footer-social-row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* Bottom Bar */
.footer-bottom {
    padding: 28px 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    text-align: center;
    background: rgba(15, 23, 42, 0.5);
    margin-top: 20px;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    display: block;
}

/* Light Mode Overrides (Keep Dark Aesthetic) */
body:not(.dark-mode) .site-footer {
    background: #0f172a;
    color: #f8fafc;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .site-footer {
        border-radius: 30px 30px 0 0;
    }
}

/* =========================================
   15. JOURNEY PAGE ENHANCEMENTS
   ========================================= */

/* Journey Lightbox (Ensuring it exists) */
.journey-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-lightbox.active {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f5f9;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: #f1f5f9;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Journey Details Modal */
.journey-details-modal {
    display: none;
    position: fixed;
    z-index: 2100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.journey-details-modal.active {
    opacity: 1;
}

.details-content {
    background: #1e293b;
    margin: auto;
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.journey-details-modal.active .details-content {
    transform: translateY(0);
}

.details-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #94a3b8;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.details-close:hover {
    color: var(--accent-color);
}

.details-title {
    font-family: 'Courier Prime', monospace;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 40px;
    text-align: left;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
    display: inline-block;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-number {
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Courier Prime', monospace;
    flex-shrink: 0;
    min-width: 25px;
}

/* Scrollbar for modal */
.journey-details-modal::-webkit-scrollbar {
    width: 8px;
}

.journey-details-modal::-webkit-scrollbar-track {
    background: #0f172a;
}

.journey-details-modal::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

.journey-details-modal::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .details-content {
        padding: 30px;
    }
    
    .details-title {
        font-size: 1.6rem;
    }
    
    .details-list li {
        font-size: 0.95rem;
    }
}

/* =========================================
   8. NEON TYPING EFFECTS
   ========================================= */

.typing-container {
    position: relative;
    display: inline-block;
}

.typing-container .placeholder {
    visibility: hidden;
}

.typing-container .type-target {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: inherit;
}

/* Neon Text Colors */
.neon-text-cyan {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #2dd4bf,
        0 0 40px #2dd4bf,
        0 0 80px #2dd4bf;
    animation: neon-flicker 3s infinite alternate;
}

.neon-text-blue {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #3b82f6,
        0 0 40px #3b82f6,
        0 0 80px #3b82f6;
    animation: neon-flicker 4s infinite alternate-reverse;
}

.neon-text-green {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #4ade80,
        0 0 40px #4ade80,
        0 0 80px #4ade80;
    animation: neon-flicker 3.5s infinite alternate;
}

/* Flicker Animation for Cyberpunk aesthetic */
@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.85;
    }
}

/* Blinking cursor effect */
.typing-cursor::after {
    content: '|';
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px currentColor;
    animation: cursor-blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes cursor-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* =========================================
   MODERN PROFILE CARD CUSTOM STYLES
   ========================================= */

.glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Independent Profile Card Light Mode */
.glass-card.card-light-mode {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}

.glass-card.card-light-mode .text-white,
.glass-card.card-light-mode h2.text-white {
    color: #1e293b !important;
}

.glass-card.card-light-mode .text-slate-400 {
    color: #475569 !important;
}

.glass-card.card-light-mode .text-sky-400 {
    color: #0369a1 !important;
}

.glass-card.card-light-mode .bg-slate-800 {
    background-color: #f1f5f9 !important;
}

.glass-card.card-light-mode .bg-green-900\/40 {
    background-color: rgba(34, 197, 94, 0.15) !important;
}

.glass-card.card-light-mode .text-green-400 {
    color: #15803d !important;
}

.glass-card.card-light-mode .neon-border-green {
    border-color: rgba(34, 197, 94, 0.4) !important;
}

.glass-card.card-light-mode .profile-img-glow {
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.15) !important;
}

.glass-card.card-light-mode .hover-glow:hover {
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2) !important;
}

.neon-border {
    position: relative;
    border: 1px solid rgba(45, 212, 191, 0.5);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
}

.neon-border-green {
    border: 1px solid rgba(74, 222, 128, 0.5);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}

.neon-text-green {
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.neon-glow-blue {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

@keyframes neon-pulse {
    0% { box-shadow: 0 0 10px rgba(45, 212, 191, 0.3); }
    50% { box-shadow: 0 0 25px rgba(45, 212, 191, 0.6); }
    100% { box-shadow: 0 0 10px rgba(45, 212, 191, 0.3); }
}

.animate-neon-pulse {
    animation: neon-pulse 3s infinite;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.6);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.profile-img-glow {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}


/* =========================================
   NAVBAR ENHANCEMENTS (COLORED ICONS)
   ========================================= */
.nav-links li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: var(--bg-secondary);
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links li a:hover .nav-icon {
    transform: scale(1.2) translateY(-2px);
}

.theme-toggle-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn img {
    width: 24px;
    height: 24px;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.1);
    background: var(--border-color);
}

.theme-toggle-btn:active {
    transform: scale(0.9);
}

body.dark-mode .theme-toggle-btn {
    background: #334155;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Social Icon Hover Effects */
.social-icon-large, .social-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-large:hover, .social-btn:hover {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

/* ══════════════════════════════════════════════════════════════
   EXPERIENCE & COMMUNITY WORK — ALTERNATING TIMELINE
══════════════════════════════════════════════════════════════ */

/* Section Wrapper */
.exp-community-section {
    padding: 70px 0 50px;
    background: linear-gradient(160deg, #0f172a 0%, #111827 60%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.exp-community-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(99,102,241,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 80% 70%, rgba(34,197,94,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Section Header ── */
.exp-comm-header {
    text-align: center;
    margin-bottom: 64px;
}
.exp-comm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    color: #a78bfa;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.exp-comm-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #e5e7eb 0%, #a78bfa 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 18px;
    line-height: 1.2;
}
.exp-comm-subtitle {
    color: #9ca3af;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Alternating Timeline Container ── */
.exp-alt-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

/* Animated centre vertical line */
.exp-alt-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, #6366f1 20%, #22c55e 50%, #f59e0b 80%, transparent 100%);
    box-shadow: 0 0 12px rgba(99,102,241,0.5);
    animation: lineGlow 3s ease-in-out infinite alternate;
}
@keyframes lineGlow {
    from { box-shadow: 0 0 8px rgba(99,102,241,0.4); }
    to   { box-shadow: 0 0 22px rgba(99,102,241,0.8), 0 0 40px rgba(34,197,94,0.2); }
}

/* ── Each Row ── */
.exp-alt-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

/* LEFT card: card on left, dot on right */
.exp-alt-left {
    flex-direction: row;         /* card … dot */
    justify-content: flex-start;
}
.exp-alt-left .exp-alt-card {
    width: 44%;
    margin-right: 0;
}
.exp-alt-left .exp-alt-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* RIGHT card: dot on left, card on right */
.exp-alt-right {
    flex-direction: row;
    justify-content: flex-end;
}
.exp-alt-right .exp-alt-card {
    width: 44%;
}
.exp-alt-right .exp-alt-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Glassmorphism Card ── */
.exp-alt-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}
.exp-alt-card:hover {
    transform: translateY(-8px) scale(1.01);
}
/* Left card hover glow */
.exp-alt-left .exp-alt-card:hover {
    box-shadow:
        0 20px 60px rgba(99,102,241,0.25),
        0 0 40px rgba(99,102,241,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(99,102,241,0.4);
}
/* Right card hover glow */
.exp-alt-right .exp-alt-card:hover {
    box-shadow:
        0 20px 60px rgba(34,197,94,0.2),
        0 0 40px rgba(34,197,94,0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(34,197,94,0.35);
}

.exp-alt-card-inner {
    padding: 30px 28px;
}

/* ── Icon Circle ── */
.exp-alt-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.exp-alt-icon--violet { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); }
.exp-alt-icon--green  { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.3);  }
.exp-alt-icon--amber  { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); }

/* ── Date Badge ── */
.exp-alt-badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.exp-alt-badge--violet { background: rgba(99,102,241,0.15); color: #a78bfa; border: 1px solid rgba(99,102,241,0.3); }
.exp-alt-badge--green  { background: rgba(34,197,94,0.12);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3);  }
.exp-alt-badge--amber  { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }

/* Role & Org */
.exp-alt-role {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e5e7eb;
    margin: 0 0 6px;
    line-height: 1.3;
}
.exp-alt-org {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366f1;
    margin: 0 0 12px;
}
.exp-alt-left  .exp-alt-org { color: #a78bfa; }
.exp-alt-right .exp-alt-org { color: #4ade80; }

/* Location meta */
.exp-alt-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    color: #9ca3af;
    font-size: 0.83rem;
}
.exp-alt-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Bullet list */
.exp-alt-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.exp-alt-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    color: #d1d5db;
    line-height: 1.55;
}
.exp-alt-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-size: 0.75rem;
    top: 2px;
}
.exp-alt-right .exp-alt-bullets li::before { color: #4ade80; }

/* ── Timeline Dot ── */
.exp-alt-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.exp-alt-dot--violet { background: #6366f1; box-shadow: 0 0 14px rgba(99,102,241,0.8), 0 0 28px rgba(99,102,241,0.4); }
.exp-alt-dot--green  { background: #22c55e; box-shadow: 0 0 14px rgba(34,197,94,0.8),  0 0 28px rgba(34,197,94,0.4);  }
.exp-alt-dot--amber  { background: #f59e0b; box-shadow: 0 0 14px rgba(245,158,11,0.8), 0 0 28px rgba(245,158,11,0.4); }

.exp-alt-dot-pulse {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    animation: dotPulse 2s ease-out infinite;
}
.exp-alt-dot--violet .exp-alt-dot-pulse { background: rgba(99,102,241,0.3); }
.exp-alt-dot--green  .exp-alt-dot-pulse { background: rgba(34,197,94,0.3);  }
.exp-alt-dot--amber  .exp-alt-dot-pulse { background: rgba(245,158,11,0.3); }

@keyframes dotPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* ── Scroll Fade-in (data-aos fallback with IntersectionObserver) ── */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"]    { transform: translateY(36px); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="fade-left"]  { transform: translateX(36px); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .exp-alt-line { left: 20px; }

    .exp-alt-item,
    .exp-alt-left,
    .exp-alt-right {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 54px;
    }
    .exp-alt-left .exp-alt-card,
    .exp-alt-right .exp-alt-card {
        width: 100%;
    }
    .exp-alt-left .exp-alt-dot,
    .exp-alt-right .exp-alt-dot {
        left: 20px;
        top: 0;
        transform: translateX(-50%);
    }
    .exp-comm-title { font-size: 1.65rem; }
}

/* =========================================
   ANIMATIONS & NEON GLOWS
   ========================================= */

@keyframes na-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes na-slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes na-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes na-borderPulse {
    0% { border-color: rgba(var(--neon-rgb), 0.3); box-shadow: 0 0 15px rgba(var(--neon-rgb), 0.2); }
    50% { border-color: rgba(var(--neon-rgb), 0.6); box-shadow: 0 0 30px rgba(var(--neon-rgb), 0.4); }
    100% { border-color: rgba(var(--neon-rgb), 0.3); box-shadow: 0 0 15px rgba(var(--neon-rgb), 0.2); }
}

@keyframes na-filterFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Sequential Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Neon Glow Utility Classes */
.neon-blue { --neon-rgb: 59, 130, 246; }
.neon-orange { --neon-rgb: 249, 115, 22; }
.neon-cyan { --neon-rgb: 0, 212, 255; }
.neon-green { --neon-rgb: 34, 197, 94; }
.neon-purple { --neon-rgb: 168, 85, 247; }
.neon-red { --neon-rgb: 239, 68, 68; }

.neon-card {
    border: 1px solid rgba(var(--neon-rgb), 0.3) !important;
    box-shadow: 0 0 20px rgba(var(--neon-rgb), 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.neon-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(var(--neon-rgb), 0.6) !important;
    box-shadow: 0 0 30px rgba(var(--neon-rgb), 0.4) !important;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .sequenced, .skill-category, .skill-item, .timeline-item, 
    .neon-card, .progress-fill, .skill-progress-fill, .na-fadeInUp, 
    .na-slideInUp, .na-fadeInLeft, .na-borderPulse {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
