C Y B E R I A

Multiple Brands, Multiple Products

Our Products

Home Our Products
Our ELV Products

Comprehensive
ELV Product Range

Structured Cabling & FTTH Solutions

Structured Cabling & FTTH Solutions

  • Copper & fiber optic cabling solutions
  • High-speed data, voice, and video connectivity
  • Scalable and future-ready network infrastructure
  • End-to-end structured cabling design & installation
  • Reliable backbone for IT & communication systems
Click Here

CCTV & Surveillance Security Solutions

CCTV & Surveillance Security Solutions

  • Advanced IP and Analog CCTV systems
  • NVR/DVR solutions for reliable recording and playback
  • High-definition monitoring for indoor & outdoor security
  • Remote access and mobile monitoring support
Click Here

Access Control Systems

Access Control Systems

  • Card, PIN, and biometric-based authentication
  • Smart door locks and secure entry management
  • Integration with CCTV and alarm systems
  • Centralized access monitoring and reporting
  • Scalable solutions for residential, commercial, and industrial projects
Click Here

Public Address & Background Music (PA & BGM)

Public Address & Background Music (PA & BGM)

  • Crystal-clear announcements across all areas
  • High-quality music for ambiance and comfort
  • Zone-wise audio control and management
  • Integration with emergency and fire alarm systems
  • Customizable for offices, malls, schools, and hotels
Click Here

Audio Visual (AV) Solutions

Audio Visual (AV) Solutions

  • Meeting & conference room AV integration
  • Digital signage and display solutions
  • Indoor & outdoor LED and LCD video walls
  • Projection systems with motorized screens
  • Audio & video conferencing solutions
  • Hotel TV and IPTV systems
  • Lighting and dimming control solutions
Click Here

Networking & Wi-Fi Solutions

Networking & Wi-Fi Solutions

  • High-speed wired and wireless connectivity
  • Enterprise-grade Wi-Fi solutions with seamless roaming
  • Secure and scalable LAN/WAN infrastructure
  • Network design, installation, and optimization
  • Advanced firewalls and secure VPN connectivity
Click Here

Intercom & Video Door Phone

Intercom & Video Door Phone

  • Clear audio and video communication for secure entry
  • Integration with access control and CCTV systems
  • Hands-free operation with modern touch panels
  • Remote access and mobile app connectivity
  • Customizable solutions for residential, commercial, and industrial projects
Click Here

Gate Barrier & Turnstile Systems

Gate Barrier & Turnstile Systems

  • Automated gate barriers for vehicle access control
  • Full-height and waist-height turnstiles for secure entry
  • Integration with RFID, biometrics, and access control systems
  • Durable designs for heavy-duty and continuous operation
  • Ideal for parking lots, offices, stadiums, and industrial facilities
Click Here

Smart Home Automation

Smart Home Automation

  • Control lighting, climate, curtains, and appliances
  • Voice assistant and mobile app integration
  • Enhanced security with smart locks and sensors
  • Energy-saving solutions for efficient living
  • Customizable automation for homes and offices
Click Here
CCTV Products — Expand & Show Options

CCTV Solution — Product Categories

Click a category on the left to view its available options on the right.

Choose a category

Select a category from the left to see cameras, recorders, lenses and accessories.

