* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}


body {
  background: #fff7f7;
  color: #700c0e;
  font-family: 'Cairo', sans-serif;
  flex: 1;
}


.navbar {
  display: flex;
  justify-content: space-between; /* توزيع المساحات */
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff7f7;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  direction: rtl; /* مهم لأن الصفحة بالعربي */
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #700c0e;
  white-space: nowrap;
}

.navbar ul {
  justify-content:center;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0 auto; /* يجعلها في الوسط */
}

.navbar a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #700c0e;
}



/* زر الهامبرغر - مخفي على الشاشات الكبيرة */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #700c0e;
  cursor: pointer;
}

/* استجابة للجوال */
@media (max-width: 768px) {
  /* إخفاء القائمة بشكل افتراضي */
  .nav-menu {
    position: absolute;
    top: 60px; /* أسفل الهيدر */
    right: 0;
    background-color: #fff7f7;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: none; /* مخفية */
    flex-direction: column;
    padding: 1rem 0;
    z-index: 200;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #fff7f7;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
  }

  /* عرض زر الهامبرغر */
  .hamburger {
    display: block;
  }
}

/* حالة ظهور القائمة */
.nav-menu.active {
  display: flex !important;
}



.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4rem 2rem;
  flex-wrap: wrap;
  background-color: #fff7f7;
  margin-top: 20px;
}

.profile-card {
  background: #700c0e;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 300px;
}

.profile-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.profile-card .title {
  font-size: 0.9rem;
  color: #fff;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.social .icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #444;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.icon.facebook:hover { color: #1877f2; border-color: #1877f2; }
.icon.instagram:hover { color: #e1306c; border-color: #e1306c; }
.icon.twitter:hover { color: #000; border-color: #000; }
.icon.whatsapp:hover { color: #25d366; border-color: #25d366; }
.icon.youtube:hover { color: #FF0000; border-color: #FF0000; }


.intro {
  max-width: 500px;
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}


.intro .subtitle {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #666;
}

.intro .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #700c0e;;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  margin: 0.5rem 0.5rem 0 0;
  transition: background 0.3s;
}

.intro .btn:hover {
  background: #fff;
  color: #000;
}

.btn.se0condary {
  background: #e0e0e0;
  color: #333;
}

.intro .btntow {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  margin: 0.5rem 0.5rem 0 0;
  transition: background 0.3s;
}

.intro .btntow:hover {
  background: #700c0e;
  color: #fff;
}

.databt a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #000; /* يخلي لون الخط أسود */
  text-decoration: none; /* يلغي الخط السفلي */
  border-radius: 30px;
  margin: 0.5rem 0.5rem 0 0;
  transition: background 0.3s, color 0.3s;
}

.databt a:hover {
  background: #700c0e;
  color: #fff;
}




.section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2rem;
}

.contact-block a {
  color: #700c0e;
  text-decoration: none; /* إزالة الخط */
  font-weight: 600; /* لتأكيد تمييزه */
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: #a82020; /* لون أفتح أو مختلف عند المرور */
  text-decoration: underline; /* ممكن تحط underline عند hover فقط */
  cursor: pointer;
}




.section-block {
  background-color: transparent; /* بدون خلفية بيضاء */
  margin: 40px auto;
  padding: 2rem 1rem;
  max-width: 800px;
  text-align:right;
  box-shadow: none; /* بدون ظل */
  border-radius: 0; /* بدون زوايا مدورة */
  color: #700c0e;
}

.section-block h2 {
  font-size: 2rem;
  color: #700c0e; /* نفس لون الشعار */
  margin-bottom: 1rem;
}

.section-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #700c0e;
}

.contact-block ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: right; 
}



.contact-block li {
  font-size: 1.05rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center; /* بدّل align-items:start إلى center */
  justify-content: right;
  gap: 10px;
  color: #444;
}

.contact-block i {
  color: #700c0e;
  font-size: 1.2rem; /* اختياري لتوحيد الحجم */
}

.footer {
  background-color: #fff7f7; /* لون شعار الشركة الأحمر */
  color: #700c0e;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 40px;
}
footer.footer {
  margin-top: auto;
}

.intro-loader {
  position: fixed;
  inset: 0;
  background-color: #700c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

.intro-loader img {
  width: 150px;
  animation: zoomIn 1.2s ease;
}

@keyframes zoomIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}



.store-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f2f2f2;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 150px;
  justify-content: center;
}

.store-btn img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.google-play {
  background-color: #e6f2ff;
}

.app-store {
  background-color: #f0f0f5;
}

@media (max-width: 768px) {
  ul {
    padding-right: 20px;
  }

  h2, h3, h4, p {
    font-size: 1rem;
    line-height: 1.6;
  }
}


.images-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  gap: 1.5rem;
}

.image-wrapper {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* تأثير تكبير عند المرور */
.image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.news-highlights {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.news-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-highlights li {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

.soon {
  background-color: #e93337;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.section-title {
  font-size: 1.5rem;
  color: #e93337;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: right;
}

.decorated-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #e93337;
  margin: 3rem auto 2rem;
  position: relative;
  display: inline-block;
  animation: fadeInUp 1s ease-out;
}

.decorated-title::after {
  content: "";
  width: 60%;
  height: 4px;
  background-color: #e93337;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* تأثير دخول لطيف */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

