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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1f47 0%, #050a14 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.card-container {
    width: 100%;
    max-width: 900px;
    perspective: 1000px;
    position: relative;
    z-index: 1;
}

.business-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.profile-section {
    flex: 0 0 350px;
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: subtle-pulse 8s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.company-logo {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
    animation: logo-glow 3s ease-in-out infinite;
    margin-bottom: 5px;
}

@keyframes logo-glow {
    0%, 100% { filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    50% { filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
}

.profile-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    margin-bottom: 10px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.profile-description {
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    padding: 0 20px;
    margin-top: 20px;
}

.info-section {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-section {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.title {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 0;
    font-weight: 600;
}

.experience-badge {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.experience-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.experience-number {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}

.experience-label {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.key-skills {
    margin-bottom: 25px;
}

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

.skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.skill-icon {
    width: 24px;
    height: 24px;
    color: #1e40af;
    flex-shrink: 0;
}

.skill-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
}

.certifications {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.cert-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.cert-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cert-item:hover .cert-logo {
    transform: scale(1.2);
}

.cert-name {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4a5568;
}

.contact-item .icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.contact-item a {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.linkedin-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #0077b5;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.linkedin-logo svg {
    width: 56px;
    height: 56px;
    shape-rendering: geometricPrecision;
}

.linkedin-logo:hover {
    transform: translateY(-3px) scale(1.05);
    color: #005885;
}

.cvr-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-card {
        flex-direction: column;
    }

    .profile-section {
        flex: none;
        padding: 30px 20px;
        gap: 20px;
    }

    .company-logo {
        width: 120px;
    }

    .profile-name {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .info-section {
        padding: 30px 25px;
    }

    .header-section {
        flex-direction: column;
        align-items: stretch;
    }

    .experience-badge {
        align-self: flex-end;
    }

    .title {
        font-size: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .spec-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
