   /* ---------- Base Styles ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      line-height: 1.6;
      background: #f9f9f9;
      color: #333;
    }

    h1, h2, h3 {
      margin-bottom: 30px;
    }
    h2 {
        background: #cf7fdb;
        color: white;
        padding-left: 10px;
    }

    a {
      text-decoration: none;
      color: #333;
    }

    /* ---------- Navbar ---------- */
    header {
      background: linear-gradient(30deg, #795dae, #cf7fdb ,#e5bcd0);
      color: #fff;
      padding: 15px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav ul {
      list-style: none;
      display: flex;
    }

    nav ul li {
      margin-left: 20px;
    }

    nav ul li a {
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #795dae;
    }

    /* ---------- Sections ---------- */
    section {
      padding: 20px;
      max-width: 1000px;
      margin: auto;
    }

    .about {
      text-align: center;
    }

    .about img {
        width: 1000px;
        margin-bottom: 15px;
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

   .project {
       background: #fff;
       padding: 20px;
       border-radius: 8px;
       box-shadow: 0 2px 6px rgba(0,0,0,0.1);
       text-align: center;
       transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth effect */
   }

   .project:hover {
       transform: scale(1.05); /* increase size by 5% */
       box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* deeper shadow */
   }

    .project img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 10px;
    }

    /* ---------- Skills ---------- */

   .skills ul {
       display: flex;
       flex-wrap: wrap;
       gap: 15px;
       justify-content: center;
       list-style: none;
       padding: 0;
   }

   .skills ul li {
       background: #795dae;
       color: #fff;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       font-weight: bold;
       box-shadow: 0 4px 10px rgba(0,0,0,0.15);
       transition: transform 0.3s ease;
   }

   /* Different bubble sizes */
   .skills ul li:nth-child(3n) {
       width: 80px;
       height: 80px;
       font-size: 0.8rem;
   }
   .skills ul li:nth-child(3n+1) {
       width: 120px;
       height: 120px;
       font-size: 1rem;
   }
   .skills ul li:nth-child(3n+2) {
       width: 100px;
       height: 100px;
       font-size: 0.9rem;
   }

   .skills ul li:hover {
       transform: scale(1.15);
   }


    /* ---------- Contact ---------- */
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 500px;
      margin: auto;
    }

    input, textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      width: 100%;
    }

    button {
      background: #795dae;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #795dae;
    }

    /* ---------- Footer ---------- */
    footer {
      text-align: center;
      padding: 20px;
      background: linear-gradient(30deg, #cf7fdb, #795dae);
      color: #fff;
      margin-top: 40px;
    }
