:root {
  --bg: #0b0f14;
  --card: #0f1720;
  --accent: #0ea5ff;
  --purple: #7c3aed;
  --muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 12px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* Background */
body {
  background: linear-gradient(180deg, #051017 0%, #07121a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
  color: #e6eef6;
}

/* Card */
.business-card {
  background: linear-gradient(180deg, var(--card), #0b1620);
  padding: 30px 28px;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 
      0 8px 22px rgba(2, 6, 23, 0.6),
      0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

/* Avatar (matching portfolio style) */
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  font-weight: 700;
  color: #021025;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.9);
}

/* Name + titles */
.full-name {
  font-size: 1.45rem;
  font-weight: 700;
}

.designation {
  margin-top: 4px;
  color: var(--muted);
}

.company {
  margin-top: 2px;
  font-weight: 600;
  color: var(--accent);
}

/* Divider */
hr {
  margin: 18px 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Contact */
.business-card p {
  margin: 4px 0;
  font-size: 0.95rem;
}

/* Portfolio button (matching Open buttons from portfolio) */
.portfolio-link {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  color: #021025;
  text-decoration: none;
  font-weight: 700;
  transition: 
      transform 0.2s ease,
      opacity 0.2s ease,
      box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.8);
}

.portfolio-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 1);
}

/* Social section */
.social-media h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-media a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  margin: 4px;
  background: var(--glass);
  color: #e6eef6;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 
      background 0.2s ease,
      transform 0.2s ease,
      border-color 0.2s ease;
}

.social-media a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

/* Mobile */
@media (max-width: 480px) {
  .business-card {
    padding: 24px;
  }
}




