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

  :root {
    --orange: #f47c20;
    --blue: #1f85bb;
    --blue-hover:#1f85bb;
    --orange-light: #fef0e6;
    --teal: #3dbcb8;
    --teal-light: #e8f8f7;
    --green: #6bcf6b;
    --yellow: #f5c842;
    --bg: #f7f4f0;
    --white: #ffffff;
    --dark: #111827;
    --mid: #4b5563;
    --light: #9ca3af;
    --border: #e5e7eb;
    --mono: 'Share Tech Mono', monospace;
    --sans: 'Rajdhani', sans-serif;
    --body: "DM Sans", sans-serif;
  }

  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    font-family: var(--body);
    padding: 24px;
    background-image:
      radial-gradient(ellipse 70% 50% at 90% 10%, rgba(244,124,32,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 10% 90%, rgba(61,188,184,0.07) 0%, transparent 60%);
  }

  .card {
    width: 380px;
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border);
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 20px 60px rgba(0,0,0,0.10);
    animation: rise 0.65s cubic-bezier(0.22,1,0.36,1) both;
    position: relative;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(24px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(160deg, #fffaf6 0%, #f7f4f0 100%);
    padding: 32px 28px 24px;
    border-radius: 28px 28px 0 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .hero::before {
    content: "";
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,124,32,0.10) 0%, transparent 70%);
    top: -60px; right: -40px;
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61,188,184,0.10) 0%, transparent 70%);
    bottom: -40px; left: -30px;
    pointer-events: none;
  }

  /* Avatar */
  .avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
  }
  .avatar-ring {
    width: 100px; height: 100px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(from 0deg, var(--orange), var(--yellow), var(--green), var(--teal), var(--orange));
    animation: ring-spin 6s linear infinite;
    box-shadow: 0 4px 20px rgba(244,124,32,0.28);
  }
 
  .avatar-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--white);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 30px;
    color: var(--orange);
  }
  .avatar-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
  }
  .online-dot {
    position: absolute;
    bottom: 5px; right: 5px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid var(--white);
  }

  .person-name {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 7px;
  }
  .person-role {
    font-size: 12px;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: 0.3px;
  }

  /* ── CONTACT SECTION ── */
  .section {
    padding: 18px 22px 0;
  }
  .section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
  }
  .section-line {
    flex: 1; height: 1px;
    background: var(--border);
  }

  .contact-list { display: flex; flex-direction: column; gap: 7px; }

  .crow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.18s ease;
  }
  .crow:hover {
    border-color: var(--orange);
    background: var(--orange-light);
    transform: translateX(3px);
  }
  .crow.teal-row:hover {
    border-color: var(--teal);
    background: var(--teal-light);
  }
  .cicon {
    width: 34px; height: 34px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ci-orange { background: var(--orange-light); }
  .ci-teal   { background: var(--teal-light); }
  .ci-green  { background: rgba(107,207,107,0.12); }

  .crow-info { flex: 1; min-width: 0; }
  .crow-label {
    font-size: 9.5px; font-weight: 500;
    color: var(--light);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1px;
  }
  .crow-value {
    font-size: 13px; font-weight: 600;
    color: var(--dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-family: var(--display);
  }
  .crow-arrow { font-size: 14px; color: var(--light); flex-shrink: 0; }

  svg { width: 17px; height: 17px; }

  /* ── CONNECT BUTTONS (Website + LinkedIn) ── */
  .connect-section {
    padding: 16px 22px 0;
  }
  .connect-btns {
    display: flex;
    gap: 10px;
  }
  .btn-connect {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: 12px;
    font-family: var(--display);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
  }
  .btn-website {
    background: var(--orange);
    color: white;
    box-shadow: 0 3px 14px rgba(244,124,32,0.30);
  }
  .btn-website:hover {
    background: #e06d10;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,124,32,0.40);
  }
  .btn-linkedin {
    background: #0077B5;
    color: white;
    box-shadow: 0 3px 14px rgba(0,119,181,0.25);
  }
  .btn-linkedin:hover {
    background: #005f8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,119,181,0.35);
  }
  .btn-connect svg { width: 15px; height: 15px; }

  /* ── SOCIAL BUTTON + DRAWER ── */
  .social-section {
    padding: 12px 22px 22px;
    position: relative;
  }


    .btn-saveContact-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--blue);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--display);
    font-size: 12.5px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
  }
  .btn-saveContact-toggle:hover {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue-hover);
  }

    .btn-saveContact-toggle .toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  .btn-saveContact-toggle.open .toggle-icon {
    transform: rotate(180deg);
  }


  .btn-social-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fafafa;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--display);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
  }
  .btn-social-toggle:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-light);
  }
  .btn-social-toggle .toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  .btn-social-toggle.open .toggle-icon {
    transform: rotate(180deg);
  }

  /* Social drawer */
  .social-drawer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    opacity: 0;
  }
  .social-drawer.open {
    max-height: 200px;
    opacity: 1;
  }
  .social-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 10px;
  }

  .social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--border);
    background: #fafafa;
    transition: all 0.18s ease;
    animation: slideIn 0.3s ease both;
  }
  .social-row:nth-child(1) { animation-delay: 0.04s; }
  .social-row:nth-child(2) { animation-delay: 0.09s; }
  .social-row:nth-child(3) { animation-delay: 0.14s; }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .social-row:hover { transform: translateX(3px); }
  .social-row.tk:hover { border-color: #010101; background: rgba(1,1,1,0.04); }
  .social-row.fb:hover { border-color: #4267B2; background: rgba(66,103,178,0.06); }
  .social-row.ig:hover { border-color: #dc2743; background: rgba(220,39,67,0.05); }

  .sicon {
    width: 34px; height: 34px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .si-tk { background: rgba(1,1,1,0.06); }
  .si-fb { background: rgba(66,103,178,0.10); }
  .si-ig { background: rgba(220,39,67,0.08); }

  .social-name {
    font-size: 13px; font-weight: 600;
    font-family: var(--display);
    flex: 1;
  }
  .social-handle {
    font-size: 11px; color: var(--light);
  }

  /* ── FOOTER ── */
  .card-footer {
    border-top: 1px solid var(--border);
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border-radius: 0 0 28px 28px;
  }
  .footer-brand {
    display: flex; align-items: center; gap: 7px;
  }
  .footer-logo-ring {
    width: 26px; height: 26px;
    border-radius: 50%; padding: 2px;
    background: conic-gradient(from 0deg, var(--orange), var(--yellow), var(--green), var(--teal), var(--orange));
  }
  .footer-logo-inner {
    width: 100%; height: 100%;
    border-radius: 50%; background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 900;
    color: var(--orange); font-family: var(--display);
  }
  .footer-tagline {
    font-size: 10px; color: var(--light);
    font-family: var(--display); font-weight: 500;
  }
  .footer-url {
    font-size: 10px; font-weight: 600;
    color: var(--teal); font-family: var(--display);
    text-decoration: none; letter-spacing: 0.3px;
  }
  .footer-url:hover { text-decoration: underline; }



