  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #333;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            min-height: 100vh;
            padding: 20px;
           
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            margin-bottom: 30px;
            position: relative;
        }
        .notranslate {
    transform: translateZ(0);
}

        .back-button {
            position: absolute;
            top: 20px;
            left: 20px;
            background:  #a78bfa;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .back-button:hover {
            background: #5568d3;
            transform: translateX(-5px);
        }

        .header-content {
            text-align: center;
            margin-top: 20px;
        }

        .career-icon {
            font-size: 80px;
            margin-bottom: 20px;
        }

        h1 {
            color: #333;
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .subtitle {
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color:  #a78bfa; 
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .content-section {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            margin-bottom: 30px;
        }

        h2 {
            color: #333;
            font-size: 2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom,  #a78bfa, #764ba2);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }

        .timeline-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            background:  #a78bfa;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #a78bfa;;
        }

        .timeline-year {
            font-size: 1.1rem;
            font-weight: bold;
            color: #a78bfa;;
            margin-bottom: 10px;
        }

        .timeline-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .timeline-description {
            color: #666;
            line-height: 1.6;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .skill-card {
            background: linear-gradient(135deg, #a78bfa, 0%, #764ba2 100%);
            padding: 20px;
            border-radius: 15px;
            color: white;
            transition: transform 0.3s ease;
        }

        .skill-card:hover {
            transform: translateY(-5px);
        }

        .skill-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .skill-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .skill-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            border-left: 4px solid #a78bfa;
        }

        .info-box h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .info-box p {
            color: #666;
            line-height: 1.6;
        }

        .info-box ul {
            margin-top: 10px;
            margin-left: 20px;
        }

        .info-box li {
            color: #666;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .specializations {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .specialization-tag {
            background:#a78bfa;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .stats {
                gap: 20px;
            }

            .back-button {
                position: static;
                margin-bottom: 20px;
                width: fit-content;
            }
        }
   