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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: transparent;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #426a32 0%, #32502a 100%);
            opacity: 0;
            z-index: 0;
            transition: opacity 0.3s ease;
        }

        .background-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('assets/ptichat.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .background-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 3;
        }

        .header {
            text-align: center;
            padding: 60px 0;
            color: white;
            animation: fadeInUp 1s ease-out;
            margin-bottom: 30%;
            position: relative;
            z-index: 4;
        }

        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid rgba(255,255,255,0.3);
            margin: -30px auto 30px;
            background-image: url('assets/moi.jpg');
            background-size: 107%;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            transition: transform 0.3s ease;
        }

        .profile-img:hover {
            transform: scale(1.1);
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 5px;
            text-shadow:
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px  1px 0 black,
            1px  1px 0 black;
        }

        .header p {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-top: -10px;
            margin-bottom: 20px;
            text-shadow: 
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px  1px 0 black,
            1px  1px 0 black;
        }

        .header .pa {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 20px;
            margin-bottom: 20px;
            text-shadow: 
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px  1px 0 black,
            1px  1px 0 black;
        }

        .contact-info {
            font-size: 1.1rem;
            display: flex;
            justify-content: center;
            margin-bottom: -10px;
            gap: 30px;
            flex-wrap: wrap;
            text-shadow: 
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px  1px 0 black,
            1px  1px 0 black;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 30px;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-2px);
        }

        .prec {
            background: rgba(105, 255, 105, 0.2);
            border-radius: 15px;
            padding: 30px;
            z-index: 5;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 5;
        }

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

		.card:nth-of-type(2) > p {
            margin-left: 10px;
        }

        .card h2 {
            color: #76a573;
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-bottom: 2px solid #ffcc63;
            padding-bottom: 10px;
        }

        .experience-item, .education-item {
            margin-bottom: 25px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #ffcc63;
            transition: background 0.3s ease;
        }

        .experience-item:hover, .education-item:hover {
            background: #e9ecef;
        }

        .experience-item h3, .education-item h3 {
            color: #333;
            margin-bottom: 5px;
        }

        .experience-item .period, .education-item .period {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

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

        .skill-category {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ffcc63;
        }

        .skill-category h3 {
            color: #76a573;
            margin-bottom: 15px;
        }

        .skill-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .skill-bar {
            width: 100%;
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 5px;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #bcffb5, #5b7f59);
            border-radius: 3px;
            transition: width 1s ease-out;
        }

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

        .project-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s ease, background 0.3s ease;
            border: 2px solid transparent;
        }

        .project-card:hover {
            transform: translateY(-3px);
            background: white;
            border-color: #76a573;
        }

        .project-card h3 {
            color: #333;
            margin-bottom: 10px;
        }

        .project-tech {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .tech-tag {
            background: #76a573;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .full-width {
            grid-column: 1 / -1;
        }

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

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
        }