/* ===== Body ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Tajawal', sans-serif;

  background: #000000; /* خلفية سوداء */
  color: #FFFFFF;
  min-height: 100vh;
  position: relative;
}

/* ===== Hero Section with GIF Background ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: url('../imgs/service.webp') no-repeat center center fixed; /* هنا تضيف رابط الـ GIF */
  background-size: cover; /* لتغطية كامل الخلفية */
  text-align: center;
  overflow: hidden;
}

/* طبقة تعتيم سوداء خفيفة علشان اللوجو يبان */
.hero::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 30% 40%, rgba(0,0,0,0.6), transparent 70%);
  z-index: 0;
}

/* ===== Hero Content ===== */
.hero-container {
  width: 85%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;  /* تأكيد أن المحتوى يظهر فوق الـ GIF */
  position: relative;
  gap: 40px;
}

/* ===== الشمال - اللوجو ===== */
.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brand {
  font-size: 42px;
  color: #00AEEF;
  text-transform: lowercase;
  text-shadow: 0 0 15px rgba(0,174,239,0.6);
}

/* ===== اليمين - النص ===== */
.hero-right {
  flex: 1;
  color: #fff;
  text-align: right;
}

.hero-right h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-right p {
  color: #BFBFBF;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ===== الزر ===== */
.cta-btn {
  background: #FF3B3B;
  border: none;
  padding: 12px 28px;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ff5c5c;
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 20px;
  }

  .hero-right {
    text-align: center;
  }

  .brand {
    font-size: 32px;
  }

  .hero-right h1 {
    font-size: 26px;
  }

  .hero-right p {
    font-size: 15px;
  }
}
.logo{
  height: 200px;
  width: 200px;
  border-radius: 50%;
  color: #00AEEF;
  text-transform: lowercase;
  text-shadow: 0 0 15px rgba(0,174,239,0.6);
}












/* ===== قسم مجالاتنا ===== */
.services {
  padding: 60px 0;
  background-color: #0000; /* خلفية زرقاء */
  color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffffff;
}

/* ===== حاوية خدماتنا ===== */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 أعمدة */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ===== تنسيق كل خدمة ===== */
.service-item {
  background-color: #ffffff; /* خلفية بيضاء */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* تأثير ظل بسيط */
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  text-align: right;
  position: relative;
}

.service-item:hover {
  transform: translateY(-10px); /* تأثير رفع الخدمة عند المرور */
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00AEEF; /* لون النص */
}

.service-item p {
  font-size: 16px;
  color: #555; /* لون النص الفاتح */
  line-height: 1.6;
}

/* ===== خلفية الصورة لكل خدمة ===== */
.service-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ===== ريسپونسيف - عند الشاشات الصغيرة ===== */
@media (max-width: 768px) {
  /* تغيير تنسيق الـ Grid ليصبح عمودي */
  .services-container {
    grid-template-columns: 1fr; /* عمود واحد */
  }

  .service-item {
    margin-bottom: 30px;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .service-item p {
    font-size: 14px;
  }

  .services h2 {
    font-size: 28px;
  }
}





















.counter {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 60px 0;
  background-color: #000;
}

.counter-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.counter-item h3 {
  font-size: 36px;
  color: #0077ff;
  margin: 0;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}

.counter-item p {
  font-size: 18px;
  color: #333;
}

/* ريسپونسيف */
@media (max-width: 768px) {
  .counter {
    flex-direction: column;
  }

  .counter-item {
    margin-bottom: 30px;
    width: 80%;
  }
}











/* ===== قسم وسائل الدفع ===== *//* ===== قسم الدفع والنموذج ===== */
/* ===== تصميم القسم ===== */
.payment-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}

/* حاوية لتوزيع المحتوى بشكل أفقي */
.container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap; /* لجعل المحتوى يتنقل إلى أسطر عند الشاشات الصغيرة */
}

/* ===== تنسيق نموذج الطلب ===== */
.form-container {
  background-color: #fff;
  padding: 30px;
  width: 48%; /* عرض النموذج في 48% من الصفحة */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.form-container h2 {
  font-size: 24px;
  color: #0077ff;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.form-container input,
.form-container select,
textarea , 
.form-container button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.form-container button {
  background-color: #0077ff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #0056b3;
}

/* ===== تنسيق وسائل الدفع ===== */
.payment-methods h2 {
  font-size: 24px;
  color: #0077ff;
  margin-bottom: 20px;
  text-align: center;
}

.payment-container {
  display: flex;
  flex-direction: column; /* ترتيب وسائل الدفع تحت بعض */
  gap: 20px;
}

.payment-item {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  margin-left: 30px;
}

.payment-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.payment-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.payment-item p {
  font-size: 14px;
  color: #777;
}

.payment-item:hover {
  transform: translateY(-5px); /* تأثير عند التمرير على كل وسيلة دفع */
}

/* ===== ريسبونسيف - عند الشاشات الصغيرة ===== */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* جعل المحتوى يظهر بشكل عمودي عند الشاشات الصغيرة */
    align-items: center;
  }

  .form-container {
    width: 80%;
    margin-bottom: 30px;
  }

  .payment-item {
    width: 80%; /* جعل وسائل الدفع تأخذ 80% من العرض */
  }
}







.contact-icons {
  padding: 60px 20px;
  text-align: center;
}

.contact-icons h2 {
  color: #00aeef;
  margin-bottom: 40px;
}

/* الجريد */
.icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 25px;
  max-width: 300px;
  margin: auto;
}

/* الأيقونة */
.icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s;
}

/* اسم الأيقونة */
.icon span {
  position: absolute;
  bottom: -25px;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s;
}

/* hover */
.icon:hover span {
  opacity: 1;
}

.icon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 0 15px rgba(0,174,239,0.7);
}

/* ألوان */
.whatsapp { background: #25D366; }
.phone { background: #ff3b3b; }
.facebook { background: #1877f2; }
.instagram { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }
.tiktok { background: #000; }
.website { background: #00aeef; }
.email { background: #ff3b3b; }

/* ريسبونسف */
@media (max-width: 500px) {
  .icon {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }
}

.icon-box {
  position: relative;
}

/* dropdown */
.dropdown {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border-radius: 10px;
  padding: 10px;
  display: none;
  min-width: 180px;
  box-shadow: 0 0 15px rgba(0,174,239,0.4);
  z-index: 10;
}

.dropdown a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px;
  border-radius: 5px;
  transition: 0.2s;
}

.dropdown a:hover {
  background: rgba(0,174,239,0.2);
}