@font-face {
  font-family: 'CamelFont';
  src: url('../fonts/TheYearofTheCamel-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* تعريف body واحد وموحد */
body {
  margin: 0;
  font-family: 'CamelFont', sans-serif;
  background: #fff;
  position: relative;
  color: #333; /* لون النص الافتراضي */
}

/* تعديلات الهيدر */
/* تصميم عام */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  height: 100px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.nav-links li a {
  color: #101933;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FF0000;
}

.order-btn,
.joinus-btn {
  background-color: #FFF6EE;
  color: #101f37;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.order-btn:hover,
.joinus-btn:hover {
  background-color: #c62828;
}

/* زر الهامبرجر (لشاشات الجوال) */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #333;
  margin: 6px 0;
  transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* تصميم قائمة الجوال (تظهر من اليمين) */
.mobile-nav {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f0f0f0;
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -250px;
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding-top: 60px; /* إضافة مساحة أعلى للقائمة */
}

.mobile-nav li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.mobile-nav li a {
  display: block;
  text-decoration: none;
  color: #333;
  text-align: right;
}

/* تصميم زر الإغلاق */
.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* تعديلات نسخة الجوال */
@media (max-width: 768px) {

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-links,
  .order-btn,
  .joinus-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav.open {
    display: block;
    right: 0;
  }

  .logo {
    height: 50px;
    /* تقليل حجم الشعار في الجوال */
    width: auto;
  }

  .main-header {
    position: fixed;
    /* تثبيت الهيدر */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}
.hero-section {
    background: url('../assets/images/homepage.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-section .container {
    max-width: 600px;
    width: 100%;
    padding: 60px;
    border-radius: 18px;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}
.hero-section h2 {
    font-size: 40px;
    font-family:  'CamelFont', sans-serif;
    color: white;
}

.hero-section p {
    font-size: 18px;
}


 
/*2*/
.contact-section {
    background: url('../assets/images/contapage.jpg') center/cover no-repeat;
}

.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 45px;
    font-family:  'CamelFont', sans-serif;
    color: #555;
    margin-bottom: 10px;
}

.services-intro {
    font-size: 39px;
    font-family:  'CamelFont', sans-serif;
    color: #163155;
    margin-bottom: 10px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    justify-content: center;
    text-align: right;
}

.service-item {
    width: 100%;
    max-width: 500px;
}

.service-title {
    font-size: 22px;
    font-family: 'CamelFont', sans-serif;
    color: #000000;
    margin-bottom: 10px;
}

.service-description {
    font-size: 16px;
    font-family:  'CamelFont', sans-serif;
    color: #555;
}

@media (min-width: 768px) {
    .service-item {
        width: calc(50% - 20px); /* عرض كل خدمة 50% مع فراغ */
    }
}

.more-link {
    color: #d10000; /* لون النص */
    font-weight: bold; /* سمك الخط */
    margin-top: 10px; /* المسافة من الأعلى */
    display: inline-block; /* العرض ككتلة */
    transition: color 0.3s ease; /* تأثير الانتقال عند تغيير اللون */
    cursor: pointer; /* شكل المؤشر عند التمرير */
    text-decoration: none; /* إزالة الخط تحت النص */
}

.more-link:hover {
    color: #a80000; /* تغيير اللون عند التمرير */
}
/*3*/
.visual-production {
  background: url('../assets/images/visualpage.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white; /* اللون الافتراضي للنص */
  text-align: center;
}

.visual-production::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.visual-content {
  position: relative;
  z-index: 2;
  padding: 60px 30px;
}

.visual-content h1 {
  font-size: 55px;
  margin-bottom: 67px;
  color: white; /* اللون الأبيض للنص الكبير */
}

.visual-content p {
  font-size: 20px;
  margin-bottom: 30px;
  padding: 50px 20px;

}

.visual-btn {
  background-color: #e63946;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.visual-btn:hover {
  background-color: #c62828;
}
/*4*/
.editing-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.editing-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
}

.editing-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.editing-content {
  max-width: 600px;
  text-align: right;
}

.editing-content h2 {
  font-size: 60px;
  font-family:  'CamelFont', sans-serif;
  color: #163155;
  margin-bottom: 10px;
}

.title-line {
  width: 80px;
  height: 3px;
  background-color: #e63946;
  border: none;
  margin-right: 20px;
}

.editing-content p {
  font-size: 18px;
  font-family:  'CamelFont', sans-serif;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.8;
}

.red-btn {
  background-color: #e63946;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.red-btn:hover {
  background-color: #c62828;
}

@media (min-width: 992px) {
  .editing-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: right;
  }

  .editing-image {
    flex: 1;
  }

  .editing-content {
    flex: 1;
  }
}
.photography-section {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0) 85%),
                      url('../assets/images/taswer.jpeg');

  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 30px;
  direction: rtl;
  color: white;
}

.photography-content {
  max-width: 600px;
  text-align: right;
  z-index: 2;
}

.photography-content h2 {
  font-size: 36px;
  font-family:  'CamelFont', sans-serif;
  color: #ffffff;
  margin-bottom: 40px;
}

.photography-content p {
  font-size: 18px;
  font-family:  'CamelFont', sans-serif;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.8;
}

.photography-btn {
  background-color: #e63946;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.photography-btn:hover {
  background-color: #c62828;
}

footer {
  background-color: #152334;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

.label {
  font-weight: bold;
  margin: 0;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

.value {
  margin: 0;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

hr {
  margin: 1rem 0;
  border-color: #333;
}

.footer-bottom {
  text-align: center;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

.social-icons {
  margin-top: 1rem;
}

.social-icon {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
    gap: 20px;
  }
}
.visual-page::before {
  display: none;
}

/* تخصيص التنسيق لصفحة الإنتاج المرئي فقط */
.visual-wrapper {
    display: inline-flex;
    align-items: center; /* المحاذاة العمودية */
    direction: rtl; /* يبدأ من اليمين */
  }
.visual-production {
  background: url('../assets/images/vis.jpg') center/cover no-repeat;
  min-height: 550px; /* تم تغييرها من 100vh إلى 400px */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-align: center;
}


  .vertical-divider {
    width: 4px;
    height: 3.2em; /* نفس ارتفاع الخط تقريبا */
    background-color: white;
    margin-right: 8px; /* مسافة بين الخط والكلمة */
  }

.visual-content h2 {
  color: #ffffff !important;
  font-size: 38px;
  line-height: 1;
}


/* تخصيص تنسيق الفيديوهات */
.swiper {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


.divider {
  width: 60px;
  height: 2px;
  background-color: #101f37;
  font-co
  margin: 10px auto;  /* محاذاة الخط في الوسط */
}
.montage-hero {
  background: url('../assets/images/contapage.jpg') center/cover no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 50px; /* يبعد النص عن الحافة */
  width: 100%;
}

.visual-content {
  color: white;
  max-width: 500px;
}


/* إعدادات عامة */
/*body, html {
  margin: 0;
  padding: 0;
  font-family:  'CamelFont', sans-serif;
  direction: rtl;
  background-color: #fff;
  color: #222;
}*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

/* قسم المونتاج */
/* Reset & Base */n* { box-sizing: border-box; margin: 0; padding: 0; }n/*body {     font-family:  'CamelFont', sans-serif; line-height: 1.6; color: #333; background: #fff; }n*/a { text-decoration: none; color: inherit; }nimg { max-width: 100%; height: auto; display: block; }

/* Container */n.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header */n.main-header { background: #fff; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }n.nav-container { display: flex; align-items: center; justify-content: space-between; }
/*.logo { height: 50px; }*/
/*.nav-links { list-style: none; display: flex; gap: 20px; }*/
/*.nav-links li a { font-weight: bold; padding: 5px 10px; transition: color 0.3s; }*/
/*.nav-links li a:hover, .nav-links li a.active { color: #c0392b; }*/
/*.joinus-btn, .order-btn { background: #c0392b; color: #fff; padding: 8px 16px; border-radius: 8px; font-weight: bold; transition: background 0.3s; }*/
/*.joinus-btn:hover, .order-btn:hover { background: #a93226; }*/

/* Hero */n.montage-hero { position: relative; padding: 80px 0; }
.vertical-divider { width: 4px; height: 80px; background: #c0392b; margin-left: 20px; }
.visual-wrapper { display: flex; align-items: center; }
.visual-content h2 { font-size: 48px; color: #c0392b; margin-bottom: 10px; }
.visual-content p { font-size: 18px; }

/* Intro */n.montage-intro { padding: 40px 0; text-align: center; }
.montage-description { font-size: 16px; max-width: 800px; margin: 0 auto; }

/* Video Gallery Slider */n.video-gallery { padding: 40px 0; }
.section-subtitle { font-size: 24px; color: #c0392b; text-align: center; margin-bottom: 20px; }
.swiper { width: 100%; padding: 20px 0; }
.swiper-slide { display: flex; justify-content: center; }
.swiper-slide iframe { width: 100%; max-width: 560px; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; }

/* Features */n.montage-features { background: #f8f8f8; padding: 40px 0; }
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.feature-list li { background: #fff; padding: 15px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 10px; font-size: 16px; }
.feature-list li i { color: #27ae60; font-size: 20px; }

/* CTA */n.montage-cta { padding: 40px 0; text-align: center; }
.cta-button { display: inline-block; background: #25D366; color: #fff; padding: 12px 24px; border-radius: 30px; font-size: 18px; font-weight: bold; transition: background 0.3s, transform 0.3s; }
.cta-button:hover { background: #1ebd5a; transform: scale(1.05); }

/* Footer */
footer {
  background-color: #152334;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

.label {
  font-weight: bold;
  margin: 0;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

.value {
  margin: 0;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

hr {
  margin: 1rem 0;
  border-color: #333;
}

.footer-bottom {
  text-align: center;
  color: #ffffff; /* هذا مهم لتغيير لون النص */
}

.social-icons {
  margin-top: 1rem;
}

.social-icon {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
    gap: 20px;
  }
}
.visual-page::before {
  display: none;
}

/* تخصيص التنسيق لصفحة الإنتاج المرئي فقط */
.visual-wrapper {
    display: inline-flex;
    align-items: center; /* المحاذاة العمودية */
    direction: rtl; /* يبدأ من اليمين */
  }
/*.visual-production {
  background: url('../assets/images/vis.jpg') center/cover no-repeat;
  min-height: 550px; /* تم تغييرها من 100vh إلى 400px */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-align: center;
}*/


  .vertical-divider {
    width: 4px;
    height: 3.2em; /* نفس ارتفاع الخط تقريبا */
    background-color: white;
    margin-right: 8px; /* مسافة بين الخط والكلمة */
  }

.visual-content h2 {
  color: #ffffff !important;
  font-size: 38px;
  line-height: 1;
}


/* تخصيص تنسيق الفيديوهات */
.swiper {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


.divider {
  width: 60px;
  height: 2px;
  background-color: #101f37;
  font-co
  margin: 10px auto;  /* محاذاة الخط في الوسط */
}
.montage-hero {
  background: url('../assets/images/contapage.jpg') center/cover no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 50px; /* يبعد النص عن الحافة */
  width: 100%;
}

.visual-content {
  color: white;
  max-width: 500px;
}


/* إعدادات عامة */
/*body, html {
  margin: 0;
  padding: 0;
  font-family:  'CamelFont', sans-serif;
  direction: rtl;
  background-color: #fff;
  color: #222;
}*/

/*.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}*/

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

/* المدونة */

/*body {
    font-family:  'CamelFont', sans-serif;
    background-color: #fdfdfd;
  color: #333;
}*/

h1, h2 {
  font-weight: bold;
  color: #152334; /* Color matching your theme */
}

hr.underline {
  border: 1px solid #d10000; /* Red underline */
  width: 50%;
  margin: 10px auto;
}

/* Packages Section */
.packages-section {
  padding: 60px 20px;
  text-align: center;
}

.packages-section h2 {
  font-size: 36px;
}

.package-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.packages {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.package {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.package:hover {
  transform: translateY(-10px);
}

.package h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.package p {
  font-size: 16px;
  color: #555;
}

/* Specific package colors */
.package.blue {
  border: 2px solid #003366;
}

.package.white {
  border: 2px solid #fff;
  background-color: #fff;
}

.package.red {
  border: 2px solid #d10000;
}

/* Footer */
/*footer {
  background-color: #152334;
  color: white;
  text-align: center;
  padding: 20px;
}*/
/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
    font-family:  'CamelFont', sans-serif;
    background-color: #fdfdfd;
  color: #333;
}*/

h1, h2 {
  font-weight: bold;
  color: #152334;
}

hr.underline {
  border: 1px solid #d10000; /* Red underline */
  width: 50%;
  margin: 10px auto;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite ease-in-out;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}
