Spaces:
Running
Running
File size: 39,120 Bytes
62f6511 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 |
<!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>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');
body {
font-family: 'Tajawal', sans-serif;
transition: all 0.3s ease;
}
.hero-gradient {
background: linear-gradient(135deg, #1a56db 0%, #0e4a8a 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.section-divider {
height: 80px;
background: linear-gradient(to bottom right, transparent 49%, #f8fafc 50%),
linear-gradient(to top right, #f8fafc 49%, transparent 50%);
}
.platform-section {
background-color: #f8fafc;
}
.btn-primary {
background-color: #1a56db;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #0e4a8a;
transform: translateY(-2px);
}
.qr-scanner {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url('https://images.unsplash.com/photo-1588436707808-88f443b76494?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
background-size: cover;
background-position: center;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse-animation {
animation: pulse 2s infinite;
}
</style>
</head>
<body class="text-gray-800">
<!-- Header -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="w-12 h-12 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold text-xl">
ف
</div>
<h1 class="mr-3 text-xl font-bold text-blue-600">فاحص</h1>
</div>
<nav class="hidden md:flex space-x-8 space-x-reverse">
<a href="#features" class="font-medium hover:text-blue-600">المميزات</a>
<a href="#platform" class="font-medium hover:text-blue-600">المنصة</a>
<a href="#examination" class="font-medium hover:text-blue-600">الفحص</a>
<a href="#government" class="font-medium hover:text-blue-600">للحكومة</a>
<a href="#account" class="font-medium hover:text-blue-600">حسابي</a>
<a href="#app" class="font-medium hover:text-blue-600">التطبيق</a>
</nav>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white py-20">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="flex items-center space-x-4 space-x-reverse mb-6">
<img src="https://logo.clearbit.com/moh.gov.sa" class="h-12" alt="وزارة الصحة">
<img src="https://logo.clearbit.com/gdp.gov.sa" class="h-12" alt="الجوازات">
<img src="https://logo.clearbit.com/mol.gov.sa" class="h-12" alt="وزارة العمل">
</div>
<h1 class="text-4xl md:text-5xl font-bold mb-6">أول تطبيق متكامل لفحوصات الوافدين</h1>
<p class="text-xl mb-8 leading-relaxed">منصة "فاحص" توفر حلولاً متكاملة للفحوصات الطبية للوافدين إلى المملكة العربية السعودية، مع ربط مباشر مع أنظمة الهيئات الحكومية لضمان صحة الوفد وسلامته.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4 sm:space-x-reverse">
<button class="bg-white text-blue-600 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition flex items-center justify-center pulse-animation">
<i class="fab fa-google-play ml-2"></i>
حمل التطبيق
</button>
<button class="border border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:text-blue-600 transition">
تعرف على المنصة
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-full max-w-md">
<div class="absolute -top-10 -right-10 w-40 h-40 bg-blue-400 rounded-full opacity-20"></div>
<div class="absolute -bottom-10 -left-10 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div>
<img src="https://images.unsplash.com/photo-1581093450928-0f3e1c179209?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="relative rounded-lg shadow-2xl" alt="منصة فاحص">
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4 text-blue-600">المميزات الرئيسية</h2>
<p class="text-lg max-w-2xl mx-auto">منصة فاحص توفر حلولاً متكاملة لفحص صحة الوافدين بكفاءة ودقة عالية</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">أجهزة محمولة</h3>
<p class="text-gray-600">إمكانية إجراء الفحوصات باستخدام الأجهزة المحمولة في مراكز الفحص المعتمدة</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-bolt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">فحص فوري</h3>
<p class="text-gray-600">نتائج فورية للفحوصات الأساسية مع تقارير مفصلة على الفور</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-cloud-upload-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">نقل سريع</h3>
<p class="text-gray-600">نقل النتائج إلى السحابة الإلكترونية بشكل آلي وسريع</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-link text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">ربط حكومي</h3>
<p class="text-gray-600">ربط مباشر مع أنظمة الهيئات الحكومية المعنية بالوافدين</p>
</div>
</div>
</div>
</section>
<!-- Video Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:mr-8">
<h2 class="text-3xl font-bold mb-4 text-blue-600">كيف تعمل منصة فاحص؟</h2>
<p class="text-lg mb-6">شاهد هذا الفيديو التوضيحي لتعرف كيف تقوم منصة فاحص بتبسيط عملية الفحص الصحي للوافدين وتوفير الوقت والجهد لجميع الأطراف المعنية.</p>
<button class="btn-primary text-white font-bold py-3 px-8 rounded-lg flex items-center">
<i class="fas fa-play ml-2"></i> تشغيل الفيديو
</button>
</div>
<div class="md:w-1/2 relative">
<div class="rounded-xl overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1551269901-5c5e14c25df7?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="w-full h-auto" alt="فيديو توضيحي">
<div class="absolute inset-0 flex items-center justify-center">
<div class="w-16 h-16 bg-blue-600 rounded-full flex items-center justify-center opacity-90 hover:opacity-100 transition cursor-pointer">
<i class="fas fa-play text-white text-xl"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Platform Section - Examination -->
<section id="platform" class="py-16 platform-section">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4 text-blue-600">منصة فاحص المتكاملة</h2>
<p class="text-lg max-w-3xl mx-auto">إجراء الفحوصات وإدارة النتائج وتوفير المعلومات للجهات المعنية في منصة واحدة متكاملة</p>
</div>
</div>
</section>
<!-- Examination Section -->
<section id="examination" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:order-last lg:pl-12">
<img src="https://images.unsplash.com/photo-1581595219315-a187dd40c322?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="rounded-lg shadow-xl" alt="نموذج الفحص">
</div>
<div class="lg:w-1/2">
<h2 class="text-3xl font-bold mb-6 text-blue-600">نموذج الفحص الصحي</h2>
<p class="text-lg mb-8">إجراء الفحص الصحي الشامل للوافدين بخطوات بسيطة وسريعة مع ربط النتائج بالأنظمة الحكومية المعنية.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-user text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">تسجيل بيانات المفحوص</h3>
<p class="text-gray-600">إدخال معلومات المفحوص الأساسية (الاسم، رقم الجواز، الجنسية، نوع التأشيرة)</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-qrcode text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">تحميل الفحوصات</h3>
<p class="text-gray-600">تحميل الفحوصات المحلية مع قراءة QR كود للتأكد من صحتها</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-vials text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">إجراء الفحوصات</h3>
<p class="text-gray-600">إجراء الفحوصات الإضافية المطلوبة (تحليل الدم، الأشعة، وغيرها)</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-cloud-upload-alt text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">تحميل النتائج</h3>
<p class="text-gray-600">نقل النتائج إلى السيرفر المركزي مع إنشاء رقم تحقق فريد</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- QR Scanner Section -->
<section class="py-16 text-white qr-scanner">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-qrcode text-2xl"></i>
</div>
<h2 class="text-3xl font-bold mb-6">ماسح الرمز الذكي (QR)</h2>
<p class="text-xl mb-8 leading-relaxed">باستخدام ماسح الرمز الذكي في التطبيق يمكنك تحميل الفحوصات السابقة للمفحوص بسرعة ودقة عالية، مع التأكد من صحة الوثائق وتفادي التزوير.</p>
<button class="bg-blue-600 text-white font-bold py-3 px-8 rounded-lg hover:bg-blue-700 transition flex items-center mx-auto">
<i class="fas fa-camera ml-2"></i> تشغيل الماسح
</button>
</div>
</div>
</section>
<!-- Integration Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4 text-blue-600">التواصل والتطابق</h2>
<p class="text-lg max-w-2xl mx-auto">ربط نتائج الفحوصات مع الأنظمة الحكومية المعنية بشكل آلي</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-sync-alt text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">مزامنة النتائج</h3>
</div>
<p class="text-gray-600">مزامنة نتائج الفحوصات مع أنظمة وزارة الصحة والجهات المعنية بشكل فوري وآمن</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-fingerprint text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">رقم التحقق الفريد</h3>
</div>
<p class="text-gray-600">إنشاء رقم تحقق فريد (UID) لكل مفحوص يمكن استخدامه للرجوع إلى ملفه الصحي الكامل</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-cloud-upload-alt text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">الرفع للمنصات الرسمية</h3>
</div>
<p class="text-gray-600">رفع النتائج تلقائياً لمنصات مقيم، القدوم والتأشيرات الإلكترونية</p>
</div>
</div>
</div>
</section>
<!-- Health Monitoring Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0">
<img src="https://images.unsplash.com/photo-1581056771107-24ca5f033842?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="rounded-lg shadow-xl" alt="مراقبة الصحة">
</div>
<div class="lg:w-1/2 lg:pl-12">
<h2 class="text-3xl font-bold mb-6 text-blue-600">تحليل ومراقبة صحة الوفد</h2>
<p class="text-lg mb-8">نظام متكامل لمتابعة الحالة الصحية للوافدين وإعداد التقارير اللازمة للجهات المعنية.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-heartbeat text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">متابعة سلوك الصحة</h3>
<p class="text-gray-600">تتبع الحالة الصحية للوافدين ورصد أي تغيرات أو عوارض صحية</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-file-medical text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">تقرير مفصل</h3>
<p class="text-gray-600">إعداد تقارير مفصلة عن الحالة الصحية للكفيل أو وزارة العمل</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-bell text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">تنبيهات وإشعارات</h3>
<p class="text-gray-600">إرسال تنبيهات فورية للجهات المعنية بالحالات المشتبه بها أو الخطرة</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Government Section -->
<section id="government" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4 text-blue-600">للحكومة والقطاع الصحي</h2>
<p class="text-lg max-w-2xl mx-auto">أدوات متكاملة لمراقبة صحة الوافدين واتخاذ القرارات الصحية المبنية على البيانات</p>
</div>
<div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-50 p-8 rounded-xl border border-gray-200">
<div class="flex items-center mb-6">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-tachometer-alt text-blue-600 text-xl"></i>
</div>
<h3 class="font-bold text-xl">لوحة مراقبة الوافدين</h3>
</div>
<p class="text-gray-600 mb-6">لوحة معلومات تفاعلية تقدم نظرة شاملة على حالة الفحوصات للأفواج الوافدة، مع إمكانية تصفية البيانات حسب الجنسية، الحالة الصحية، مناطق القدوم.</p>
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="rounded-lg shadow-md w-full" alt="لوحة التحكم">
</div>
<div class="grid grid-cols-1 gap-8">
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-chart-pie text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">الإحصائيات الصحية</h3>
</div>
<p class="text-gray-600">استخراج الإحصائيات حسب نوع المرض، الجنسية، العمر وغيرها من المعايير مع إمكانية تصدير التقارير</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-shield-virus text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">الكشف المبكر</h3>
</div>
<p class="text-gray-600">نظام ذكي للكشف المبكر عن حالات العدوى والأمراض المعدية بين الوافدين لأخذ الإجراءات الوقائية</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-passport text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">ربط أنظمة الجوازات</h3>
</div>
<p class="text-gray-600">ربط فوري مع أنظمة الجوازات ومراقبة الدخول لاتخاذ الإجراءات الصحية المناسبة قبل القدوم</p>
</div>
</div>
</div>
</div>
</section>
<!-- Account Section -->
<section id="account" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:order-last lg:pl-12">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="rounded-lg shadow-xl" alt="حسابي الشخصي">
</div>
<div class="lg:w-1/2">
<h2 class="text-3xl font-bold mb-6 text-blue-600">حسابي الشخصي</h2>
<p class="text-lg mb-8">إدارة الملف الصحي الشخصي وتاريخ الفحوصات ومشاركة النتائج مع الجهات المعنية.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-user-circle text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">ملف طبي شخصي</h3>
<p class="text-gray-600">إنشاء ملف طبي شخصي يحتوي على كافة التفاصيل الصحية والتاريخ المرضي</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-history text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">سجل الفحوصات</h3>
<p class="text-gray-600">عرض كافة الفحوصات السابقة والنتائج والتقارير الطبية في مكان واحد</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-file-download text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">تحميل التقارير</h3>
<p class="text-gray-600">إمكانية تحميل التقارير الطبية بصيغة PDF أو مشاركتها مع الجهات المعنية</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-server text-blue-600"></i>
</div>
</div>
<div class="mr-4">
<h3 class="font-bold text-lg mb-2">ربط أنظمة وطنية</h3>
<p class="text-gray-600">ربط الملف الصحي مع فايركس والخادم الوطني للتوثيق والتكامل</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- App Section -->
<section id="app" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4 text-blue-600">تطبيق فاحص المحمول</h2>
<p class="text-lg max-w-2xl mx-auto">قم بتنزيل تطبيق "فاحص" الآن على هاتفك الذكي لإجراء الفحوصات ومراقبة النتائج أينما كنت</p>
</div>
<div class="flex flex-col md:flex-row items-center justify-center">
<div class="mb-8 md:mb-0 md:mr-16">
<img src="https://images.unsplash.com/photo-1601784551446-20c9e07cdbdb?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
class="h-96 rounded-lg shadow-xl" alt="تطبيق فاحص">
</div>
<div class="max-w-md">
<div class="mb-8">
<h3 class="text-xl font-bold mb-4">مميزات التطبيق:</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 ml-2"></i>
<span>إجراء الفحوصات المطلوبة للوافدين عبر الهاتف</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 ml-2"></i>
<span>كاميرا مدمجة لقراءة QR كود للفحوصات السابقة</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 ml-2"></i>
<span>ربط مباشر بأجهزة الفحص الطبية لنقل النتائج</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 ml-2"></i>
<span>عرض البيانات والرسوم البيانية لحالة المفحوص</span>
</li>
</ul>
</div>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4 sm:space-x-reverse justify-center">
<button class="bg-gray-800 text-white font-bold py-3 px-6 rounded-lg hover:bg-gray-700 transition flex items-center justify-center">
<i class="fab fa-apple text-xl ml-2"></i> App Store
</button>
<button class="bg-green-600 text-white font-bold py-3 px-6 rounded-lg hover:bg-green-700 transition flex items-center justify-center">
<i class="fab fa-google-play text-xl ml-2"></i> Google Play
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="py-16 bg-blue-600 text-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">هل لديك استفسار أو تحتاج إلى مساعدة؟</h2>
<p class="text-xl mb-8 leading-relaxed">فريق الدعم الفني لمنصة فاحص متاح على مدار الساعة للإجابة على استفساراتكم وتقديم المساعدة الفنية اللازمة.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-6 sm:space-x-reverse justify-center">
<button class="bg-white text-blue-600 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition">
<i class="fas fa-headset ml-2"></i> الدعم الفني
</button>
<button class="border border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:text-blue-600 transition">
<i class="fas fa-envelope ml-2"></i> اتصل بنا
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold text-xl mr-2">
ف
</div>
<h3 class="text-xl font-bold">فاحص</h3>
</div>
<p class="text-gray-400">أول منصة متكاملة للفحوصات الصحية للوافدين إلى المملكة العربية السعودية.</p>
</div>
<div>
<h4 class="font-bold text-lg mb-4">روابط سريعة</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">الصفحة الرئيسية</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">عن المنصة</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">الأسئلة الشائعة</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">مراكز الفحص</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">الشروط والسياسات</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">شروط الاستخدام</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">سياسة الخصوصية</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">سياسة الأمان</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">الشروط الصحية</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">تواصل معنا</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-phone-alt text-gray-400 ml-2 w-4"></i>
<span class="text-gray-400">920000000</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-gray-400 ml-2 w-4"></i>
<span class="text-gray-400">[email protected]</span>
</li>
<li class="flex items-center">
<i class="fas fa-map-marker-alt text-gray-400 ml-2 w-4"></i>
<span class="text-gray-400">الرياض، السعودية</span>
</li>
</ul>
<div class="flex space-x-4 space-x-reverse mt-4">
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 منصة فاحص - جميع الحقوق محفوظة | بالتعاون مع وزارة الصحة والجهات المعنية</p>
</div>
</div>
</footer>
<script>
// Simple animation for demonstration
document.addEventListener('DOMContentLoaded', function() {
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle (would need more JS for full functionality)
const mobileMenuButton = document.querySelector('.md\\:hidden');
mobileMenuButton.addEventListener('click', function() {
alert('في التطبيق الفعلي، هذا الزر سيظهر قائمة الهاتف الجوال');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=wamd/fahis-platform" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |