       :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #64748b;
            --secondary-dark: #466358;
            --light: #f8fafc;
            --dark: #0f172a;
            --accent: #06b6d4;
            --success: #10b981;
            --card-bg: #ffffff;
            --body-bg: #f1f5f9;
            --border: #e2e8f0;
            --shadow: rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }

        .dark-mode {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --secondary: #94a3b8;
            --light: #0f172a;
            --dark: #f8fafc;
            --card-bg: #1e293b;
            --body-bg: #0f172a;
            --border: #334155;
            --shadow: rgba(0, 0, 0, 0.2);
        }
h1, h2, h3 {
    color: var(--heading-color);
    line-height: 1.3;
}
h2 {
    font-size: 1.8em;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 i {
    margin-right: 12px;
    color: var(--primary-color);
}

h4 {
    font-size: 0.8em;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 0.6;
}

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--body-bg);
            color: var(--dark);
            line-height: 1.6;
            transition: var(--transition);
        }

        .profile-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 5px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #6ee7b7, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }
	.profile-photo {
	    width: 200px;
	    height: 200px;
	    border-radius: 50%;
	    border: 5px solid var(--secondary-color);
	    object-fit: cover;
	    margin-bottom: 15px;
	    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	}

        .name {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            max-width: 800px;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 1rem 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-item i {
            font-size: 1.2rem;
        }

        .header-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            border: none;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }


        .section-title {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
            color: var(--primary);
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .card {
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 4px 20px var(--shadow);
            padding: 2rem;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px var(--shadow);
        }

        .summary-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--secondary);
        }


        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            height: calc(100% - 20px);
            width: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 30px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -8px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--card-bg);
            border: 4px solid var(--accent);
            z-index: 1;
        }

        .timeline-date {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: var(--primary-dark);
        }

        .timeline-company {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .education-item {
            display: flex;
            flex-direction: column;
        }

        .edu-degree {

            margin-bottom: 0.5rem;

        }

        .edu-school {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .edu-year {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 600;
        }

        .badges-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .badge-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
        }

        .badge-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            font-size: 2rem;
        }

        .badge-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
        }

        .badge-subtitle {
            font-size: 0.9rem;
            color: var(--secondary);
        }

        .languages-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .language-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 100px;
        }

        .language-flag {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--body-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            border: 2px solid var(--border);
        }

        .language-name {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .skill-category {
            margin-bottom: 1.5rem;
        }

        .skill-category h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            /*display: flex;*/
            align-items: center;
            text-align: center;
            gap: 0.5rem;
        }

        footer {
            background: var(--secondary-color);
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: 2rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .name {
                font-size: 2rem;
            }
            
            .title {
                font-size: 1.1rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            
            .header-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .skills-container,
            .education-grid,
            .badges-container {
                grid-template-columns: 1fr;

            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .timeline {
                padding-left: 20px;
            }
            
            .timeline-item {
                padding-left: 20px;
            }
        }

        @media (max-width: 480px) {
            .profile-image {
                width: 180px;
                height: 180px;
                font-size: 3rem;
            }
            
            .name {
                font-size: 1.8rem;
            }
            
            .card {
                padding: 1.5 rem;
            }
        }

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

        .animate {
            animation: fadeIn 0.6s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }