/* Add custom Js code below */ let esm = "تاك"; let link = "https://agencytak.com/"; document.addEventListener("DOMContentLoaded", function () { document.querySelector(".copyright-text p").innerHTML = ` صنع بإتقان على ${esm} | 2025 `; }); /* Add custom Js code below */ const section = document.createElement('section'); section.classList.add('full-width-video-section'); section.style.position = 'relative'; section.style.marginTop = '0'; // Create the video element const video = document.createElement('video'); video.src = 'https://github.com/salahreda-1/videos/raw/refs/heads/main/5ae8f341fb37dd6d668db677306a80f2173e9279.mp4'; video.autoplay = true; video.muted = true; video.loop = true; video.style.width = '100%'; video.style.height = '100%'; section.appendChild(video); // Create a container for text content const textContainer = document.createElement('div'); textContainer.style.position = 'absolute'; textContainer.style.top = '66%'; textContainer.style.left = '50%'; textContainer.style.transform = 'translate(-50%, -50%)'; textContainer.style.textAlign = 'center'; textContainer.style.color = '#fff'; // Create the heading element const heading = document.createElement('h1'); heading.textContent = ' عناية فريدة تمنحك فروة صحية وشعراً نقياً، بلا قشرة'; // H1 text heading.style.fontSize = '40px'; heading.style.marginBottom = '10px'; // Create the paragraph element const paragraph = document.createElement('p'); paragraph.textContent = 'نحن هنا لتحقيق أهدافك الجمالية لشعرك '; // P text paragraph.style.fontSize = '25px'; paragraph.style.marginBottom = '20px'; // Append heading and paragraph to the text container textContainer.appendChild(heading); textContainer.appendChild(paragraph); // Append text container to the section section.appendChild(textContainer); // Insert the section into the targetDiv const targetDiv = document.querySelector('.g_features'); if (targetDiv) { targetDiv.parentNode.insertBefore(section, targetDiv); } else { console.error('Element with class "f-flex" not found.'); }