body {
    background: #f4f4f4;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.card {
    max-width: 420px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.card h1 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #222;
}

.card p {
    margin: 8px 0;
    font-size: 15px;
    color: #000; /* ✅ solid black */
}

.info {
    text-align: left;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.info div {
    margin-bottom: 4px;
}

.info strong {
    font-weight: 600;
    color: #222;
}

.info a,
.info span {
    color: #0077cc;
    font-weight: 500;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
    color: #005ea0;
}

/* ✅ Center QR code */
.qr-wrapper {
    text-align: center;
}

#qrcode {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vcard-btn {
    margin: 20px 0;
    text-align: center;
}

.vcard-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: #0077cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.vcard-btn a:hover {
    background: #005fa3;
}

.profile-pic img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
  margin-bottom: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


