* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f5f7fb;
      color: #222;
      scroll-behavior: smooth;
    }

    /* NAVBAR */
    header {
      background: white;
      padding: 18px 30px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 99;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav h2, .portfolioHeader > div > h2 {
      font-weight: bold;
      color: #2575fc;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav a {
      text-decoration: none;
      font-weight: bold;
      color: #222;
      transition: 0.3s;
    }

    nav a:hover {
      color: #2575fc;
    }

    /* HERO */
    #hero {
      height: 90vh;
      background: linear-gradient(to right, #6a11cb, #2575fc);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    #hero h1 {
      font-size: 3rem;
    }

    #hero span {
      color: #ffd700;
    }

    .btn {
      margin-top: 20px;
      padding: 12px 22px;
      background: white;
      color: #2575fc;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
      
      cursor: pointer;
    }

    .btn:hover {
      background: #ffd700;
      color: black;
    }

    /* SECTIONS */
    section {
      padding: 70px 20px;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }

    h2 {
      margin-bottom: 20px;
      font-size: 2rem;
    }

    /* ABOUT */
    .about p {
      line-height: 1.7;
      font-size: 1.1rem;
    }

    /* SKILLS */
    .skill-box {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 15px;
    }

    /*.skill-box span {*/
    .skill-box > span {
      background: #2575fc;
      color: white;
      padding: 10px 20px;
      border-radius: 18px;
      font-weight: bold;
    }

    /* PROJECTS */
    .project-card {
      background: white;
      padding: 25px;
      margin: 18px auto;
      border-radius: 10px;
      max-width: 700px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: left;
    }

    /* FOOTER */
    footer {
      background: #111;
      padding: 20px;
      color: white;
      text-align: center;
    }

    @media (max-width: 768px) {
      #hero h1 {
        font-size: 2.2rem;
      }
    }
    
    .basic-link:hover {
        text-decoration: none;
    }
    
    .page-header {
        margin-bottom: 0.5rem;
    }