body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(45deg, #fef6db, #d6f3f7);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .card {
    position: relative;
    background-color: #fff; /* fallback color */
    width: 360px;
    margin-top: -4%;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
  }
  
  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./background.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.6; /* Adjust opacity here */
    z-index: -1;
  }
  
  .header .logo {
    width: 160px;
    margin: 0 auto 10px;
  }
  
  .profile-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-top: -30px;
    object-fit: cover;
  }
  
  .info h2 {
    margin: 10px 0 5px;
    font-size: 22px;
  }
  
  .info .title {
    color: #555;
    margin-bottom: 10px;
  }
  
  .info .phone, .info .email {
    color: #333;
    font-size: 14px;
    margin: 2px 0;
  }
  
  .contact-icons {
    margin: 15px 0;
  }
  
  .contact-icons a {
    margin: 0 8px;
    display: inline-block;
  }
  
  .contact-icons img {
    width: 32px;
    height: 32px;
  }
  
  .company h3 {
    margin: 10px 0 5px;
  }
  
  .company p {
    font-size: 14px;
    color: #666;
  }
  
  .phone-share {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    gap: 8px;
  }
  
  .phone-share input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100px;
  }
  
  .phone-share button {
    padding: 6px 12px;
    border: none;
    border-radius: 10px;
    background: #007BFF;
    color: white;
    cursor: pointer;
  }
  
  .footer-buttons {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .footer-buttons button {
    padding: 8px 12px;
    font-size: 13px;
    border: none;
    background: #eee;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .social-icons a {
    margin: 0 6px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
  }
  