<!DOCTYPE html>
<html lang="ar">
<head>
  <meta charset="UTF-8">
  <title>حلول </title>
  <style>
    body {
      margin: 0;
      padding: 0;
      font-family: Tahoma, Arial, sans-serif;
      text-align: center;
    }
    .container {
      width: 80%;
      max-width: 600px;
      margin: 0 auto;
      padding: 50px 20px;
    }
    .header {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .content {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 40px;
    }
    .btn-whatsapp {
      display: inline-block;
      padding: 15px 30px;
      background: #25d366; /* لون واتساب */
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1rem;
      transition: background 0.3s;
    }
    .btn-whatsapp:hover {
      background: #128c7e;
    }
  </style>
</head>
<body>

  <div class="container">
    <h1 class="header">مرحباً بكم </h1>
    <p class="content">
     لطلب الخدمة يرجى التواصل معنا واتساب من خلال الضغط على الزر ادناه .
      
    </p>
    <!-- زر التواصل عبر الواتساب -->
    <a class="btn-whatsapp" href="https://iwtsp.com/966553601233" target="_blank">تواصل معنا عبر واتساب</a>
  </div>

</body>
</html>