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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0b0f1a, #141a2e);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Profile */
.profile {
  text-align: center;
}

.profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #6c63ff;
  margin-bottom: 12px;

  object-fit: cover;        /* ✅ prevents stretching */
  object-position: center;  /* keeps face centered */
  background-color: #111;   /* fallback */
}


.profile h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.tagline {
  font-size: 14px;
  color: #c7c7ff;
}

.subtitle {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.9;
}

/* Contact Cards Layout */
.contact-cards {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* WhatsApp centered */
.contact.whatsapp {
  grid-column: span 2;        /* takes full row */
  justify-self: center;       /* centers the card */
  max-width: 200px;           /* keeps it neat */
}

.contact {
  text-decoration: none;
  padding: 12px;
  border-radius: 14px;
  font-size: 13px;
  text-align: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s ease;
}

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

/* Brand accents */
.instagram:hover { background: #e1306c; }
.linkedin:hover { background: #0077b5; }
.email:hover { background: #6c63ff; }
.phone:hover { background: #00c896; }

/* Links */
.links {
  margin-top: 10px;
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  transform: scale(1.02);
  background: #6c63ff;
  box-shadow: 0 0 18px rgba(108, 99, 255, 0.6);
}

.primary {
  background: #6c63ff;
}

/* Footer */
footer {
  margin-top: 22px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}
.whatsapp:hover {
  background: #25d366;
}

.download-btn {
  width: 100%;
  margin: 18px 0;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #6c63ff, #00e5ff);
  color: #ffffff;
  transition: 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0,229,255,0.6);
}
.contact.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25d366;
}

