body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-image: url(/images/abstract-paper-background-concept_23-2148812654.avif);
      background-repeat: no-repeat;
      background-size: cover;
      color: #333;
    }

    /* NAVBAR */
    nav {
      background: linear-gradient(135deg, #ff7eb3, #6a82fb);
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
    }

    nav .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: lightgreen;
    }

    nav ul {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }

    nav ul li {
      margin-left: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      font-size: 1rem;
    }

    nav ul li a:hover {
      text-decoration: underline;
    }

    /* HOME SECTION */
    .hero {
      text-align: center;
      padding: 80px 20px;
    }

    .hero h1 {
      font-size: 3rem;
      color: #6a82fb;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.2rem;
    }

    /* SKILLS SECTION */
    .skills {
      width: 85%;
      max-width: 900px;
      margin: 40px auto;
      background: linear-gradient(135deg, #cadeca, lightpink);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .skills h2 {
      color: #6a82fb;
      border-left: 5px solid #6a82fb;
      padding-left: 10px;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .skill-group {
      margin-bottom: 30px;
    }

    .skill-group h3 {
      color: #333;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    ul {
      margin: 0;
      padding-left: 20px;
      line-height: 1.8;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #222;
      color: white;
      margin-top: 40px;
    }