:root {
    --orange: #fe8d14;
    --black: #000;
    --white: #fff;
    --dark: #111;
  }

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

  body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    font-family: "Poppins", sans-serif;
    padding: 15px;
  }

  .card {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(254, 141, 20, 0.3);
  }

  .card::before {
    content: "";
    display: block;
    height: 8px;
    background: #fe8d14;
  }

  .profile-area {
    text-align: center;
    padding: 20px 20px 10px;
  }

  .profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fe8d14;
  }

  .name {
    margin-top: 12px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #000;
  }

  .role {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
  }

  .divider {
    width: 60px;
    height: 3px;
    background: #fe8d14;
    margin: 15px auto;
    border-radius: 20px;
  }

  .links {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    background: #f7f7f7;
    padding: 12px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
  }

  .link i {
    color: #fe8d14;
    font-size: 18px;
    width: 20px;
  }

  .link:hover {
    background: #fe8d14;
    color: white;
  }

  .link:hover i {
    color: white;
  }

  .footer-box {
    margin: 18px 20px 15px;
    background: #000;
    color: white;
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-box span {
    color: #fe8d14;
  }

  .bottom {
    text-align: center;
    font-size: 0.7rem;
    color: #777;
    padding-bottom: 12px;
  }

 /* Laptop / Desktop Landscape Card */
@media (min-width: 768px) {
  .card {
    max-width: 750px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .card::before {
    width: 8px;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }

  .profile-area {
    width: 40%;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .links {
    width: 60%;
    padding: 35px 25px;
    justify-content: center;
  }

  .footer-box {
    position: absolute;
    left: 25px;
    bottom: 30px;
    width: 260px;
    margin: 0;
  }

  .bottom {
    position: absolute;
    right: 30px;
    bottom: 0;
  }
}