/* Add custom Js styles below */
document.addEventListener("DOMContentLoaded", function () {
const old = document.querySelector('.footer-certificates a[href*="certificate-details"]');
if (!old) return;
// نخفي العنصر القديم
old.style.display = "none";
// نسوي عنصر جديد
const newLink = document.createElement("a");
newLink.href = "https://qr.saudibusiness.gov.sa/viewcr?nCrNumber=lCOQ9LoQW/E5pjdcEOAZ2w==";
newLink.target = "_blank";
newLink.className = "flex gap-2.5 items-center";
// الصورة
const img = document.createElement("img");
img.src = "https://i.imgur.com/pITib3Q.png";
img.style.width = "40px";
img.style.height = "40px";
// النص
const div = document.createElement("div");
const p = document.createElement("p");
p.textContent = "السجل التجاري";
p.style.fontSize = "12px";
p.style.opacity = "0.7";
const b = document.createElement("b");
b.textContent = "7018066287";
b.style.fontSize = "14px";
div.appendChild(p);
div.appendChild(b);
newLink.appendChild(img);
newLink.appendChild(div);
// نضيفه بعد القديم
old.parentNode.appendChild(newLink);
});