body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f6fb;
      color: #333;
    }

    /* Header Cover */
    .profile-header {
      background: url('https://picsum.photos/1200/400?blur') center/cover no-repeat;
      height: 250px;
      position: relative;
    }

    .profile-header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    /* Profile Card */
    .profile-card {
      max-width: 900px;
      margin: -100px auto 40px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      padding: 30px;
      position: relative;
      z-index: 99;
      
    }

    .profile-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 5px solid #fff;
      object-fit: cover;
      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;
    }

    /* Social Links */
    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 15px;
    }

    .social-links a {
      color: #764ba2;
      font-size: 1.6rem;
      transition: 0.3s;
    }

    .social-links a:hover {
      color: #667eea;
    }

    /* 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.1);
    }

    .section h2 {
      margin-top: 0;
      color: #764ba2;
      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: #764ba2;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 20px;
      font-size: 0.85rem;
      color: #666;
    }