| Search by item code, color, description....

CALL US NOW

+966 531870667

OFFSET PRINTING

High-quality bulk printing for professional marketing materials.

UV PRINT

CREATIVE SIGN

PRODUCT DISPLAY

MEDIA CAMPAIGN

CONCEPT DESIGN

COPY CENTER

BROCHURES
ENVELOPES
BUSINESS CARD
LETTER HEAD
BOOKS
MAGAZINES
CATALOGUE
BOOKLETS
POSTERS
FLYERS
MAGAZINES
NOTEPAD
PACKAGING
FOLDERS
PAPER STICKERS
PRODUCT LABELS

Request for Quotation

Please specify your desired products and quantities.....

Subscribe Now

to Be the First to Hear About Our Latest Promotions and Offers...!

Our Happy Clients

Visit Our Gallery Now

to See What We Offer

Meet our team

Head Office

sales@tec-lines.com

+966-03-809-9312 Ext:101

Fuad Hajj Hassan

Sales Executive

Technical Lines Advertising Agency offers a comprehensive suite of services, including innovative sign design, high-quality digital printing, strategic media campaign management, custom product display solutions, and distinctive acrylic art creations.

Signs

Product Display

Booth Exhibition

Ayat with Frame

Frame Canvas

Acrylic Art

Printing Services

Book Printing & Binding

Brochures & Booklets

Business Cards

Cards & Invitations

Flyers & Newsletters

FOLLOW US

Contact us

P.O. Box 53667, Dammam 31982 Kingdom of Saudi Arabia

(+966) 03-809-9312 Ext. 101

sales@tec-lines.com

Technical Lines | Premium Branding
👋 Hi! Fuad here. Ask me for a customized quote.
Fuad Hajj Hassan

Fuad Hajj Hassan

Marketing Manager | Tec-Lines KSA

Agent ready
🎁 View Catalog
📋 Request Quotation
📬 Send Inquiry to Fuad
Hello, and welcome to Technical Lines Advertising! I'm Fuad Hajj Hassan, Marketing Manager here in Dammam.
If you saved my attached photo as "fuad.jpg" in this folder, you should see my face in the header. If not, feel free to click my profile photo or drag and drop my photo onto this screen!
Fuad is speaking...

Quotation Configuration

Select Delivery Method

Send your chat history, quote requests, and contact info directly to Fuad's emails and mobile line.