Products — Expandable List :root{--accent:#2563eb;--muted:#6b7280;--bg:#f8fafc} *{box-sizing:border-box} body{font-family:Inter,ui-sans-serif,system-ui,Segoe UI,Roboto,Arial;line-height:1.4;margin:0;background:var(--bg);color:#0f172a} .wrap{max-width:980px;margin:32px auto;padding:20px} header{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px} h1{font-size:20px;margin:0} .card{background:#fff;border-radius:12px;box-shadow:0 6px 18px rgba(2,6,23,0.06);padding:14px} .product{border-radius:10px;margin-bottom:10px;overflow:hidden;border:1px solid #e6eef8} .product-header{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;cursor:pointer} .product-title{display:flex;gap:12px;align-items:center} .badge{font-size:12px;color:var(--muted);background:#f1f5f9;padding:6px 8px;border-radius:999px} .chev{transition:transform .18s} .chev.open{transform:rotate(90deg)} .panel{padding:0 14px 14px;border-top:1px solid #f1f5f9;display:none} .panel.open{display:block} .controls{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0} .btn{border:0;padding:8px 10px;border-radius:8px;background:var(--accent);color:#fff;cursor:pointer;font-size:13px} .btn.ghost{background:#fff;color:var(--accent);border:1px solid rgba(37,99,235,.12)} ul.items{list-style:none;padding:0;margin:6px 0} li.item{display:flex;align-items:center;gap:10px;padding:8px;border-radius:8px} li.item:nth-child(odd){background:#fbfdff} label{cursor:pointer} footer.toolbox{display:flex;justify-content:space-between;align-items:center;margin-top:16px} .summary{color:var(--muted)} pre.output{white-space:pre-wrap;background:#0f172a;color:#fff;padding:12px;border-radius:8px;margin-top:12px} @media (max-width:520px){.product-header{padding:10px}.wrap{padding:12px}}

Products — Expand & Select

Click a product to expand and choose sub-products.
0 selected
// Sample data: replace or load from server dynamically const products = [ { id: 'p1', title: 'Structured Cabling', items: ['CAT6 Installation','Fiber Optic (FTTH)','Cable Testing & Certification','Cable Tray & Ladder'] }, { id: 'p2', title: 'CCTV & Surveillance', items: ['IP Cameras','NVR / DVR','PTZ Cameras','Analytics & VMS'] }, { id: 'p3', title: 'Access Control', items: ['Card Readers','Biometric Systems','Turnstiles','Access Management Software'] }, { id: 'p4', title: 'Smart Home Automation', items: ['Lighting Control','Climate Control','Voice Integration','Mobile App Scenes'] } ]; const root = document.getElementById('productsRoot'); const selectedCountEl = document.getElementById('selectedCount'); const outputEl = document.getElementById('output'); // Track selections in a Set of "productId:itemIndex" strings const selected = new Set(); function render(){ root.innerHTML = ''; products.forEach(prod => { const prodWrap = document.createElement('div'); prodWrap.className = 'product'; const header = document.createElement('div'); header.className = 'product-header'; header.role = 'button'; header.tabIndex = 0; const titleWrap = document.createElement('div'); titleWrap.className = 'product-title'; titleWrap.innerHTML = `${prod.title}${prod.items.length} items`; const right = document.createElement('div'); right.innerHTML = ``; header.appendChild(titleWrap); header.appendChild(right); const panel = document.createElement('div'); panel.className = 'panel'; // Controls: select all / clear const controls = document.createElement('div'); controls.className = 'controls'; const selectAllBtn = document.createElement('button'); selectAllBtn.className = 'btn ghost'; selectAllBtn.textContent = 'Select all'; selectAllBtn.addEventListener('click', (e)=>{ e.stopPropagation(); prod.items.forEach((it,idx)=> selected.add(prod.id+':'+idx)); updateCount(); render(); }); const clearBtn = document.createElement('button'); clearBtn.className = 'btn ghost'; clearBtn.textContent = 'Clear'; clearBtn.addEventListener('click',(e)=>{ e.stopPropagation(); prod.items.forEach((it,idx)=> selected.delete(prod.id+':'+idx)); updateCount(); render(); }); controls.appendChild(selectAllBtn); controls.appendChild(clearBtn); panel.appendChild(controls); const ul = document.createElement('ul'); ul.className = 'items'; prod.items.forEach((it, idx)=>{ const li = document.createElement('li'); li.className = 'item'; const id = `${prod.id}_${idx}`; const checked = selected.has(prod.id+':'+idx); li.innerHTML = ` `; const input = li.querySelector('input'); input.addEventListener('click', (ev)=>{ ev.stopPropagation(); if(input.checked) selected.add(prod.id+':'+idx); else selected.delete(prod.id+':'+idx); updateCount(); // don't re-render full tree to preserve open/close state }); ul.appendChild(li); }); panel.appendChild(ul); // Toggle open/close let isOpen = false; function toggle(open){ isOpen = typeof open === 'boolean' ? open : !isOpen; panel.classList.toggle('open', isOpen); right.querySelector('.chev').classList.toggle('open', isOpen); } header.addEventListener('click', ()=> toggle()); header.addEventListener('keydown', (e)=>{ if(e.key === 'Enter' || e.key === ' ') { e.preventDefault(); toggle(); } }); prodWrap.appendChild(header); prodWrap.appendChild(panel); root.appendChild(prodWrap); }); } function updateCount(){ selectedCountEl.textContent = `${selected.size} selected`; } // Global controls document.getElementById('showSelected').addEventListener('click', ()=>{ if(selected.size === 0){ outputEl.style.display = 'block'; outputEl.textContent = 'No items selected.'; return; } const arr = Array.from(selected).map(s => { const [pid, idx] = s.split(':'); const prod = products.find(p=>p.id===pid); return `${prod.title} → ${prod.items[Number(idx)]}`; }); outputEl.style.display = 'block'; outputEl.textContent = arr.join('\n'); }); document.getElementById('clearAll').addEventListener('click', ()=>{ selected.clear(); updateCount(); render(); outputEl.style.display = 'none'; }); // Initial render render(); updateCount();