body {
      margin: 0;
      background: #222;
      display: flex;
      justify-content: center;
      padding: 20px;
      font-family: 'Segoe UI', sans-serif;
    }

    .phone-frame {
      background: white;
      border-radius: 30px;
      width: 350px;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      position: relative;
    }

    .phone-notch {
      width: 150px;
      height: 30px;
      background: black;
      border-radius: 0 0 20px 20px;
      margin: 0 auto;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .card-content {
      padding-top: 40px;
      background: linear-gradient(to bottom right, #ffe9d6, #dff8f6);
      text-align: center;
      padding-bottom: 20px;
    }

    .logo {
      font-weight: bold;
      font-size: 20px;
      margin-top: 40px;
    }

    .profile-pic {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 20px auto;
      border: 5px solid #fff;
    }

    h2 {
      margin: 0;
      font-size: 22px;
    }

    p.role {
      margin: 5px 0;
      color: #666;
    }

    .contact-info {
      font-size: 24px;
      margin: 10px 0;
      color: #000;
    }

    .icon-row {
      margin: 15px 0;
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .icon-row img {
      width: 30px;
      height: 30px;
    }

    .company {
      margin-top: 15px;
      font-weight: bold;
    }

    .address {
      font-size: 13px;
      color: #444;
    }

    .share-section {
      margin: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .share-section input {
      padding: 8px;
      border-radius: 6px;
      border: 1px solid #aaa;
      width: 70%;
    }

    .share-section button {
      padding: 8px 10px;
      border: none;
      background: #0d6efd;
      color: white;
      border-radius: 6px;
      cursor: pointer;
    }

    .footer-buttons {
      margin-top: 10px;
      display: flex;
      justify-content: space-around;
      border-top: 1px solid #ddd;
      padding-top: 10px;
    }

    .footer-buttons div {
      font-size: 13px;
      text-align: center;
      color: #333;
    }

    .social-footer {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 10px;
      padding-bottom: 15px;
    }

    .social-footer img {
      width: 24px;
      height: 24px;
    }

    .gallery-button {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.gallery-button:hover {
  background-color: #084cd4;
}

.button-icon{
    background-color: #084cd4;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 10px;
}
#web-link{
    text-decoration: none;
    color: rgb(39, 37, 37);
     font-weight: 600;
     
}

#web-link:hover{
    color : orangered;
    font-weight: 800;
}