${entry.qty} units x SAR ${entry.item.price.toFixed(2)}
`; }); const vat = (subtotal + setupFee) * 0.15; // 15% VAT standard for KSA const grandTotal = subtotal + setupFee + vat; // Extract item names and quantities to pass into the WhatsApp trigger const primaryItemName = itemsToQuote[0].item.name; const primaryQty = itemsToQuote[0].qty; const invoiceHTML = `
Corporate Offer Estimate
${itemsRowsHTML}
Standard Layout Setup: SAR ${setupFee.toFixed(2)}
VAT (15%): SAR ${vat.toFixed(2)}
Estimated Total: SAR ${grandTotal.toFixed(2)}
`; const wrapper = document.createElement('div'); wrapper.classList.add('chat-bubble', 'agent'); wrapper.innerHTML = `I have generated your design estimate. Click the green button below to send this directly to my WhatsApp and Emails! ${invoiceHTML}`; chatStream.insertBefore(wrapper, typingBubble); scrollStreamToBottom(); speak(`I've compiled your customized price sheet. If you're happy with it, you can click the green button to send it directly to my WhatsApp and emails so we can process your order.`); } // Semantic Natural Language Parsing Engine function processAgentLogic(rawMsg) { const text = rawMsg.toLowerCase().replace(/[.,\/#!$%\^&\*;:{}=\-_`~()]/g,"").trim(); let parsedWords = text.split(" "); // 1. Identify User's Name if (text.startsWith("my name is") || text.includes("call me") || text.startsWith("im ")) { let extractedName = ""; if (text.startsWith("my name is")) extractedName = rawMsg.substring(10).trim(); else if (text.includes("call me")) extractedName = rawMsg.substring(rawMsg.indexOf("call me") + 7).trim(); else if (text.startsWith("im ")) extractedName = rawMsg.substring(3).trim(); if (extractedName) { sessionMemory.userName = extractedName; localStorage.setItem('tecUser', extractedName); const nameReply = `Nice to meet you, ${extractedName}! I have noted down your contact context. What product category are you working on?`; appendMessage(nameReply, 'agent'); speak(nameReply); return; } } // 2. Clear Conversational Intent Handles if (text === "show promotional catalog" || text === "view catalog" || text === "gift") { let catText = "Here is our current corporate promotional inventory with standard pricing:\n\n"; promotionalCatalog.forEach(p => { catText += `• ${p.name} (SAR ${p.price.toFixed(2)} | MOQ: ${p.moq} units)\n`; }); catText += "\nTo get an immediate estimated invoice, you can simply type something like: 'Get me a quote for 200 mugs', or click 'Request Quotation'."; appendMessage(catText, 'agent'); speak("I've pulled up our standard catalog list in the chat area."); return; } if (text.includes("contact") || text.includes("phone") || text.includes("email") || text.includes("get sales contact details") || text.includes("whatsapp")) { const contactText = `You can reach me (Fuad Hajj Hassan) directly on my mobile at +966 54 027 8889, or via email at fuad@tec-lines.com. Our offices are located in Dammam, KSA.`; appendMessage(contactText, 'agent'); speak("You can contact me directly on my cell at plus nine six six, five four, zero two seven, eight eight eight nine."); return; } if (text.includes("where") || text.includes("location") || text.includes("address") || text.includes("office") || text.includes("saudi")) { const locText = "Our Head Office and production facility is located in Dammam, Kingdom of Saudi Arabia (P.O. Box 53667, Dammam 31982). We service orders across KSA and regional areas."; appendMessage(locText, 'agent'); speak("We are located in Dammam, Saudi Arabia. Our manufacturing facility handles all national corporate accounts."); return; } // 3. Multi-Item and Quantity Extraction let extractedItems = []; let numberFound = null; for (let i = 0; i p.id === word || p.name.toLowerCase().includes(word)); if (matchedProd) { extractedItems.push({ item: matchedProd, qty: num }); break; } } } } if (extractedItems.length > 0) { let moqViolation = extractedItems.find(entry => entry.qty
Fuad — Technical Lines Assistant
Chat with Fuad 👋
`; } function appendMsg(text, role) { const msgs = document.getElementById('messages'); const typingRow = document.getElementById('typing'); const row = document.createElement('div'); row.className = 'msg-row ' + role; row.innerHTML = (role === 'bot' ? fuadAvatar() : userAvatar()) + `
${text}
`; msgs.insertBefore(row, typingRow); msgs.scrollTop = msgs.scrollHeight; } function sendChip(text) { document.getElementById('user-input').value = text; sendMsg(); } async function sendMsg() { const input = document.getElementById('user-input'); const text = input.value.trim(); if (!text) return; input.value = ''; appendMsg(text, 'user'); history.push({ role: 'user', content: text }); const typingRow = document.getElementById('typing'); typingRow.style.display = 'flex'; document.getElementById('messages').scrollTop = 99999; try { const res = await fetch('https://api.anthropic.com/v1/messages', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ model: 'claude-sonnet-4-20250514', max_tokens: 1000, system: SYSTEM_PROMPT, messages: history }) }); const data = await res.json(); const reply = data.content?.[0]?.text || "I'm having trouble connecting right now. Please contact us at sales@tec-lines.com or WhatsApp +966 531870667."; typingRow.style.display = 'none'; history.push({ role: 'assistant', content: reply }); appendMsg(reply.replace(/\n\n/g, '

').replace(/\n/g, '
'), 'bot'); } catch (err) { typingRow.style.display = 'none'; appendMsg('Connection issue. Please contact us at sales@tec-lines.com or WhatsApp +966 531870667.', 'bot'); } }

Home | Site Map | Privacy Policy | Terms of Use

2024 Technical Lines. All rights reserved.

Get in touch

Please contact us using the form below