:root {
            --primary: #0a192f;
            --secondary: #112240;
            --accent: #64ffda;
            --gold: #ffd700;
            --success: #00c896;
            --warning: #ff6b35;
            --text-primary: #e6f1ff;
            --text-secondary: #8892b0;
            --highlight: #64ffda;
            --card-bg: #112240;
            --header-height: 70px;
        }

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

        body {
            font-family: 'Calibre', 'Inter', 'San Francisco', 'SF Pro Text', -apple-system, system-ui, sans-serif;
            background-color: var(--primary);
            color: var(--text-secondary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .digital-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.03;
            background-image: 
                linear-gradient(rgba(100, 255, 218, 0.7) 1px, transparent 1px),
                linear-gradient(90deg, rgba(100, 255, 218, 0.7) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* ============= NAVIGATION STYLES ============= */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 0 2rem;
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent);
            text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            font-weight: 500;
            border-radius: 4px;
        }

        .nav-links a:hover {
            color: var(--accent);
            background: rgba(100, 255, 218, 0.1);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ============= HERO SECTION STYLES ============= */
        /* ============= HERO SECTION STYLES ============= */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            padding-top: var(--header-height);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 3.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.1;
            text-shadow: 0 0 30px rgba(230, 241, 255, 0.3);
        }

        .hero-subtitle {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
            background: linear-gradient(45deg, var(--accent), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.6;
        }
        .highlight-institution {
            color: var(--accent);
            font-weight: 600;
            background: rgba(100, 255, 218, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            border: 1px solid rgba(100, 255, 218, 0.3);
            transition: all 0.3s ease;
        }

        .highlight-institution:hover {
            background: rgba(100, 255, 218, 0.2);
            box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            background: transparent;
            color: var(--accent);
            text-decoration: none;
            border: 2px solid var(--accent);
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(100, 255, 218, 0.3);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            animation: fadeIn 1s ease-out 0.5s both;
            position: relative;
        }

        .profile-image-container {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent), var(--gold), var(--primary));
            padding: 5px;
            position: relative;
            box-shadow: 0 20px 40px rgba(100, 255, 218, 0.3);
            overflow: hidden;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: center;
            border: 3px solid var(--primary);
        }
        
        /* Financial Elements */
        .finance-chart {
            position: absolute;
            bottom: 30px;
            right: -30px;
            width: 220px;
            height: 140px;
            background: var(--card-bg);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(100, 255, 218, 0.2);
        }

        .chart-line {
            position: absolute;
            bottom: 40px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            border-radius: 2px;
        }

        .chart-point {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            border: 2px solid var(--primary);
        }

        .chart-point:nth-child(2) { left: 15%; top: 35%; }
        .chart-point:nth-child(3) { left: 35%; top: 55%; }
        .chart-point:nth-child(4) { left: 55%; top: 25%; }
        .chart-point:nth-child(5) { left: 75%; top: 45%; }
        .chart-point:nth-child(6) { left: 90%; top: 30%; }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* ============= RESPONSIVE STYLES ============= */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 2.5rem;
            }
            
            .profile-image-container {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .hero-text {
                order: 1;
            }
            
            .hero-image {
                order: 2;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .hero-description {
                margin: 0 auto 2rem;
            }
            
            .profile-image-container {
                width: 250px;
                height: 250px;
            }
            
            .finance-chart {
                width: 180px;
                height: 120px;
                right: -20px;
                bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 0 1rem;
                padding-top: var(--header-height);
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.7rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .profile-image-container {
                width: 220px;
                height: 220px;
            }
            
            .finance-chart {
                display: none; /* Hide chart on very small screens */
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 0.9rem;
            }
        }
          /* ============= IMPROVED SECTION TITLES STYLES ============= */
        .section-title {
            font-size: 2.8rem;
            color: var(--text-primary);
            margin-bottom: 4rem;
            text-align: center;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--gold);
            border-radius: 1px;
        }

        /* ============= IMPROVED EXPERIENCE SECTION ============= */
        .experience-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .experience-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(100, 255, 218, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
        }

        .experience-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(100, 255, 218, 0.15);
        }

        .experience-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .experience-date {
            background: linear-gradient(45deg, var(--accent), var(--gold));
            color: var(--primary);
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .experience-company {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .experience-position {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .experience-tasks {
            list-style: none;
            padding: 0;
        }

        .experience-tasks li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
        }

        .experience-tasks li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* ============= COMPACT ASSOCIATIVE EXPERIENCES ============= */
.associative-section {
    margin-top: 3rem;
}

.associative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* ============= FEATURED ASSOCIATIVE CARD (Fondateur & Président) ============= */
.featured-associative-card {
    position: relative;
    margin-top: 2.5rem;
    padding: 2px;
    border-radius: 22px;
    background: linear-gradient(120deg, var(--accent), var(--gold), var(--accent));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    box-shadow: 0 0 45px rgba(100, 255, 218, 0.2), 0 25px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-associative-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 65px rgba(255, 215, 0, 0.3), 0 30px 60px rgba(0, 0, 0, 0.4);
}

.featured-content {
    position: relative;
    background: #0a0e14;
    border-radius: 20px;
    padding: 3.5rem 3rem 3rem;
    text-align: center;
    overflow: hidden;
}

.featured-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/club-finance-event.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.55;
    z-index: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.featured-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.75) 0%, rgba(5, 10, 20, 0.25) 30%, rgba(5, 10, 20, 0.35) 65%, rgba(5, 10, 20, 0.85) 100%);
    z-index: 0;
}

