  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    body {
      line-height: 1.8;
      background: #f0f4ff;
      color: #1a202c;
      overflow-x: hidden;
      position: relative;
    }

    /* Enhanced Particle Background */
    #particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: linear-gradient(135deg, rgba(255, 99, 132, 0.1), rgba(54, 162, 235, 0.1));
    }

    header {
      background: linear-gradient(90deg, #ff4b5c, #3b82f6);
      color: #ffffff;
      padding: 1.5rem 3rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: space-between;
      align-items: center;
      backdrop-filter: blur(8px);
    }

    header h1 {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
      }

      to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px #ff4b5c;
      }
    }

    nav a {
      color: #ffffff;
      margin-left: 2.5rem;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 0.5rem;
      transition: all 0.3s ease;
    }

    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 0;
      background: linear-gradient(90deg, #facc15, #f472b6);
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: #facc15;
      transform: translateY(-3px);
    }

    nav a.active {
      color: #facc15;
      border-bottom: 3px solid #facc15;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      width: 30px;
      height: 4px;
      background: #ffffff;
      margin: 3px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(10px, -10px);
    }

    .nav-menu {
      display: flex;
      align-items: center;
    }

    .nav-menu.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: linear-gradient(180deg, #ff4b5c, #3b82f6);
      padding: 1.5rem;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      animation: slideIn 0.4s forwards;
    }

    @keyframes slideIn {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    #hero {
      padding: 8rem 2rem;
      background: linear-gradient(135deg, #ff4b5c, #3b82f6, #10b981);
      color: #ffffff;
      text-align: center;
      clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="100" fill="rgba(255,255,255,0.15)"/></svg>');
      animation: parallax 15s linear infinite;
      z-index: 0;
    }

    #hero h2 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out;
    }

    #hero p {
      font-size: 1.5rem;
      max-width: 800px;
      margin: 0 auto;
      font-weight: 300;
      animation: fadeInUp 1.2s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes parallax {
      0% {
        background-position: 0 0;
      }

      100% {
        background-position: 300px 300px;
      }
    }

    section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: auto;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 2.5rem;
      text-align: center;
      color: #1a202c;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    section h2::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #facc15, #f472b6);
      border-radius: 3px;
    }

    .project-grid,
    .skills-grid,
    .education-grid,
    .certifications-grid,
    .hobbies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
    }

    .project,
    .skill,
    .education,
    .certification,
    .hobby {
      background: #ffffff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      background-clip: padding-box;
    }

    .project:hover,
    .skill:hover,
    .education:hover,
    .certification:hover,
    .hobby:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
      border-image: linear-gradient(45deg, #facc15, #f472b6) 1;
    }

    .project::before,
    .skill::before,
    .education::before,
    .certification::before,
    .hobby::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 99, 132, 0.2), transparent);
      transition: 0.6s;
    }

    .project:hover::before,
    .skill:hover::before,
    .education:hover::before,
    .certification:hover::before,
    .hobby:hover::before {
      left: 100%;
    }

    .skill .progress-bar {
      width: 100%;
      height: 10px;
      background: #e5e7eb;
      border-radius: 5px;
      overflow: hidden;
      margin-top: 1.2rem;
    }

    .skill .progress {
      height: 100%;
      background: linear-gradient(90deg, #facc15, #f472b6);
      width: 0;
      transition: width 1.2s ease-in-out;
    }

    .skill[data-progress="80"] .progress {
      width: 80%;
    }

    .skill[data-progress="90"] .progress {
      width: 90%;
    }

    .skill[data-progress="70"] .progress {
      width: 70%;
    }

    .project h3,
    .skill h3,
    .education h3,
    .certification h3,
    .hobby h3 {
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: #1a202c;
    }

    .project p,
    .skill p,
    .education p,
    .certification p,
    .hobby p {
      font-size: 1.1rem;
      color: #4b5563;
      margin-bottom: 1.2rem;
    }

    .project a,
    .skill a,
    .certification a {
      color: #3b82f6;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      background: rgba(59, 130, 246, 0.1);
    }

    .project a:hover,
    .skill a:hover,
    .certification a:hover {
      color: #ffffff;
      background: #3b82f6;
      transform: translateX(8px);
    }

    #contact {
      background: linear-gradient(135deg, #ffffff, #f0f4ff);
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      padding: 4rem;
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: '';
      position: absolute;
      top: -60%;
      left: -60%;
      width: 220%;
      height: 220%;
      background: radial-gradient(circle, rgba(255, 99, 132, 0.15) 10%, transparent 40%);
      animation: pulse 8s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.4;
      }

      50% {
        transform: scale(1.3);
        opacity: 0.2;
      }

      100% {
        transform: scale(1);
        opacity: 0.4;
      }
    }

    #contact form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      position: relative;
    }

    input,
    textarea {
      width: 100%;
      padding: 1.4rem;
      border: 2px solid #d1d5db;
      border-radius: 10px;
      font-size: 1.1rem;
      background: #ffffff;
      transition: all 0.3s ease;
      position: relative;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: #facc15;
      box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.2);
      transform: scale(1.02);
    }

    textarea {
      resize: vertical;
      min-height: 180px;
    }

    button {
      width: 100%;
      background: linear-gradient(90deg, #ff4b5c, #facc15);
      color: #ffffff;
      padding: 1.4rem;
      border: none;
      border-radius: 10px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.8s ease;
    }

    button:hover::before {
      width: 400px;
      height: 400px;
    }

    button:hover {
      background: linear-gradient(90deg, #f472b6, #3b82f6);
      transform: translateY(-3px) scale(1.03);
    }

    .error {
      border-color: #ef4444;
      animation: shake 0.4s ease;
    }

    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      25% {
        transform: translateX(-6px);
      }

      75% {
        transform: translateX(6px);
      }
    }

    .error-message {
      color: #ef4444;
      font-size: 1rem;
      margin-top: 0.4rem;
      animation: fadeIn 0.4s ease;
    }

    footer {
      text-align: center;
      padding: 2.5rem;
      background: linear-gradient(90deg, #1a202c, #2d3748);
      color: #ffffff;
      margin-top: 5rem;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #facc15, #f472b6, #10b981);
      animation: footerLine 4s infinite;
    }

    @keyframes footerLine {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 1.2rem 1.8rem;
      }

      .hamburger {
        display: flex;
      }

      .nav-menu {
        display: none;
      }

      .nav-menu.active {
        display: flex;
      }

      #hero {
        padding: 4rem 1.8rem;
      }

      #hero h2 {
        font-size: 2.5rem;
      }

      section {
        padding: 3rem 1.8rem;
      }

      #contact {
        padding: 2.5rem;
      }

      #contact form {
        max-width: 100%;
      }

      input,
      textarea,
      button {
        padding: 1.2rem;
      }
    }
 /* ================== UPGRADED VIEW BUTTONS ================== */

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #ff4b5c, #facc15);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(255, 75, 92, 0.35);
  position: relative;
  overflow: hidden;
}

/* Glow effect on hover */
.view-btn:hover {
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(90deg, #f472b6, #3b82f6);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

/* Shine animation */
.view-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: 0.6s;
}

.view-btn:hover::before {
  left: 130%;
}

/* Make experience button look more premium */
.exper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid #3b82f6;
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.35s ease;
}

.exper:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}
