444 lines
24 KiB
PHP
444 lines
24 KiB
PHP
<?php
|
|
|
|
namespace App\Views;
|
|
|
|
class LandingPage
|
|
{
|
|
public static function render(): string
|
|
{
|
|
return <<<'HTML'
|
|
<!DOCTYPE html>
|
|
<html lang="ar" dir="rtl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>منصة صَقِل التعليمية — الجيل الثاني للتمكين الأكاديمي والتوجيهي</title>
|
|
<!-- Google Fonts: Cairo -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap" rel="stylesheet">
|
|
|
|
<!-- Pure Luxury Self-Contained CSS -->
|
|
<style>
|
|
:root {
|
|
--bg-dark: #0B132B;
|
|
--bg-card: #16203D;
|
|
--bg-card-hover: #1E2C52;
|
|
--border: #2A3B66;
|
|
--border-focus: #00F5D4;
|
|
--text-primary: #FFFFFF;
|
|
--text-secondary: #CBD5E1;
|
|
--text-muted: #8E9FB8;
|
|
--accent-cyan: #00F5D4;
|
|
--accent-cyan-dark: #00BAA1;
|
|
--accent-gold: #FFD166;
|
|
--accent-purple: #A78BFA;
|
|
--accent-green: #10B981;
|
|
}
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Cairo', system-ui, -apple-system, sans-serif; }
|
|
|
|
body {
|
|
background-color: var(--bg-dark);
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
background-image:
|
|
radial-gradient(circle at 10% 15%, rgba(0, 245, 212, 0.08) 0%, transparent 45%),
|
|
radial-gradient(circle at 90% 40%, rgba(255, 209, 102, 0.06) 0%, transparent 45%),
|
|
radial-gradient(circle at 50% 85%, rgba(167, 139, 250, 0.05) 0%, transparent 50%),
|
|
linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
|
|
background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
|
|
}
|
|
|
|
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; }
|
|
|
|
/* Header */
|
|
header {
|
|
border-bottom: 1px solid var(--border);
|
|
background-color: rgba(11, 19, 43, 0.92);
|
|
backdrop-filter: blur(16px);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 50;
|
|
}
|
|
.header-content { height: 72px; display: flex; align-items: center; justify-content: space-between; }
|
|
.logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }
|
|
.logo-badge {
|
|
width: 44px; height: 44px; border-radius: 12px;
|
|
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
|
|
display: flex; align-items: center; justify-content: center;
|
|
color: #0B132B; font-size: 22px; font-weight: 900;
|
|
box-shadow: 0 0 24px rgba(0, 245, 212, 0.4);
|
|
}
|
|
.brand-title { font-size: 22px; font-weight: 900; color: #FFFFFF; letter-spacing: 0.5px; }
|
|
|
|
.nav-actions { display: flex; align-items: center; gap: 14px; }
|
|
.nav-btn {
|
|
font-size: 13.5px; font-weight: 700; padding: 8px 18px; border-radius: 10px; text-decoration: none;
|
|
transition: 0.2s; display: inline-flex; align-items: center; gap: 6px;
|
|
}
|
|
.nav-btn-ghost { color: var(--text-secondary); border: 1px solid transparent; }
|
|
.nav-btn-ghost:hover { color: #FFF; background: rgba(255,255,255,0.05); }
|
|
.nav-btn-gold {
|
|
background: rgba(255, 209, 102, 0.12); color: var(--accent-gold); border: 1px solid rgba(255, 209, 102, 0.35);
|
|
}
|
|
.nav-btn-gold:hover { background: rgba(255, 209, 102, 0.2); }
|
|
.nav-btn-cyan {
|
|
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark)); color: #0B132B;
|
|
font-weight: 900; box-shadow: 0 4px 16px rgba(0,245,212,0.3);
|
|
}
|
|
.nav-btn-cyan:hover { opacity: 0.95; transform: translateY(-1px); }
|
|
|
|
/* Hero Section */
|
|
.hero-section { padding: 80px 0 60px; text-align: center; position: relative; }
|
|
.hero-pill {
|
|
display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
|
|
background: rgba(0, 245, 212, 0.1); border: 1px solid rgba(0, 245, 212, 0.35);
|
|
color: var(--accent-cyan); padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
|
|
}
|
|
.hero-title {
|
|
font-size: clamp(32px, 5vw, 54px); font-weight: 900; line-height: 1.25; color: #FFFFFF;
|
|
max-width: 900px; margin: 0 auto 20px;
|
|
}
|
|
.hero-highlight-cyan {
|
|
background: linear-gradient(135deg, #00F5D4, #70E000);
|
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
|
}
|
|
.hero-highlight-gold {
|
|
background: linear-gradient(135deg, #FFD166, #F59E0B);
|
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
|
}
|
|
.hero-desc {
|
|
font-size: clamp(15px, 2vw, 18px); color: var(--text-secondary); max-width: 760px;
|
|
margin: 0 auto 36px; line-height: 1.7;
|
|
}
|
|
.hero-cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
|
|
.cta-btn-main {
|
|
padding: 14px 32px; font-size: 16px; font-weight: 900; border-radius: 12px; text-decoration: none;
|
|
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark)); color: #0B132B;
|
|
box-shadow: 0 8px 30px rgba(0, 245, 212, 0.35); transition: 0.2s; display: inline-flex; align-items: center; gap: 8px;
|
|
}
|
|
.cta-btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0, 245, 212, 0.45); }
|
|
.cta-btn-secondary {
|
|
padding: 14px 28px; font-size: 15px; font-weight: 800; border-radius: 12px; text-decoration: none;
|
|
background: var(--bg-card); color: #FFFFFF; border: 1px solid var(--border); transition: 0.2s;
|
|
}
|
|
.cta-btn-secondary:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
|
|
|
|
/* Trust Stats Bar */
|
|
.trust-bar {
|
|
display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px;
|
|
background: rgba(16, 26, 54, 0.7); border: 1px solid var(--border); border-radius: 20px;
|
|
padding: 24px 32px; backdrop-filter: blur(10px); margin-bottom: 70px;
|
|
}
|
|
.trust-item { text-align: center; }
|
|
.trust-num { font-size: 32px; font-weight: 900; color: var(--accent-cyan); display: block; }
|
|
.trust-label { font-size: 12.5px; color: var(--text-muted); font-weight: 700; margin-top: 4px; }
|
|
|
|
/* Pillar Section */
|
|
.section-header { text-align: center; margin-bottom: 48px; }
|
|
.section-tag {
|
|
font-size: 11.5px; font-weight: 800; color: var(--accent-gold); background: rgba(255,209,102,0.12);
|
|
border: 1px solid rgba(255,209,102,0.3); padding: 4px 14px; border-radius: 999px; display: inline-block; margin-bottom: 12px;
|
|
}
|
|
.section-title { font-size: 32px; font-weight: 900; color: #FFFFFF; margin-bottom: 12px; }
|
|
.section-subtitle { font-size: 15px; color: var(--text-muted); max-width: 650px; margin: 0 auto; line-height: 1.6; }
|
|
|
|
.features-grid {
|
|
display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 80px;
|
|
}
|
|
.feature-card {
|
|
background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 32px;
|
|
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; position: relative; overflow: hidden;
|
|
}
|
|
.feature-card:hover {
|
|
transform: translateY(-4px); border-color: var(--accent-cyan);
|
|
box-shadow: 0 16px 40px rgba(0, 245, 212, 0.12);
|
|
}
|
|
.card-icon {
|
|
width: 52px; height: 52px; border-radius: 14px; background: rgba(0, 245, 212, 0.1);
|
|
border: 1px solid rgba(0, 245, 212, 0.3); display: flex; align-items: center; justify-content: center;
|
|
color: var(--accent-cyan); font-size: 24px; margin-bottom: 20px;
|
|
}
|
|
.card-title { font-size: 19px; font-weight: 900; color: #FFFFFF; margin-bottom: 10px; }
|
|
.card-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }
|
|
|
|
/* Institutional Special Feature Banner */
|
|
.b2g-banner {
|
|
background: linear-gradient(135deg, #16203D 0%, #1A284D 100%);
|
|
border: 1px solid rgba(255, 209, 102, 0.4); border-radius: 24px; padding: 48px;
|
|
display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); margin-bottom: 80px; position: relative;
|
|
}
|
|
@media (max-width: 900px) { .b2g-banner { grid-template-columns: 1fr; padding: 32px; } }
|
|
|
|
.b2g-badge {
|
|
display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800;
|
|
background: rgba(255, 209, 102, 0.15); border: 1px solid rgba(255, 209, 102, 0.4);
|
|
color: var(--accent-gold); padding: 4px 14px; border-radius: 999px; margin-bottom: 16px;
|
|
}
|
|
.b2g-title { font-size: 28px; font-weight: 900; color: #FFFFFF; margin-bottom: 14px; line-height: 1.35; }
|
|
.b2g-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
|
|
.b2g-btn {
|
|
padding: 12px 28px; font-size: 14.5px; font-weight: 900; border-radius: 12px; text-decoration: none;
|
|
background: linear-gradient(135deg, #FFD166, #F59E0B); color: #0B132B; display: inline-flex; align-items: center; gap: 8px;
|
|
box-shadow: 0 6px 20px rgba(255, 209, 102, 0.35); transition: 0.2s;
|
|
}
|
|
.b2g-btn:hover { transform: translateY(-2px); }
|
|
|
|
.b2g-card-stat {
|
|
background: rgba(11, 19, 43, 0.85); border: 1px solid var(--border); border-radius: 18px; padding: 24px;
|
|
}
|
|
.b2g-stat-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
|
|
.b2g-stat-item:last-child { margin-bottom: 0; }
|
|
.b2g-icon-check {
|
|
width: 28px; height: 28px; border-radius: 8px; background: rgba(0, 245, 212, 0.15);
|
|
color: var(--accent-cyan); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; flex-shrink: 0;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
border-top: 1px solid var(--border); background: #070D1E; padding: 48px 0 24px; color: var(--text-muted); font-size: 13px;
|
|
}
|
|
.footer-grid {
|
|
display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px;
|
|
}
|
|
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
|
|
.footer-col-title { font-size: 14px; font-weight: 800; color: #FFFFFF; margin-bottom: 14px; }
|
|
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
|
|
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.2s; }
|
|
.footer-links a:hover { color: var(--accent-cyan); }
|
|
.footer-bottom {
|
|
border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="container">
|
|
<div class="header-content">
|
|
<a href="/" class="logo-area">
|
|
<div class="logo-badge">صـ</div>
|
|
<span class="brand-title">صَقِل</span>
|
|
</a>
|
|
|
|
<div class="nav-actions">
|
|
<a href="/military-culture" class="nav-btn nav-btn-gold">
|
|
<span>🇯🇴 خطة الثقافة العسكرية</span>
|
|
</a>
|
|
<a href="/teacher" class="nav-btn nav-btn-ghost">استوديو المعلمين</a>
|
|
<a href="/student" class="nav-btn nav-btn-cyan">دخول الطلاب 🚀</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero-section">
|
|
<div class="container">
|
|
<div class="hero-pill">
|
|
<span>⚡ الجيل الثاني لمنصات التمكين الأكاديمي والتوجيهي في الأردن</span>
|
|
</div>
|
|
|
|
<h1 class="hero-title">
|
|
لا نكتفي بعرض الفيديوهات.. <br>
|
|
نحن <span class="hero-highlight-cyan">نصقل فهم الطالب</span> ونضمن <span class="hero-highlight-gold">جاهزيته للوزاري</span>
|
|
</h1>
|
|
|
|
<p class="hero-desc">
|
|
أول منظومة تعليمية تفاعلية تعتمد التعلم السقراطي (Socratic Learning)، الكويزات الصدمية داخل الفيديو مع الإرجاع العلاجي، ومؤشر الجاهزية للوزاري المدعوم بالذكاء الاصطناعي.
|
|
</p>
|
|
|
|
<div class="hero-cta-group">
|
|
<a href="/student" class="cta-btn-main">
|
|
<span>ابدأ رحلة التميز كطالب ←</span>
|
|
</a>
|
|
<a href="/teacher" class="cta-btn-secondary">
|
|
<span>انضم كأستاذ معتمد (استوديو صَقِل) 👨🏫</span>
|
|
</a>
|
|
<a href="/military-culture" class="cta-btn-secondary" style="border-color: var(--accent-gold); color: var(--accent-gold);">
|
|
<span>مبادرة مديرية الثقافة العسكرية 🇯🇴</span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Trust Stats -->
|
|
<div class="trust-bar">
|
|
<div class="trust-item">
|
|
<span class="trust-num">100%</span>
|
|
<span class="trust-label">حماية محتوى DRM ضد القرصنة</span>
|
|
</div>
|
|
<div class="trust-item">
|
|
<span class="trust-num">0s</span>
|
|
<span class="trust-label">تأخير في الشات المباشر (Workerman)</span>
|
|
</div>
|
|
<div class="trust-item">
|
|
<span class="trust-num">4 مستويات</span>
|
|
<span class="trust-label">هرمية الامتحانات والتقييم المعرفي</span>
|
|
</div>
|
|
<div class="trust-item">
|
|
<span class="trust-num">91.4%</span>
|
|
<span class="trust-label">متوسط إتقان واستيعاب المفاهيم</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Core Pillars -->
|
|
<section style="padding: 40px 0;">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<span class="section-tag">الفلسفة التربوية والتقنية</span>
|
|
<h2 class="section-title">لماذا تُحدث صَقِل فارقاً حقيقياً في علامة الطالب؟</h2>
|
|
<p class="section-subtitle">
|
|
المنصات التقليدية تقدم تعليماً سلبياً (مشاهدة بدون قياس). صَقِل تحول المشاهدة إلى اشتباك ذهني إجباري يرسخ المعلومة.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="features-grid">
|
|
<!-- Card 1 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">🎬</div>
|
|
<h3 class="card-title">محرك التثبيت المعرفي السقراطي (Active Recall)</h3>
|
|
<p class="card-desc">
|
|
فحص لحظي ذكي لاستيعاب الطالب أثناء الحصة؛ يُلزم الطالب بالاشتباك الذهني وتأكيد فهم كل مفهوم قبل الانتقال إلى الفكرة التالية لضمان التمكن التام.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 2 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">🧠</div>
|
|
<h3 class="card-title">مؤشر الجاهزية للوزاري (Tawjihi Readiness)</h3>
|
|
<p class="card-desc">
|
|
تحليل تراكمي دقيق لمستوى فهم الطالب في كل مبحث، يرصد نقاط القوة والضعف ويحدد بدقة نسبة الجاهزية لدخول الامتحان الوزاري بتفوق.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 3 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">⚡</div>
|
|
<h3 class="card-title">قناة الإشراف والتواصل المباشر مع المعلمين</h3>
|
|
<p class="card-desc">
|
|
بيئة تفاعلية لحظية تتيح للطالب الاستفسار المباشر من أستاذه ومناقشة المسائل المعقدة دون أي عوائق تقنية أو تأخير.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 4 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">🔒</div>
|
|
<h3 class="card-title">حماية المحتوى والأمان الرقمي (DRM Shield)</h3>
|
|
<p class="card-desc">
|
|
بنية تحتية سيادية مشفرة بالكامل تحمي المواد التعليمية وحقوق المعلمين والمؤسسات من أي تسريب أو تصوير غير مصرح به.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 5 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">📲</div>
|
|
<h3 class="card-title">الدخول الذكي المعتمد (Passwordless Access)</h3>
|
|
<p class="card-desc">
|
|
تجربة وصول فائقة السلاسة والأمان عبر بطاقات التوثيق المعتمدة على الواتساب وبصمة الجهاز الموحدة وفق أعلى معايير الخصوصية.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Card 6 -->
|
|
<div class="feature-card">
|
|
<div class="card-icon">👨👩👧</div>
|
|
<h3 class="card-title">منظومة إشعار ومتابعة أولياء الأمور</h3>
|
|
<p class="card-desc">
|
|
تقارير دورية موجزة تصل لولي الأمر لإبقائه في قلب المسيرة التعليمية ومتابعة تحصيل ابنه وساعات دراسته ومؤشر تفوقه.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- B2G Institutional Banner -->
|
|
<div class="b2g-banner">
|
|
<div>
|
|
<div class="b2g-badge">🇯🇴 مبادرة الشراكة الاستراتيجية والمؤسسية</div>
|
|
<h2 class="b2g-title">حلول مخصصة لمديرية التربية والتعليم والثقافة العسكرية</h2>
|
|
<p class="b2g-desc">
|
|
نقدم للمديرية نموذجاً متكاملاً لشراء المخرجات والإنتاج بأقل التكاليف التشغيلية، مع توحيد جودة التعليم في مدارس البادية والمحافظات وغرفة عمليات مركزية لمتابعة إنجاز كل طالب.
|
|
</p>
|
|
<a href="/military-culture" class="b2g-btn">
|
|
<span>استعرض ملف المبادرة الاستراتيجية الكاملة ←</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="b2g-card-stat">
|
|
<div class="b2g-stat-item">
|
|
<div class="b2g-icon-check">✓</div>
|
|
<div>
|
|
<strong style="color: #FFF; font-size: 14px; display: block;">عدالة تعليمية شاملة</strong>
|
|
<span style="font-size: 12px; color: var(--text-muted);">نفس جودة نخبة المعلمين لجميع أبناء القوات المسلحة في كل المحافظات.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="b2g-stat-item">
|
|
<div class="b2g-icon-check">✓</div>
|
|
<div>
|
|
<strong style="color: #FFF; font-size: 14px; display: block;">لوحة قيادة مركزية للضباط</strong>
|
|
<span style="font-size: 12px; color: var(--text-muted);">متابعة تحصيل كل مدرسة وشعبة لحظياً بمؤشرات أداء واضحة.</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="b2g-stat-item">
|
|
<div class="b2g-icon-check">✓</div>
|
|
<div>
|
|
<strong style="color: #FFF; font-size: 14px; display: block;">توفير 80% من التكاليف</strong>
|
|
<span style="font-size: 12px; color: var(--text-muted);">إلغاء تكاليف المراكز والتنقل والطباعة مع مخرجات أعلى جودة.</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-grid">
|
|
<div>
|
|
<div class="logo-area" style="margin-bottom: 14px;">
|
|
<div class="logo-badge" style="width: 36px; height: 36px; font-size: 18px;">صـ</div>
|
|
<span class="brand-title" style="font-size: 19px;">منصة صَقِل</span>
|
|
</div>
|
|
<p style="font-size: 13px; line-height: 1.7; max-width: 380px;">
|
|
المنظومة الأردنية الرائدة في التمكين الأكاديمي والتعليم السقراطي الذكي لطلبة التوجيهي والمراحل الثانوية.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="footer-col-title">البوابات والخدمات</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="/student">بوابة الطالب الذكية</a></li>
|
|
<li><a href="/teacher">استوديو المعلمين ونظام الشراكة</a></li>
|
|
<li><a href="/military-culture">ملف مديرية الثقافة العسكرية</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="footer-col-title">الأمان والخصوصية</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="#">حماية المحتوى DRM</a></li>
|
|
<li><a href="#">السيادة الرقمية وتشفير البيانات</a></li>
|
|
<li><a href="#">معايير Zero-Trust</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<span>جميع الحقوق محفوظة © لمنصة صَقِل التعليمية 2026</span>
|
|
<span style="color: var(--accent-cyan);">بنية تحتية سحابية موثوقة • عمان، الأردن 🇯🇴</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
HTML;
|
|
}
|
|
}
|