.featured-associative-card:hover .featured-content::before {
    opacity: 0.65;
    transform: scale(1.05);
}

.featured-corner-tl,
.featured-corner-br {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(100, 255, 218, 0.35);
    pointer-events: none;
    z-index: 1;
}

.featured-corner-tl {
    top: 14px;
    left: 14px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
}

.featured-corner-br {
    bottom: 14px;
    right: 14px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--gold), var(--accent));
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.45);
    white-space: nowrap;
    z-index: 3;
}

.featured-date {
    display: inline-block;
    position: relative;
    z-index: 1;
    background: rgba(100, 255, 218, 0.08);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.featured-title {
    position: relative;
    z-index: 1;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.featured-title span {
    display: block;
    background: linear-gradient(45deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-divider {
    width: 70px;
    height: 3px;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 3px;
    position: relative;
}

.featured-divider::before,
.featured-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.featured-divider::before { left: -14px; }
.featured-divider::after { right: -14px; }

.featured-role {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* ============= FEATURED LOGO ============= */
.featured-logo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    z-index: 2;
}

.featured-logo-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--accent), var(--gold));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    filter: blur(0.5px);
}

.featured-logo-wrap::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.35), 0 0 60px rgba(100, 255, 218, 0.2);
    pointer-events: none;
    animation: logoGlow 3s ease-in-out infinite;
}

.featured-logo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--card-bg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: logoFloat 4s ease-in-out infinite;
}

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

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.featured-description {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ============= FEATURED TASKS LIST ============= */
.featured-tasks-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.featured-tasks-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-primary);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
}

.featured-tasks-list li:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.featured-tasks-list li i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.associative-card-wrap {
    position: relative;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.5), rgba(255, 215, 0, 0.3));
    transition: all 0.4s ease;
}

.associative-card-wrap:hover {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.15);
}

.associative-card {
    position: relative;
    background: radial-gradient(circle at 50% 0%, #16305a 0%, var(--card-bg) 55%, var(--secondary) 100%);
    padding: 2.2rem 1.5rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    height: 100%;
}

.associative-date {
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(100, 255, 218, 0.08);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    letter-spacing: 0.3px;
}

.associative-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.3));
}

.associative-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.associative-divider {
    width: 45px;
    height: 3px;
    margin: 0 auto 1rem;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 3px;
    position: relative;
}

.associative-divider::before,
.associative-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.7);
}

.associative-divider::before { left: -10px; }
.associative-divider::after { right: -10px; }

