// ─── SKILLS ───────────────────────────────────────────────────────────────────
// Add/remove items freely. count is auto-derived — you don't need to update it.
// ─────────────────────────────────────────────────────────────────────────────
const SKILLS = [
  {
    h: "PROGRAMMING LANGUAGES",
    // Programming and HDL languages only — no runtimes or frameworks here
    items: ["C / C++", "SystemC", "VHDL / Verilog", "ARM Assembly", "MATLAB", "Python"],
  },
  {
    h: "HARDWARE",
    items: ["FPGA Design", "Embedded Systems", "HW Testing", "Lab Instrumentation"],
  },
  {
    h: "TOOLS",
    items: ["FreeRTOS","Git / GitHub", "Linux", "VCD", "SoC Testing"],
  },
  {
    h: "RELEVANT COURSEWORK",
    items: [
      "SoC Engineering For Signal Processing",
      "Digital VLSI & RTL Design",
      "Error-Control Coding",
      "Computer Architecture",
      "Digital Signal Processing",
      "Control Systems",
    ],
  },

].map((g) => ({ ...g, count: g.items.length }));
Object.assign(window, { SKILLS });
