body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f6fb;
      color: #333;
    }

    /* Header */
    .profile-header {
      background: #000000;
      height: 250px;
      position: relative;
    }

    .profile-header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
    }

    /* logo */
    .profile-card {
      max-width: 900px;
      margin: 0px auto 40px;
      background: #fff;
      border-radius: 0px 0px 20px 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.5);
      padding: 30px;
      position: relative;
      z-index: 99;
      
    }

    .profile-img {
      width: 250px;
      height: 100px;
      background: #fff;
      border-radius: 10px 10px 0px 0px;
      border: 0px solid #fff;
      object-fit: contain;
      margin-top: -110px;
    }

    .profile-name {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 10px 0 5px;
    }

    .profile-bio {
      font-size: 1rem;
      color: #666;
      margin-bottom: 15px;
    }

    .profile-info {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 20px 0;
    }

    .profile-info div {
      text-align: center;
    }

    .profile-info h4 {
      margin: 0;
      color: #333;
      font-size: 1.3rem;
    }

    .profile-info p {
      margin: 0;
      color: #777;
      font-size: 0.85rem;
    }

    /* contact */
    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 15px;
      flex-wrap: wrap;
    }

    .social-links a {
      color: #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.2rem;
      gap: 10px;
      transition: 0.3s;
      padding: 10px 20px;
      border: 1px solid #000;
      border-radius: 10px;
    }

    .social-links a:hover {
      color: #575757;
      transform: scale(1.1);
    }

    .social-links ion-icon {
      font-size: 2.5rem;
      width: 1em;
      height: 1em;
      color: inherit;
      transition: 0.3s;
    }

    @media (max-width: 600px) {
      .social-links a {
        font-size: 1rem;
        width: 100%;
      }
      .social-links ion-icon {
        font-size: 1.8rem;
      }
    }


    /* Sections */
    .section {
      max-width: 900px;
      margin: 0 auto 40px;
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    }

    .section h2 {
      margin-top: 0;
      color: #000000;
      font-size: 1.3rem;
    }

    .about p {
      line-height: 1.6;
      color: #555;
    }

    /* Skills */
    .skills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .skill {
      background: #f0ebfa;
      color: #000000;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 20px;
      font-size: 1.0rem;
      color: #000000;
    }