    :root {
            --primary: #0078d4;
            --primary-dark: #005a9e;
            --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            --card-bg: #ffffff;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --border: #f1f2f6;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-gradient);
            color: var(--text-dark);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .vcard {
            display: flex;
            width: 100%;
            max-width: 1150px;
            height: 850px;
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            overflow: hidden;
            animation: fadeIn 0.8s ease-out;
        }

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

        .sidebar {
            width: 32%;
            background: #fff;
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .profile-image {
            height: 300px;
            background: var(--primary) url('https://media.licdn.com/dms/image/v2/C4D03AQE8KrSWBKYtyg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1581765332735?e=1771459200&v=beta&t=5vewhjV6mXS9jAXU72BQBEMQtfqcnWImJqR1mwIbTG0') center/cover;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }

        .profile-info {
            padding: 25px;
            text-align: center;
        }

        .profile-info h1 { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); }
        .profile-info .title { color: var(--primary); font-weight: 500; font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

        .contact-box {
            text-align: left;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            font-size: 0.85rem;
        }

        .contact-box p { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
        .contact-box i { color: var(--primary); width: 15px; }

        /* Main Content */
        .content {
            width: 68%;
            padding: 40px 50px;
            overflow-y: auto;
        }

        .content::-webkit-scrollbar { width: 5px; }
        .content::-webkit-scrollbar-thumb { background: #dfe6e9; border-radius: 10px; }

        .section-header {
            font-size: 1.3rem;
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-dark);
            border-bottom: 2px solid var(--border);
            padding-bottom: 10px;
        }

        .section-header i { color: var(--primary); font-size: 1.1rem; }

        .timeline { border-left: 2px solid var(--border); padding-left: 25px; margin-left: 10px; }
        .timeline-item { position: relative; margin-bottom: 30px; }
        .timeline-item::before {
            content: '';
            position: absolute; left: -32px; top: 6px;
            width: 12px; height: 12px;
            background: white; border: 2px solid var(--primary);
            border-radius: 50%;
        }

        .date { font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; display: block; }
        .timeline-item h3 { font-size: 1.1rem; font-weight: 700; }
        .timeline-item .company { color: var(--text-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; display: block; }
        .timeline-item ul { padding-left: 18px; color: var(--text-light); font-size: 0.88rem; }
        .timeline-item li { margin-bottom: 4px; }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .skill-cat {
            background: #fdfdfd;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .skill-cat h4 { font-size: 0.9rem; color: var(--primary); margin-bottom: 10px; text-transform: uppercase; }
        .tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .tag {
            background: #f0f4f8;
            color: #4a5568;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .download-footer {
            margin-top: auto;
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 18px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .download-footer:hover { background: var(--primary-dark); }

        @media (max-width: 950px) {
            .vcard { flex-direction: column; height: auto; }
            .sidebar, .content { width: 100%; }
            .content { overflow-y: visible; }
        }

        .modern-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .modern-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--primary-dark);
            transition: width 0.3s ease;
        }

        .modern-link:hover {
            color: var(--primary-dark);
        }

        .modern-link:hover::after {
            width: 100%;
        }