* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #f0f4f8;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .container {
    max-width: 1000px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }
  
  .profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 30px;
    flex-direction: row-reverse;
  }
  
  .profile-img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eee;
    transition: transform 0.3s ease;
  }
  
  .profile-img:hover {
    transform: scale(1.05);
  }
  
  .about {
    flex: 1;
    text-align: left;
  }
  
  .about h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
  }
  
  .about p {
    line-height: 1.8;
    color: #555;
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 30px;
  }
  
  .contact-message {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .social-links a,
  .social-links .tooltip {
    font-size: 30px;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-links a:hover,
  .social-links .tooltip:hover {
    color: #007bff;
    transform: translateY(-5px);
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    background-color: #007bff;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
  }
  
  .social-links svg {
    width: 30px;
    height: 30px;
    fill: #555;
    transition: fill 0.3s ease, transform 0.3s ease;
    vertical-align: middle;
  }
  
  .social-links svg:hover {
    fill: #007bff;
    transform: translateY(-5px);
  }
  
  @media (max-width: 768px) {
    .profile {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .profile-img {
      width: 260px;
      height: 260px;
      margin-bottom: 20px;
    }
  
    .about h1 {
      font-size: 2.2rem;
    }
  
    .about p {
      font-size: 1rem;
    }
  
    .contact-message {
      font-size: 1rem;
    }
  
    .social-links {
      gap: 15px;
    }
  }
  