{"id":1399,"date":"2026-06-01T16:54:44","date_gmt":"2026-06-01T16:54:44","guid":{"rendered":"https:\/\/sadeed-em.com\/?page_id=1399"},"modified":"2026-06-16T14:04:01","modified_gmt":"2026-06-16T14:04:01","slug":"services","status":"publish","type":"page","link":"https:\/\/sadeed-em.com\/ar\/services\/","title":{"rendered":"Platform"},"content":{"rendered":"<style data-wp-block-html=\"css\">\n\/* ============================================================\n   REVEAL BASE\n============================================================ *\/\n.pf-reveal {\n  opacity:1;\n  transform: translateY(30px);\n  transition: all 0.8s ease;\n}\n\n.pf-reveal.pf-visible {\n  opacity:1;\n  transform: translateY(0);\n}\n\n\/* stagger delay *\/\n.pf-card:nth-child(1){ transition-delay:.1s; }\n.pf-card:nth-child(2){ transition-delay:.2s; }\n.pf-card:nth-child(3){ transition-delay:.3s; }\n.pf-card:nth-child(4){ transition-delay:.4s; }\n\n\/* ============================================================\n   CARD HOVER UPGRADE\n============================================================ *\/\n.pf-card {\n  position:relative;\n  background:#0f172a;\n  padding:20px;\n  border-radius:14px;\n  border:1px solid #1e293b;\n  transition:.3s;\n  transform-style: preserve-3d;\n}\n\n.pf-card:hover {\n  transform: translateY(-8px) scale(1.02);\n  box-shadow: 0 20px 40px rgba(0,0,0,0.6);\n  border-color:#38bdf8;\n}\n\n\/* glow effect *\/\n.pf-card::before {\n  content:\"\";\n  position:absolute;\n  inset:0;\n  border-radius:14px;\n  opacity:0;\n  background: radial-gradient(circle at top left, rgba(56,189,248,.3), transparent 40%);\n  transition:.4s;\n  pointer-events:none;\n}\n\n.pf-card:hover::before {\n  opacity:1;\n}\n\n\/* ============================================================\n   GRADIENT BLUE TITLES\n============================================================ *\/\n.pf-card h3 {\n  font-size:20px;\n  margin-bottom:8px;\n  background: linear-gradient(135deg, #38bdf8, #60a5fa);\n  -webkit-background-clip: text;\n  -webkit-text-fill-color: transparent;\n}\n\n\/* ============================================================\n   WHITE DESCRIPTION\n============================================================ *\/\n.pf-card p {\n  color:#ffffff !important;\n  line-height:1.7;\n}\n\n\/* ============================================================\n   FLOW ANIMATION\n============================================================ *\/\n.pf-flow span {\n  transition: .3s;\n}\n\n.pf-flow span:hover {\n  background:#0369a1;\n  transform: scale(1.08);\n}\n\n\/* ============================================================\n   BADGE PULSE\n============================================================ *\/\n.pf-badge {\n  position:relative;\n}\n\n.pf-badge::after {\n  content:\"\";\n  position:absolute;\n  inset:0;\n  border-radius:999px;\n  animation: pulseGlow 2s infinite;\n}\n\n@keyframes pulseGlow {\n  0%{ box-shadow:0 0 0 0 rgba(56,189,248,.4); }\n  70%{ box-shadow:0 0 0 15px rgba(56,189,248,0); }\n  100%{ box-shadow:0 0 0 0 rgba(56,189,248,0); }\n}\n\n\/* ============================================================\n   BASE PLATFORM STYLES\n============================================================ *\/\n.smsos-platform {\n  background:#020617;\n  color:#e2e8f0;\n  font-family:Inter;\n}\n\n.pf-container {\n  max-width:1100px;\n  margin:auto;\n  padding:0 20px;\n}\n\n\/* hero *\/\n.pf-hero {\n  text-align:center;\n  padding:80px 20px;\n}\n\n.pf-badge {\n  display:inline-block;\n  padding:6px 12px;\n  border-radius:999px;\n  background:#0f172a;\n  border:1px solid #1e293b;\n  color:#38bdf8;\n  font-size:12px;\n}\n\n.pf-hero h1 {\n  font-size:46px;\n  margin-top:20px;\n}\n\n.pf-lead {\n  color:#94a3b8;\n  max-width:700px;\n  margin:20px auto;\n}\n\n\/* sections *\/\n.pf-section {\n  padding:60px 0;\n}\n\n\/* grid *\/\n.pf-grid {\n  display:grid;\n  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));\n  gap:20px;\n  margin-top:20px;\n}\n\n\/* flow *\/\n.pf-flow {\n  display:flex;\n  justify-content:center;\n  gap:10px;\n  margin-top:20px;\n}\n\n.pf-flow span {\n  padding:6px 12px;\n  background:#0f172a;\n  border-radius:8px;\n  border:1px solid #1e293b;\n}\n\n\/* CTA *\/\n.pf-cta {\n  text-align:center;\n  padding:80px 20px;\n}\n\n.pf-btn {\n  padding:12px 20px;\n  background:#38bdf8;\n  color:#020617;\n  border-radius:10px;\n  margin-right:10px;\n}\n\n.pf-btn-outline {\n  padding:12px 20px;\n  border:1px solid #38bdf8;\n  border-radius:10px;\n}\n\n<\/style>\n\n<script data-wp-block-html=\"js\">\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n\n  const revealElements = document.querySelectorAll(\".pf-reveal\");\n\n  \/\/ \u0625\u0630\u0627 \u0627\u0644\u0645\u062a\u0635\u0641\u062d \u064a\u062f\u0639\u0645 IntersectionObserver\n  if (\"IntersectionObserver\" in window) {\n\n    const observer = new IntersectionObserver((entries) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add(\"pf-visible\");\n          observer.unobserve(entry.target); \/\/ \u064a\u0638\u0647\u0631 \u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0641\u0642\u0637\n        }\n      });\n    }, { threshold: 0.15 });\n\n    revealElements.forEach(el => observer.observe(el));\n\n  } else {\n    \/\/ fallback \u0644\u0644\u0645\u062a\u0635\u0641\u062d\u0627\u062a \u0627\u0644\u0642\u062f\u064a\u0645\u0629\n    revealElements.forEach(el => el.classList.add(\"pf-visible\"));\n  }\n\n});\n\n<\/script>\n\n<div class=\"smsos-platform\">\n\n<!-- HERO -->\n<section class=\"pf-hero pf-reveal\">\n  <div class=\"pf-container\">\n\n    <div class=\"pf-badge\">SM\u2011SOS Platform<\/div>\n\n    <h1>\n      The Operating System for Marine Operations\n    <\/h1>\n\n    <p class=\"pf-lead\">\n      SM\u2011SOS unifies diagnostics, predictive intelligence, workflows,\n      and reporting into one structured system for fleet operations.\n    <\/p>\n\n  <\/div>\n<\/section>\n\n\n<!-- CORE ARCHITECTURE -->\n<section class=\"pf-section pf-reveal\">\n  <div class=\"pf-container\">\n\n    <h2>Core Architecture<\/h2>\n\n    <div class=\"pf-grid\">\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Intake Layer<\/h3>\n        <p>Captures <strong>operational data<\/strong> and generates structured actions.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Workflow Engine<\/h3>\n        <p>Controls <strong>execution and processes<\/strong> with full traceability.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Predictive Engine<\/h3>\n        <p>Analyzes <strong>telemetry patterns<\/strong> to predict failures.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Reporting Layer<\/h3>\n        <p>Transforms data into <strong>measurable intelligence<\/strong>.<\/p>\n      <\/div>\n\n    <\/div>\n  <\/div>\n<\/section>\n\n\n<!-- PLATFORM CAPABILITIES -->\n<section class=\"pf-section pf-reveal\">\n  <div class=\"pf-container\">\n\n    <h2>Platform Capabilities<\/h2>\n\n    <div class=\"pf-grid\">\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Vessel Diagnostics<\/h3>\n        <p>Real\u2011time engine data and system monitoring.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Predictive Maintenance<\/h3>\n        <p>Identify failures before they impact operations.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Operational Logic<\/h3>\n        <p>Automated workflows, alerts, and response logic.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Fleet Intelligence<\/h3>\n        <p>Fleet-wide visibility and performance analytics.<\/p>\n      <\/div>\n\n    <\/div>\n  <\/div>\n<\/section>\n\n\n<!-- INTEGRATION LAYER -->\n<section class=\"pf-section pf-reveal\">\n  <div class=\"pf-container\">\n\n    <h2>Integration Layer<\/h2>\n\n    <p class=\"pf-lead\">\n      SM\u2011SOS connects seamlessly with marine systems and onboard equipment.\n    <\/p>\n\n    <div class=\"pf-grid\">\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Protocols<\/h3>\n        <p>NMEA 2000, CAN Bus, IoT Sensors, APIs.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Hardware<\/h3>\n        <p>Engines, generators, and onboard electronics.<\/p>\n      <\/div>\n\n    <\/div>\n\n  <\/div>\n<\/section>\n\n\n<!-- OPERATIONAL MODEL -->\n<section class=\"pf-section pf-reveal\">\n  <div class=\"pf-container\">\n\n    <h2>Operational Model<\/h2>\n\n    <div class=\"pf-flow pf-reveal\">\n      <span>Detect<\/span>\n      <span>\u2192<\/span>\n      <span>Predict<\/span>\n      <span>\u2192<\/span>\n      <span>Execute<\/span>\n      <span>\u2192<\/span>\n      <span>Measure<\/span>\n    <\/div>\n\n  <\/div>\n<\/section>\n\n\n<!-- OUTCOMES -->\n<section class=\"pf-section pf-reveal\">\n  <div class=\"pf-container\">\n\n    <h2>Outcomes<\/h2>\n\n    <div class=\"pf-grid\">\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Reduced Downtime<\/h3>\n        <p>Prevent failures before they occur.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Higher Efficiency<\/h3>\n        <p>Optimize system performance and workflows.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Extended Lifespan<\/h3>\n        <p>Smarter maintenance cycles for assets.<\/p>\n      <\/div>\n\n      <div class=\"pf-card pf-reveal\">\n        <h3>Lower Cost<\/h3>\n        <p>Better control reduces operational waste.<\/p>\n      <\/div>\n\n    <\/div>\n\n  <\/div>\n<\/section>\n\n\n<!-- CTA -->\n<section class=\"pf-cta pf-reveal\">\n  <div class=\"pf-container\">\n\n    <h2>Understand the system. Experience it live.<\/h2>\n\n    <div class=\"pf-actions\">\n      <a href=\"\/ar\/sm-sos-operations\/\" class=\"pf-btn\">Launch Live Operations<\/a>\n      <a href=\"\/ar\/contact\/\" class=\"pf-btn-outline\">Request Demo<\/a>\n    <\/div>\n\n  <\/div>\n<\/section>\n\n<\/div>\n\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>","protected":false},"excerpt":{"rendered":"<p>SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"pagelayer_contact_templates":[],"_pagelayer_content":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-1399","page","type-page","status-publish","hentry"],"blocksy_meta":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"google-site-verification\" content=\"efi42OeqP8tPMgLmvVCRA7XIgy-Q0c6gbR1hDyPj9G8\" \/>\n\t<meta name=\"msvalidate.01\" content=\"https:\/\/sadeed-em.com\/sitemap.xml\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/sadeed-em.com\/ar\/services\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"ar_AR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Company Sadeed Arabia for Marine Engineering and Maintenance LLC - Smart Marine Engineering &amp; Operational Excellence\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC\" \/>\n\t\t<meta property=\"og:description\" content=\"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/sadeed-em.com\/ar\/services\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/10\/\u064a\u062e\u062a-\u0645\u062d\u062f\u062b.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/10\/\u064a\u062e\u062a-\u0645\u062d\u062f\u062b.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1688\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1125\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-06-01T16:54:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-16T14:04:01+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/Sadeed-Smart-marine\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@Sadeed-Smart-marine\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC\" \/>\n\t\t<meta name=\"twitter:description\" content=\"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@Sadeed-Smart-marine\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/10\/\u064a\u062e\u062a-\u0645\u062d\u062f\u062b.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sadeed-em.com\\\/ar\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#listItem\",\"name\":\"Platform\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#listItem\",\"position\":2,\"name\":\"Platform\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/#organization\",\"name\":\"Company Sadeed Arabia for Marine Engineering and Maintenance LLC https:\\\/\\\/sadeed-em.com\",\"description\":\"Smart Marine Engineering & Operational Excellence \\u0634\\u0631\\u0643\\u0629 \\u0647\\u0646\\u062f\\u0633\\u064a\\u0629 \\u0628\\u062d\\u0631\\u064a\\u0629 \\u0633\\u0639\\u0648\\u062f\\u064a\\u0629 \\u062a\\u064f\\u0639\\u064a\\u062f \\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062a\\u0634\\u063a\\u064a\\u0644 \\u0643\\u0640 \\u062e\\u0631\\u064a\\u0637\\u0629 \\u0625\\u062f\\u0631\\u0627\\u0643 \\u062d\\u064a\\u0651\\u0629\\u060c \\u062a\\u0631\\u0628\\u0637 \\u0627\\u0644\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u064a\\u0629 \\u0628\\u0627\\u0644\\u062a\\u0642\\u0646\\u064a\\u0627\\u062a \\u0627\\u0644\\u0630\\u0643\\u064a\\u0629 \\u0644\\u062a\\u0641\\u0639\\u064a\\u0644 \\u0627\\u0644\\u0635\\u064a\\u0627\\u0646\\u0629 \\u0627\\u0644\\u0627\\u0633\\u062a\\u0628\\u0627\\u0642\\u064a\\u0629\\u060c \\u0648\\u062a\\u062d\\u0642\\u064a\\u0642 \\u0627\\u0644\\u0633\\u0644\\u0627\\u0645\\u0629 \\u0639\\u0628\\u0631 \\u062a\\u0648\\u0642\\u064a\\u0639\\u0627\\u062a \\u0631\\u0645\\u0632\\u064a\\u0629 \\u0644\\u0643\\u0644 \\u0639\\u0645\\u0644\\u064a\\u0629.\",\"url\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/\",\"telephone\":\"+966541747758\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/sadeed-em.com\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/logo-Sadeed-em.png\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#organizationLogo\",\"width\":1024,\"height\":1024},\"image\":{\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/Sadeed-Smart-marine\",\"https:\\\/\\\/x.com\\\/Sadeed-Smart-marine\",\"https:\\\/\\\/instagram.com\\\/Sadeed-Smart-marine\",\"https:\\\/\\\/tiktok.com\\\/@Sadeed-Smart-marine\",\"https:\\\/\\\/linkedin.com\\\/in\\\/Sadeed-Smart-marine\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#webpage\",\"url\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/\",\"name\":\"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC\",\"description\":\"SM\\u2011SOS Platform The Operating System for Marine Operations SM\\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data\",\"inLanguage\":\"ar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/services\\\/#breadcrumblist\"},\"datePublished\":\"2026-06-01T16:54:44+00:00\",\"dateModified\":\"2026-06-16T14:04:01+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/#website\",\"url\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/\",\"name\":\"Company Sadeed Arabia for Marine Engineering and Maintenance LLC\",\"description\":\"Smart Marine Engineering & Operational Excellence\",\"inLanguage\":\"ar\",\"publisher\":{\"@id\":\"https:\\\/\\\/sadeed-em.com\\\/ar\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC<\/title>\n\n","aioseo_head_json":{"title":"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC","description":"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data","canonical_url":"https:\/\/sadeed-em.com\/ar\/services\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"efi42OeqP8tPMgLmvVCRA7XIgy-Q0c6gbR1hDyPj9G8","msvalidate.01":"https:\/\/sadeed-em.com\/sitemap.xml","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/sadeed-em.com\/ar\/services\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/sadeed-em.com\/ar#listItem","position":1,"name":"Home","item":"https:\/\/sadeed-em.com\/ar","nextItem":{"@type":"ListItem","@id":"https:\/\/sadeed-em.com\/ar\/services\/#listItem","name":"Platform"}},{"@type":"ListItem","@id":"https:\/\/sadeed-em.com\/ar\/services\/#listItem","position":2,"name":"Platform","previousItem":{"@type":"ListItem","@id":"https:\/\/sadeed-em.com\/ar#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/sadeed-em.com\/ar\/#organization","name":"Company Sadeed Arabia for Marine Engineering and Maintenance LLC https:\/\/sadeed-em.com","description":"Smart Marine Engineering & Operational Excellence \u0634\u0631\u0643\u0629 \u0647\u0646\u062f\u0633\u064a\u0629 \u0628\u062d\u0631\u064a\u0629 \u0633\u0639\u0648\u062f\u064a\u0629 \u062a\u064f\u0639\u064a\u062f \u062a\u0639\u0631\u064a\u0641 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0643\u0640 \u062e\u0631\u064a\u0637\u0629 \u0625\u062f\u0631\u0627\u0643 \u062d\u064a\u0651\u0629\u060c \u062a\u0631\u0628\u0637 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062d\u064a\u0629 \u0628\u0627\u0644\u062a\u0642\u0646\u064a\u0627\u062a \u0627\u0644\u0630\u0643\u064a\u0629 \u0644\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0635\u064a\u0627\u0646\u0629 \u0627\u0644\u0627\u0633\u062a\u0628\u0627\u0642\u064a\u0629\u060c \u0648\u062a\u062d\u0642\u064a\u0642 \u0627\u0644\u0633\u0644\u0627\u0645\u0629 \u0639\u0628\u0631 \u062a\u0648\u0642\u064a\u0639\u0627\u062a \u0631\u0645\u0632\u064a\u0629 \u0644\u0643\u0644 \u0639\u0645\u0644\u064a\u0629.","url":"https:\/\/sadeed-em.com\/ar\/","telephone":"+966541747758","logo":{"@type":"ImageObject","url":"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/08\/logo-Sadeed-em.png","@id":"https:\/\/sadeed-em.com\/ar\/services\/#organizationLogo","width":1024,"height":1024},"image":{"@id":"https:\/\/sadeed-em.com\/ar\/services\/#organizationLogo"},"sameAs":["https:\/\/facebook.com\/Sadeed-Smart-marine","https:\/\/x.com\/Sadeed-Smart-marine","https:\/\/instagram.com\/Sadeed-Smart-marine","https:\/\/tiktok.com\/@Sadeed-Smart-marine","https:\/\/linkedin.com\/in\/Sadeed-Smart-marine"]},{"@type":"WebPage","@id":"https:\/\/sadeed-em.com\/ar\/services\/#webpage","url":"https:\/\/sadeed-em.com\/ar\/services\/","name":"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC","description":"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data","inLanguage":"ar","isPartOf":{"@id":"https:\/\/sadeed-em.com\/ar\/#website"},"breadcrumb":{"@id":"https:\/\/sadeed-em.com\/ar\/services\/#breadcrumblist"},"datePublished":"2026-06-01T16:54:44+00:00","dateModified":"2026-06-16T14:04:01+00:00"},{"@type":"WebSite","@id":"https:\/\/sadeed-em.com\/ar\/#website","url":"https:\/\/sadeed-em.com\/ar\/","name":"Company Sadeed Arabia for Marine Engineering and Maintenance LLC","description":"Smart Marine Engineering & Operational Excellence","inLanguage":"ar","publisher":{"@id":"https:\/\/sadeed-em.com\/ar\/#organization"}}]},"og:locale":"ar_AR","og:site_name":"Company Sadeed Arabia for Marine Engineering and Maintenance LLC - Smart Marine Engineering &amp; Operational Excellence","og:type":"article","og:title":"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC","og:description":"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data","og:url":"https:\/\/sadeed-em.com\/ar\/services\/","og:image":"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/10\/\u064a\u062e\u062a-\u0645\u062d\u062f\u062b.png","og:image:secure_url":"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/10\/\u064a\u062e\u062a-\u0645\u062d\u062f\u062b.png","og:image:width":1688,"og:image:height":1125,"article:published_time":"2026-06-01T16:54:44+00:00","article:modified_time":"2026-06-16T14:04:01+00:00","article:publisher":"https:\/\/facebook.com\/Sadeed-Smart-marine","twitter:card":"summary_large_image","twitter:site":"@Sadeed-Smart-marine","twitter:title":"Platform - Company Sadeed Arabia for Marine Engineering and Maintenance LLC","twitter:description":"SM\u2011SOS Platform The Operating System for Marine Operations SM\u2011SOS unifies diagnostics, predictive intelligence, workflows, and reporting into one structured system for fleet operations. Core Architecture Intake Layer Captures operational data and generates structured actions. Workflow Engine Controls execution and processes with full traceability. Predictive Engine Analyzes telemetry patterns to predict failures. Reporting Layer Transforms data","twitter:creator":"@Sadeed-Smart-marine","twitter:image":"https:\/\/sadeed-em.com\/wp-content\/uploads\/2025\/10\/\u064a\u062e\u062a-\u0645\u062d\u062f\u062b.png"},"aioseo_meta_data":{"post_id":"1399","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-06-16 14:04:37","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":"0","open_ai":null,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-06-01 16:52:41","updated":"2026-06-16 14:40:10"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/sadeed-em.com\/ar\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\tPlatform\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/sadeed-em.com\/ar"},{"label":"Platform","link":"https:\/\/sadeed-em.com\/ar\/services\/"}],"_links":{"self":[{"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/pages\/1399","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/comments?post=1399"}],"version-history":[{"count":4,"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/pages\/1399\/revisions"}],"predecessor-version":[{"id":1474,"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/pages\/1399\/revisions\/1474"}],"wp:attachment":[{"href":"https:\/\/sadeed-em.com\/ar\/wp-json\/wp\/v2\/media?parent=1399"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}