.associative-role {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.associative-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

         /* Skills Grid Layout */
        .skills-main-container {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

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

        .bottom-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        /* Skill Cards */
        .skill-category {
            background: var(--card-bg);
            padding: 1.8rem;
            border-radius: 20px;
            border: 2px solid rgba(100, 255, 218, 0.3);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.1);
        }

        .skill-category:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255, 107, 157, 0.1), transparent);
            transform: rotate(-15deg);
            transition: all 0.8s ease;
            opacity: 0;
        }

        .skill-category:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px rgba(100, 255, 218, 0.15), 0 5px 15px rgba(255, 107, 157, 0.1);
            border-color: var(--accent);
        }

        .skill-category:hover:before {
            opacity: 1;
            animation: shine 1.5s forwards;
        }

        @keyframes shine {
            0% {
                left: -50%;
            }
            100% {
                left: 100%;
            }
        }

        .skill-icon {
            font-size: 2.8rem;
            color: var(--accent);
            margin-bottom: 1.2rem;
            display: block;
            transition: all 0.3s ease;
        }

        .skill-category:hover .skill-icon {
            transform: scale(1.2) rotate(5deg);
            color: #6c5ce7;
        }

        .skill-category h3 {
            color: #6c5ce7;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .skill-category h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 25%;
            width: 50%;
            height: 3px;
            background: var(--accent-secondary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .skill-category:hover h3:after {
            width: 80%;
            left: 10%;
            background: var(--accent);
        }

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

        .skills-list li {
            background: rgba(100, 255, 218, 0.1);
            margin: 0.8rem 0;
            padding: 0.9rem 1.2rem;
            border-radius: 50px;
            color: var(--text-primary);
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .skills-list li:hover {
            background: rgba(100, 255, 218, 0.15);
            transform: translateX(8px);
            border-color: var(--accent);
        }

        /* Languages Section */
        .languages-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
            margin-top: 1.5rem;
        }

        .language-item {
            background: rgba(127, 217, 226, 0.15);
            padding: 1.2rem;
            border-radius: 16px;
            color: var(--text-primary);
            border: 1px solid rgba(127, 217, 226, 0.3);
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .language-item:hover {
            background: rgba(127, 217, 226, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(127, 217, 226, 0.2);
        }

        .language-flag {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .language-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: #6c5ce7;
        }

        /* Interests Section */
        .interests-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .interests-list li {
            background: rgba(255, 107, 157, 0.1);
            margin: 0;
            padding: 1rem;
            border-radius: 16px;
            color: var(--text-primary);
            border: 1px solid rgba(255, 107, 157, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .interests-list li:hover {
            background: rgba(255, 107, 157, 0.2);
            transform: scale(1.05);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .skills-grid, .bottom-container {
                grid-template-columns: 1fr;
            }
            
            .languages-container, .interests-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .languages-container, .interests-list {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 1rem;
            }
            
            body {
                padding: 1rem;
            }
        }

        /* ============= FORMATION SECTION ============= */
        .formation-timeline {
            position: relative;
            margin: 3rem 0;
        }

        .formation-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--accent), var(--gold));
            border-radius: 2px;
        }

        .formation-item {
            position: relative;
            margin-bottom: 3rem;
            margin-left: 80px;
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(100, 255, 218, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .formation-item::before {
            content: '🎓';
            position: absolute;
            left: -65px;
            top: 2rem;
            width: 30px;
            height: 30px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            border: 4px solid var(--primary);
        }

        .formation-item:hover {
            transform: translateX(10px);
            box-shadow: 0 25px 50px rgba(100, 255, 218, 0.15);
        }

        .formation-date {
            background: linear-gradient(45deg, var(--accent), var(--gold));
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 1rem;
            display: inline-block;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .formation-school {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .formation-degree {
            font-weight: 500;
            color: var(--accent);
            font-size: 1.1rem;
        }

        /* ============= CONTACT SECTION ============= */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            text-align: center;
        }

        .contact-item {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-radius: 12px;
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
        }

        .contact-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(100, 255, 218, 0.15);
        }

        .contact-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
        }

        .contact-item h4 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .contact-item a, .linkedin-button {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            display: block;
            width: 100%;
        }

        .linkedin-button {
            background: rgba(100, 255, 218, 0.1);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(100, 255, 218, 0.3);
            margin-top: 0.5rem;
        }

        .linkedin-button:hover {
            background: rgba(100, 255, 218, 0.2);
            transform: translateY(-2px);
        }

        .contact-item a:hover {
            color: var(--gold);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        /* ============= FOOTER STYLES ============= */
        .footer {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--secondary);
            border-top: 2px solid rgba(100, 255, 218, 0.2);
            margin-bottom: 60px;
        }

        .footer p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: var(--text-secondary);
            font-size: 2rem;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 50%;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid rgba(100, 255, 218, 0.2);
        }

        .social-links a:hover {
            color: var(--accent);
            background: rgba(100, 255, 218, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
        }

        /* ============= FINANCIAL TICKER STYLES ============= */
        .stock-ticker {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, var(--secondary), var(--card-bg));
            padding: 0.8rem 0;
            border-top: 2px solid rgba(100, 255, 218, 0.2);
            overflow: hidden;
            white-space: nowrap;
            z-index: 999;
        }

        .ticker-content {
            display: inline-block;
            animation: ticker 45s linear infinite;
            color: var(--accent);
            font-family: 'Fira Code', monospace;
            font-weight: 500;
        }

        /* ============= ANIMATIONS ============= */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

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

        /* ============= RESPONSIVE DESIGN ============= */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .menu-toggle {
                display: block;
            }

            .hero-title, .hero-subtitle {
                font-size: 2rem;
            }

            .profile-image-container {
                width: 250px;
                height: 250px;
            }

            .finance-chart {
                width: 180px;
                height: 120px;
                right: 0;
            }

            .section-title {
                font-size: 2rem;
            }

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

        @media (max-width: 480px) {
            .hero-title, .hero-subtitle {
                font-size: 1.8rem;
            }

            .section {
                padding: 4rem 1.5rem;
            }

            .profile-image-container {
                width: 200px;
                height: 200px;
            }

            .finance-chart {
                display: none;
            }

            .section-title {
                font-size: 1.5rem;
            }

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

            .featured-content {
                padding: 2.5rem 1.5rem;
            }

            .featured-title {
                font-size: 1.5rem;
            }

            .featured-badge {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
                top: 1rem;
                right: 1rem;
            }

            .featured-tasks-list {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            .featured-logo-wrap {
                width: 100px;
                height: 100px;
            }

            .languages-container {
                grid-template-columns: 1fr;
            }
        }