 
    :root {
      --primary-color: #f6d5e3;
      --accent-color: #d1c4e9;
      --text-color: #333;
      --bg-color: #fff0f5;
    }

    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
      transition: all 0.3s ease;
    }

    body {
      margin: 0;
      font-family: 'Space Grotesque', sans-serif;
      background: var(--bg-color);
      color: var(--text-color);
    }

    header {
      background: linear-gradient(145deg, #ffdee9, #b5d0ff);
      text-align: center;
      padding: 60px 20px;
      border-radius: 0 0 30px 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    #intro-text {
      font-size: 2.8rem;
      color: #333;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid #6a1b9a;
      animation: blink-caret 0.75s step-end infinite;
    }

    @keyframes blink-caret {
      from, to { border-color: transparent; }
      50% { border-color: #6a1b9a; }
    }

    header p {
      font-size: 1.2rem;
      color: #444;
      margin-top: 10px;
    }

    nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 15px;
    }

    nav a {
      text-decoration: none;
      color: #444;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 20px;
    }

    nav a:hover {
      background-color: #ffe3ed;
    }

    section {
      max-width: 960px;
      margin: 40px auto;
      padding: 20px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    }

    h2 {
      margin-bottom: 10px;
      color: #444;
    }

    h3 {
      margin-top: 30px;
      color: #6a1b9a;
    }

    .skills-grid, .certifications-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
      margin-top: 10px;
    }

    .skill, .cert-card {
      background: #fafafa;
      border-radius: 15px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }

    .cert-card a {
      display: block;
      margin-top: 8px;
    }

    .contact {
      text-align: center;
    }

    .resume-btn {
      display: inline-block;
      margin-left: 350px;
      padding: 10px 20px;
      background-color: #a58adc;
      color: white;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .resume-btn:hover {
      background-color: #7e57c2;
      transform: scale(1.05);
    }

    .contact-icons {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin: 20px 0;
    }

    .contact-icons img {
      width: 40px;
      height: 40px;
      filter: grayscale(100%) brightness(0.6);
      transition: filter 0.3s ease, transform 0.3s ease;
    }

    .contact-icons img:hover {
      filter: none;
      transform: scale(1.1);
    }

    @media (max-width: 600px) {
      #intro-text {
        font-size: 2rem;
      }

      .resume-btn {
        margin-left: 0;
      }
    }

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

    .project-folder {
      margin-top: 20px;
      position: relative;
      background: #fce4ec;
      border-radius: 8px;
      padding: 20px 15px 15px 15px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .project-folder:hover {
      transform: translateY(-5px);
    }

    .folder-tab {
      width: 60px;
      height: 15px;
      background-color: #f8bbd0;
      border-radius: 6px 6px 0 0;
      position: absolute;
      top: -15px;
      left: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .folder-body h4 {
      margin: 0 0 10px;
      color: #6a1b9a;
    }

    .folder-body p {
      font-size: 0.95rem;
      color: #555;
    }

    .clickable-text, .clickable-text1 {
      font-size: 16px;
      color: #0056b3;
      text-decoration: underline;
      cursor: pointer;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .clickable-text:hover, .clickable-text1:hover {
      color: #008bff;
      transform: scale(1.05);
    }
   