    /* Theme Colors */

    nav a {
      color: #4C1D95;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #F97316;
    }
    .btn-primary {
      background: linear-gradient(to right, #6D28D9, #4C1D95);
      color: #fff;
      padding: 12px 24px;
      font-weight: bold;
      border-radius: 8px;
      transition: background 0.3s ease-in-out;
    }
    .btn-primary:hover {
      background: #F97316;
    }

    /* Navbar Transition */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background-color: transparent;
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
    }
    header.scrolled {
      background-color: #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
