* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f5f6fa;
      color: #2f3640;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 40px auto;
      padding: 30px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 20px;
      transition: 0.4s;
    }

    .container:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

    .header {
      display: flex;
      align-items: center;
      gap: 25px;
      margin-bottom: 30px;
    }

    .header img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #4cd137;
      transition: 0.3s;
    }

    .header img:hover {
      transform: scale(1.05);
    }

    .header h1 {
      font-size: 2.5rem;
      color: #353b48;
    }

    .header p {
      color: #718093;
      font-weight: 500;
    }

    section {
      margin-bottom: 30px;
    }

    section h2 {
      font-size: 1.6rem;
      margin-bottom: 10px;
      position: relative;
      color: #273c75;
      transition: 0.3s;
    }

    section h2::after {
      content: '';
      width: 50px;
      height: 3px;
      background: #44bd32;
      position: absolute;
      bottom: -5px;
      left: 0;
    }

    .info, .skills ul, .education, .experience {
      padding-left: 15px;
    }

    .skills ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .skills li {
      background: #dcdde1;
      padding: 6px 15px;
      border-radius: 20px;
      font-weight: 500;
      transition: 0.3s;
    }

    .skills li:hover {
      background: #44bd32;
      color: white;
    }

    .education-item, .experience-item {
      margin-bottom: 15px;
    }

    .education-item h3, .experience-item h3 {
      font-size: 1.1rem;
      color: #192a56;
    }

    .education-item span, .experience-item span {
      font-size: 0.9rem;
      color: #718093;
    }

    .footer {
      text-align: center;
      padding-top: 20px;
      color: #888;
      font-size: 0.9rem;
    }

    @media (max-width: 600px) {
      .header {
        flex-direction: column;
        text-align: center;
      }

      .skills ul {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    a{
        text-decoration: none;
        color:#353b48
    }