Spaces:
Running
Running
File size: 64,636 Bytes
581c1e7 |
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 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Expert Tech Solutions | Laptop & Desktop Repair | Saudi Arabia</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Custom CSS for elements that need more precise styling */
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.floating-button {
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.02);
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-laptop-code text-blue-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Expert Tech Solutions</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#home" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="#services" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Services</a>
<a href="#about" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a>
<a href="#testimonials" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#contact" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
<a href="business.html" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Business Solutions</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Home</a>
<a href="#services" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Services</a>
<a href="#about" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">About</a>
<a href="#testimonials" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Testimonials</a>
<a href="#contact" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
<a href="business.html" class="bg-blue-600 hover:bg-blue-700 text-white block px-3 py-2 rounded-md text-base font-medium">Business Solutions</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient text-white py-20 md:py-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Expert Computer Repair & IT Solutions in Saudi Arabia</h1>
<p class="text-xl mb-8">Fast, reliable, and affordable laptop & desktop repair services. On-site support, networking solutions, and sales of new & used devices.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold text-center transition duration-300">Get a Free Quote</a>
<a href="tel:+966123456789" class="border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-semibold text-center transition duration-300">
<i class="fas fa-phone mr-2"></i> +966 12 345 6789
</a>
</div>
</div>
<div class="md:w-1/2 relative">
<img src="https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Computer repair" class="rounded-lg shadow-2xl w-full max-w-lg mx-auto">
<div class="absolute -bottom-5 -right-5 bg-white text-blue-600 p-4 rounded-lg shadow-lg floating-button hidden md:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-3">
<i class="fas fa-tools text-blue-600 text-xl"></i>
</div>
<div>
<p class="font-bold">Same Day</p>
<p class="text-sm">Repair Service</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<div class="text-4xl font-bold text-blue-600 mb-2">10,000+</div>
<div class="text-gray-600">Devices Repaired</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-blue-600 mb-2">98%</div>
<div class="text-gray-600">Success Rate</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-blue-600 mb-2">24/7</div>
<div class="text-gray-600">Support Available</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-blue-600 mb-2">50+</div>
<div class="text-gray-600">Corporate Clients</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Comprehensive Services</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">From simple repairs to complex IT solutions, we've got you covered across Saudi Arabia.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-laptop-medical text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Laptop & Desktop Repair</h3>
</div>
<p class="text-gray-600 mb-4">Expert diagnosis and repair for all brands including Apple, Dell, HP, Lenovo, and more. We fix hardware and software issues.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Screen replacement</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Battery replacement</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Motherboard repair</span>
</li>
</ul>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">Book Now <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Service Card 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-network-wired text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">IT & Networking Solutions</h3>
</div>
<p class="text-gray-600 mb-4">Complete IT infrastructure setup and management for businesses of all sizes across Saudi Arabia.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Network installation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Server setup</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Cybersecurity</span>
</li>
</ul>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Service Card 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-home text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">On-Site Support</h3>
</div>
<p class="text-gray-600 mb-4">Our technicians come to your home or office to solve your tech problems, saving you time and hassle.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Home visits</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Business IT support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Emergency service</span>
</li>
</ul>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">Schedule Visit <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Service Card 4 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-shopping-cart text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">New & Used Devices</h3>
</div>
<p class="text-gray-600 mb-4">Quality laptops and desktops at competitive prices. All devices come with warranty and support.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Budget-friendly options</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Premium models</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Custom builds</span>
</li>
</ul>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">Browse Inventory <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Service Card 5 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-database text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Data Recovery</h3>
</div>
<p class="text-gray-600 mb-4">Don't panic if you've lost important files. Our experts can recover data from damaged or corrupted devices.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Hard drive recovery</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>SSD recovery</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>RAID reconstruction</span>
</li>
</ul>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">Recover Now <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Service Card 6 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-shield-alt text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Maintenance & Protection</h3>
</div>
<p class="text-gray-600 mb-4">Keep your devices running smoothly with our maintenance plans and security solutions.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Virus removal</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Performance tuning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Annual contracts</span>
</li>
</ul>
<a href="#contact" class="text-blue-600 font-medium inline-flex items-center">Get Protected <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Why Choose Expert Tech Solutions?</h2>
<p class="text-gray-600 mb-6">With over 10 years of experience serving customers across Saudi Arabia, we've built a reputation for excellence in computer repair and IT services.</p>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-award text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Certified Technicians</h3>
<p class="mt-1 text-gray-600">Our team holds industry certifications and undergoes continuous training.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-shield-alt text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Warranty Guaranteed</h3>
<p class="mt-1 text-gray-600">All repairs come with a warranty for your peace of mind.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-hand-holding-usd text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Transparent Pricing</h3>
<p class="mt-1 text-gray-600">No hidden fees - we provide upfront pricing before any work begins.</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="relative">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Technician working" class="rounded-lg shadow-xl w-full">
<div class="absolute -bottom-5 -left-5 bg-blue-600 text-white p-6 rounded-lg shadow-lg hidden md:block">
<div class="text-3xl font-bold">10+</div>
<div class="text-lg">Years Experience</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Customers Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Trusted by individuals and businesses across Saudi Arabia</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Ahmed K.">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Ahmed K.</h3>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"My laptop screen was broken and I needed it fixed urgently for work. Expert Tech Solutions had it repaired the same day at a reasonable price. Highly recommended!"</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah A.">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Sarah A.</h3>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"The technician came to my home and fixed my desktop on the spot. Very professional service and they even gave me tips to maintain my computer. Will definitely use them again."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md testimonial-card">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/75.jpg" alt="Mohammed R.">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Mohammed R.</h3>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"Our small business relies on Expert Tech Solutions for all our IT needs. They set up our network, provide maintenance, and are always available when we need support."</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Get Your Tech Problems Solved?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Contact us today for fast, reliable service across Saudi Arabia.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="tel:+966123456789" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold transition duration-300">
<i class="fas fa-phone mr-2"></i> Call Now
</a>
<a href="#contact" class="border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-semibold transition duration-300">
<i class="fas fa-envelope mr-2"></i> Email Us
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Contact Us</h2>
<p class="text-gray-600 mb-8">Have questions or need service? Reach out to our team for assistance.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Our Locations</h3>
<p class="mt-1 text-gray-600">Riyadh, Jeddah, Dammam, Khobar</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-phone-alt text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Phone</h3>
<p class="mt-1 text-gray-600">+966 12 345 6789</p>
<p class="mt-1 text-gray-600">24/7 Support Available</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-envelope text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Email</h3>
<p class="mt-1 text-gray-600">info@experttech.sa</p>
<p class="mt-1 text-gray-600">Response within 1 business day</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-clock text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Business Hours</h3>
<p class="mt-1 text-gray-600">Saturday - Thursday: 8AM - 10PM</p>
<p class="mt-1 text-gray-600">Friday: 12PM - 10PM</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Send Us a Message</h3>
<form>
<div class="mb-6">
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your name">
</div>
<div class="mb-6">
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your email">
</div>
<div class="mb-6">
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Phone</label>
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your phone number">
</div>
<div class="mb-6">
<label for="service" class="block text-sm font-medium text-gray-700 mb-1">Service Needed</label>
<select id="service" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option value="">Select a service</option>
<option value="repair">Laptop/Desktop Repair</option>
<option value="networking">Networking Solutions</option>
<option value="onsite">On-Site Support</option>
<option value="purchase">Purchase New/Used Device</option>
<option value="data">Data Recovery</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Describe your issue or inquiry"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-semibold transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Business Page (hidden initially, shown when navigating to business.html) -->
<div id="business-page" class="hidden">
<!-- Business Hero -->
<section class="bg-gradient-to-r from-blue-800 to-blue-600 text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Enterprise IT Solutions for Saudi Businesses</h1>
<p class="text-xl mb-8 max-w-3xl mx-auto">Comprehensive technology services designed to keep your business running smoothly and securely.</p>
<a href="#business-contact" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold inline-block transition duration-300">Request Business Consultation</a>
</div>
</div>
</section>
<!-- Business Services -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Tailored Business IT Solutions</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Scalable services designed for companies of all sizes across Saudi Arabia</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Business Service 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-building text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Managed IT Services</h3>
</div>
<p class="text-gray-600 mb-4">Outsource your entire IT department with our comprehensive managed services package.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>24/7 monitoring</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Proactive maintenance</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Dedicated account manager</span>
</li>
</ul>
<a href="#business-contact" class="text-blue-600 font-medium inline-flex items-center">Get Details <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Business Service 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-network-wired text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Network Infrastructure</h3>
</div>
<p class="text-gray-600 mb-4">Design, implementation, and maintenance of secure business networks.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Wired & wireless solutions</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>VPN setup</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Cloud integration</span>
</li>
</ul>
<a href="#business-contact" class="text-blue-600 font-medium inline-flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Business Service 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-shield-alt text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Cybersecurity</h3>
</div>
<p class="text-gray-600 mb-4">Protect your business from evolving digital threats with our security solutions.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Firewall configuration</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Endpoint protection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Security audits</span>
</li>
</ul>
<a href="#business-contact" class="text-blue-600 font-medium inline-flex items-center">Secure Your Business <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Business Service 4 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-server text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Server Solutions</h3>
</div>
<p class="text-gray-600 mb-4">Reliable server setup, maintenance, and troubleshooting for your business needs.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>On-premise servers</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Cloud migration</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Disaster recovery</span>
</li>
</ul>
<a href="#business-contact" class="text-blue-600 font-medium inline-flex items-center">Explore Options <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Business Service 5 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-laptop-house text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Workplace Solutions</h3>
</div>
<p class="text-gray-600 mb-4">Complete workstation setup and support for your employees.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Bulk device purchases</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Remote work setup</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Helpdesk support</span>
</li>
</ul>
<a href="#business-contact" class="text-blue-600 font-medium inline-flex items-center">Get Quote <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Business Service 6 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden service-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-file-contract text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">IT Consulting</h3>
</div>
<p class="text-gray-600 mb-4">Strategic technology planning to align with your business objectives.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Technology roadmaps</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Cost optimization</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Digital transformation</span>
</li>
</ul>
<a href="#business-contact" class="text-blue-600 font-medium inline-flex items-center">Schedule Consultation <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Business Clients -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Trusted by Businesses Across Saudi Arabia</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We partner with companies of all sizes to deliver exceptional IT services</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center">
<div class="flex justify-center">
<div class="bg-gray-100 p-6 rounded-lg h-24 flex items-center">
<span class="text-2xl font-bold text-gray-700">SMEs</span>
</div>
</div>
<div class="flex justify-center">
<div class="bg-gray-100 p-6 rounded-lg h-24 flex items-center">
<span class="text-2xl font-bold text-gray-700">Startups</span>
</div>
</div>
<div class="flex justify-center">
<div class="bg-gray-100 p-6 rounded-lg h-24 flex items-center">
<span class="text-2xl font-bold text-gray-700">Corporations</span>
</div>
</div>
<div class="flex justify-center">
<div class="bg-gray-100 p-6 rounded-lg h-24 flex items-center">
<span class="text-2xl font-bold text-gray-700">Government</span>
</div>
</div>
</div>
</div>
</section>
<!-- Business CTA -->
<section class="py-16 bg-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-3xl font-bold mb-4">Ready to Transform Your Business IT?</h2>
<p class="text-xl">Let our experts assess your needs and recommend the perfect solution.</p>
</div>
<div class="md:w-1/2 text-center md:text-right">
<a href="#business-contact" class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-4 rounded-lg font-semibold text-lg inline-block transition duration-300">Request Free Business Assessment</a>
</div>
</div>
</div>
</section>
<!-- Business Contact -->
<section id="business-contact" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Business Inquiries</h2>
<p class="text-gray-600 mb-8">Complete the form to discuss your business IT needs with our solutions team.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-headset text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Dedicated Support</h3>
<p class="mt-1 text-gray-600">Business clients receive priority response and dedicated account management.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-file-signature text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Custom Contracts</h3>
<p class="mt-1 text-gray-600">Tailored service agreements to meet your specific business requirements.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-hand-holding-usd text-xl"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Volume Discounts</h3>
<p class="mt-1 text-gray-600">Special pricing available for multiple devices or long-term contracts.</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-white p-8 rounded-xl shadow-md">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Business Contact Form</h3>
<form>
<div class="mb-6">
<label for="business-name" class="block text-sm font-medium text-gray-700 mb-1">Company Name</label>
<input type="text" id="business-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your company name">
</div>
<div class="mb-6">
<label for="business-industry" class="block text-sm font-medium text-gray-700 mb-1">Industry</label>
<input type="text" id="business-industry" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your industry">
</div>
<div class="mb-6">
<label for="business-size" class="block text-sm font-medium text-gray-700 mb-1">Company Size</label>
<select id="business-size" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option value="">Select size</option>
<option value="1-10">1-10 employees</option>
<option value="11-50">11-50 employees</option>
<option value="51-200">51-200 employees</option>
<option value="201-500">201-500 employees</option>
<option value="500+">500+ employees</option>
</select>
</div>
<div class="mb-6">
<label for="business-contact-name" class="block text-sm font-medium text-gray-700 mb-1">Contact Person</label>
<input type="text" id="business-contact-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your name">
</div>
<div class="mb-6">
<label for="business-contact-email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="business-contact-email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your business email">
</div>
<div class="mb-6">
<label for="business-contact-phone" class="block text-sm font-medium text-gray-700 mb-1">Phone</label>
<input type="tel" id="business-contact-phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your business phone">
</div>
<div class="mb-6">
<label for="business-needs" class="block text-sm font-medium text-gray-700 mb-1">IT Needs</label>
<textarea id="business-needs" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Describe your IT requirements"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-semibold transition duration-300">Submit Business Inquiry</button>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12">
<div>
<div class="flex items-center mb-6">
<i class="fas fa-laptop-code text-blue-400 text-2xl mr-2"></i>
<span class="text-xl font-bold">Expert Tech Solutions</span>
</div>
<p class="text-gray-400 mb-6">Your trusted partner for computer repair and IT services in Saudi Arabia.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-6">Services</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Laptop Repair</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Desktop Repair</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Data Recovery</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Virus Removal</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">On-Site Support</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-6">Business</h3>
<ul class="space-y-3">
<li><a href="business.html" class="text-gray-400 hover:text-white">Managed IT</a></li>
<li><a href="business.html" class="text-gray-400 hover:text-white">Network Solutions</a></li>
<li><a href="business.html" class="text-gray-400 hover:text-white">Cybersecurity</a></li>
<li><a href="business.html" class="text-gray-400 hover:text-white">Server Management</a></li>
<li><a href="business.html" class="text-gray-400 hover:text-white">IT Consulting</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-6">Contact</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-blue-400 mt-1 mr-3"></i>
<span class="text-gray-400">Multiple locations across Saudi Arabia</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt text-blue-400 mr-3"></i>
<span class="text-gray-400">+966 12 345 6789</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-blue-400 mr-3"></i>
<span class="text-gray-400">info@experttech.sa</span>
</li>
<li class="flex items-center">
<i class="fas fa-clock text-blue-400 mr-3"></i>
<span class="text-gray-400">Sat-Thu: 8AM-10PM, Fri: 12PM-10PM</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 Expert Tech Solutions. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Sitemap</a>
</div>
</div>
</div>
</footer>
<!-- WhatsApp Floating Button -->
<a href="https://wa.me/966123456789" class="fixed bottom-6 right-6 bg-green-500 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-lg hover:bg-green-600 transition duration-300 z-50">
<i class="fab fa-whatsapp text-2xl"></i>
</a>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Check if this is the business page
if(window.location.pathname.includes('business.html')) {
document.getElementById('business-page').classList.remove('hidden');
document.querySelector('main').classList.add('hidden');
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if(targetId === '#') return;
const targetElement = document.querySelector(targetId);
if(targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
// Form submission handling (example)
document.querySelectorAll('form').forEach(form => {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will contact you soon.');
this.reset();
});
});
</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=serialcode24x7/intel-computer" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |