@charset "utf-8";
/* CSS Document */
[data-i18n] {
  white-space: pre-line; /* يخلي \n ينزل لسطر جديد */
}
/* ================= English Fonts ================= */
@font-face {
  font-family: 'Outfit-SemiBold';
  src: url('Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Body EN */
@font-face {
  font-family: 'Outfit-Light';
  src: url('Outfit-Light.ttf') format('truetype');
  font-weight: 100; /* وزن خفيف */
  font-style: normal;
}

/* ================= Arabic Fonts ================= */
/* Headings AR */
@font-face {
  font-family: 'BahijBold';
  src: url('Bahij-TheSansArabic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Body AR */
@font-face {
  font-family: 'BahijLight';
  src: url('Bahij-TheSansArabic-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* ================= Usage ================= */

/* العناوين بالإنجليزي */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit-SemiBold', sans-serif;
  font-weight: 600;
}


/* النصوص العربية */
:lang(ar) {
  font-family: 'BahijLight', sans-serif;
  font-weight: 300;
}

/* العناوين العربية */
:lang(ar) h1,
:lang(ar) h2,
:lang(ar) h3,
:lang(ar) h4,
:lang(ar) h5,
:lang(ar) h6 {
  font-family: 'BahijBold', sans-serif;
  font-weight: 700;
}
body {
  margin: 0;
 font-family: 'Outfit-Light', sans-serif;
  font-weight: 100;
  background: #f8f8f8;
  direction: ltr;
 padding: 0;
  overflow-x: hidden;
}
nav ul li .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-radius: 5px;
	
}

nav ul li .dropdown-content li a {
  color: black;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

nav ul li .dropdown-content li a:hover {
  background-color: #f1f1f1;
}
.where-to-buy{
  padding: 130px 20px 40px; /* نزود من 100 أو 130 لحد 160 */
}
.coming-soon-container img {
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}
/* نضيف كلاس "show" لعرض القائمة */
.dropdown-content.show {
  display: block;
}
.logo img {
  height: 50px; /* أو الحجم المناسب */
  width: auto;
  display: block;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	  max-width: 100%;
  
   background-color: rgba(0, 0, 0, 0.8); /* رمادي غامق مع شفافية */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000; /* يتفوق على باقي العناصر */
  backdrop-filter: blur(4px); /* تأثير جميل عند التمرير */
	gap: 20px; /* ⬅ المسافة بين العناصر */
}


.logo {
  font-size: 24px;
  font-weight: bold;
	 white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
	 gap: 20px;
  padding: 0;
  margin: 0;
	    flex-wrap: wrap; /* يمنع تمدد العرض */

}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
	 font-family: 'Outfit-light', sans-serif; /* ← هنا حددت الخط */
}

.language {
  position: relative;
	  margin-right: 45px;
  padding: 5px 10px;
	
}

.dropbtn {
  background-color: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 120px;
  right: 0;
	left:auto;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-radius: 5px;
  overflow: hidden;
	  max-width: calc(100vw - 20px); /* يمنع الخروج عن عرض الشاشة */
  transform: translateX(-10%); /* ⬅ يسحب القائمة شوي للداخل */

}

.dropdown-content a {
  color: black;
  padding: 10px 14px;
  text-decoration: none;
  display: block;

}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hero {
	 position: relative; /* للتأكد من أن الهيدر لا يتجاوز حدودها */
  height: 100vh;
	 width: 100%;
  background-image: url('cover2.jpeg');
  background-size: cover;
  background-position: center;
 
	 overflow: hidden;
	background-repeat: no-repeat;
}

.hero .overlay {
  background-color: rgba(0,0,0,0.2);
  color: white;
  height: 100%;
	width: 100%;
  display: flex;
  flex-direction: column;
  justify-content:flex-end;
  align-items: center;
  text-align: center;
	 padding-bottom: 50px;
  box-sizing: border-box;
}
.section {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.about-section {
  height: 100vh; /* تجعل القسم بارتفاع الشاشة */
  padding: 0 20px; /* إزالة المسافة العلوية والسفلية */
  text-align: center;
  background-color: #ffffff;

  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #1a1a1a;
  color: white;
}
.section-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.split-image,
.split-text {
  flex: 1 1 50%;
  min-height: 100vh;
}

.split-image {
  width: 100%;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  flex: 1;
  padding: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.split-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.split-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}


.section-split.reverse {
  position: relative;
  height: 100vh; /* ارتفاع القسم بارتفاع الشاشة */
  padding: 0;
  margin: 0;
  display: block; /* بدل flex عشان الصورة تأخذ كل المساحة */}
.section-split.reverse .split-image img {
  object-fit: contain; /* ✅ عرض الصورة كاملة بدون قص */
}
.section-split.reverse .split-image {
width: 100%;
  height: 100%;
  margin: 0;
}

.section-split.reverse .split-image img {
  object-fit: contain;
}
.full-image-section {
  width: 100%;
  height: 100vh; /* ارتفاع القسم يساوي ارتفاع شاشة العرض */
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* الصورة تغطي القسم بالكامل مع قص بسيط حسب الأبعاد */
  display: block;
}
.footer {
  background-color: rgba(0, 0, 0, 0.9); /* رمادي غامق */
  color: #fff; /* خط أبيض */
  padding: 40px 20px;

  direction: ltr;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:20px;
}

.footer-column {
  flex: 1 1 22%;
  margin-bottom: 20px;
  min-width: 220px;
  padding: 0 10px; /* ← تضيف مسافة أفقية بين الأعمدة */	
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color:#fff;	
 border-bottom: 1px solid #555;
  padding-bottom: 10px;
	font-weight: bold;
}

.footer-column p {
  margin: 10px 0;
  font-size: 14px;
	line-height:1.6;
}

.footer-column i {
  margin-right: 8px;
  color: #f0f0f0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
	  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ccc;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 10px;
  max-width: 160px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-align: center;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #ccc;
  transform: scale(1.2);
}
/* Responsive for small screens */
@media (max-width: 768px) {
 
	.footer-container {
    flex-direction: column;
    align-items: flex-start;
	
  }

  .footer-column {
    flex: 1 1 100%;
    min-width: auto;
  }

  .social-icons {
    margin-top: 20px;
  }
}

nav.main-nav {
 position: absolute;
  top: 80px;
  left: 0; /* اليسار */
  width: 100%; /* كامل عرض الصفحة */
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  padding: 10px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start; /* محاذاة على اليسار */
  border-radius: 0; /* إزالة الفواصل */

}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

nav.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s;
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-block;
}

nav.main-nav ul li a:hover,
nav.main-nav ul li a.active {
  background-color: #1a1a1a;
  color: #f8f8f8;
}

/* محتوى الصفحة */
main {
	background-color: #fff;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px 40px;
  text-align: center;
  box-sizing: border-box;
}

.coming-soon-section {
  height: calc(100vh - 100px); /* خصم ارتفاع الهيدر + النافيجايشن */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* خلفية بيضاء أو غيرها حسب اختيارك */
  padding: 0 20px;
  box-sizing: border-box;
}
.coming-soon-container {
   max-width: 500px;
  width: 100%;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  background-color: white;
}

.coming-soon-container i {
  font-size: 80px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.coming-soon-container h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.coming-soon-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}
nav.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

nav.main-nav ul li.separator {
  color: white;
  font-weight: bold;
  user-select: none; /* عشان ما يقدر المستخدم يحدد النص */
}

.content-section {
  padding: 100px 20px 40px; /* padding top to avoid nav overlap */
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.content-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

/* Address Block */
.address-block {
  margin: 30px 0;
  background-color: #f2f2f2;
  padding: 15px 20px;
  border-radius: 8px;
  color: #333;
  text-align: center;
}

.address-block h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}

/* Dealer List */
.dealer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
  font-size: 1rem;
}

.dealer-list li {
  margin-bottom: 20px;
  line-height: 1.5;
}

body.contact-page {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: #ffffff;
  direction: ltr;
}
.contact-info {
  max-width: 600px;
  margin: 20px auto 40px; /* نفس البادينغ العلوي مثل باقي الصفحات */
  text-align: center;
  color: #1a1a1a;
}

.contact-info h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-details p {
  font-size: 1.2rem;
  margin: 12px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #555;
  line-height: 1.2;
}

.contact-details i {
  color: #1a1a1a;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
  margin-bottom: 2px; /* جرب تحرك الأيقونة شوية */
}

.contact-form-section {
  max-width: 600px;
  margin: 50px auto 100px;
  padding: 0 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  resize: vertical;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

.contact-form button {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info {
    margin: 100px 20px 30px;
  }

  .contact-form-section {
    padding: 0 10px;
  }
}

.slabs-section {
  padding: 60px 40px; /* مسافة جانبية من الحواف */
  text-align: center;
  background: #fff;
}

.slabs-section h1 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  margin-top: 90px;
  color: #1a1a1a;
}

.slabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 325px); /* 3 أعمدة، كل واحدة 325px */
  justify-content: center; /* توسيط الشبكة */
  gap: 80px; /* مسافة بين الصور */
}

.slab-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.slab-item img {
  width: 325px;
  height: 650px;
  object-fit: cover;
}

.slab-item p {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.slab-item:hover {
  transform: translateY(-5px);
}
/* تجاوب للشاشات */
@media (max-width: 1200px) {
  .slabs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .slabs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .slabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .slabs-grid {
    grid-template-columns: 1fr;
  }
}


.gallery {
    padding: 40px 20px;
    background-color: white;
}

.gallery h3 {
    text-align: center;
    font-size: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    filter: blur(3px); /* الغباشة */
    transition: transform 0.3s, filter 0.3s; /* للانتقالات إذا حبيت */
}

.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
    .about-section, .vision-mission {
        flex-direction: column;
    }
}

	.about-hero {
  background-color: #fff;
  padding: 120px 20px 60px; /* مسافة من الأعلى والأسفل */
		
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero h2 {
  text-align: left; /* العنوان على اليمين */
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-weight: 700;
}

.about-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 280px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transform: scale(1);
  transition: transform 0.5s ease-out;
}
  .vision-mission {
      background: #fff;
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
	 
    }

    .vision, .mission {
      flex: 1;
      text-align: center;
    }

    .vision h2, .mission h2 {
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 15px;
    }

    .vision p, .mission p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }

    /* الخط العامودي */
    .divider {
  width: 2px;
  background: #ccc;
  /* أهم شي نخلي الطول يتمدد على طول الكونتينر */
  align-self: stretch;
}

    /* استجابة للشاشات الصغيرة */
    @media (max-width: 768px) {
      .vision-mission {
        flex-direction: column;
      }

      .divider {
        width: 100%;
        height: 2px;
      }
    }
		.vision-mission i {
  font-size: 40px;
  color: #333;   /* غيّر اللون حسب التصميم */
  margin-bottom: 10px;
  display: block;   /* يخلي الأيقونة بسطر لحالها فوق النص */
  text-align: center;
}
/* Values (متناسق مع about-hero & vision-mission) */
.values-section {
  background: #fff;
  padding: 60px 20px;
	text-align: center;
 
}
values-section h2{
	text-align: center;
}

.values-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 32px;
  font-weight: 700;
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  border-color: #333;
}

/* SVG icons inherit color via currentColor */
.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  color: #1a1a1a;            /* لون الأيقونة */
}
.value-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* نصوص */
.value-card h3 {
  font-size: 1.15rem;
  color: #222;
  margin: 8px 0 6px;
  font-weight: 700;
}
.value-card p {
  font-size: .98rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .values-section { padding: 48px 16px; }
}

.why-choose-us {
  text-align: center;
  padding: 60px 20px;
background-color: white;
}

.why-choose-us h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

/* وضع الأزرار خارج الميزات يمين ويسار */
.feature-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 10px 0;
}

/* البطاقات */
.feature {
  padding: 24px 20px;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  border-color: #999;
}

/* الأزرار خارج الميزات يمين ويسار */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 8px;
}

button.prev {
  left: -60px; /* برا يسار الميزات */
}

button.next {
  right: -60px; /* برا يمين الميزات */
}

button:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
  button.prev { left: -40px; }
  button.next { right: -40px; }
}

@media (max-width: 600px) {
  .feature-container {
    grid-template-columns: 1fr;
  }
  button.prev { left: -20px; }
  button.next { right: -20px; }
}
     .careers-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 150px 10%;
    }

    /* Left Column - Form */
.apply-form form {
  display: flex;
  flex-direction: column;
}

.apply-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.apply-form input[type="file"] {
  display: none; /* يخفي زر الاختيار الافتراضي */
}

/* زر مخصص */
.custom-file-upload {
  display: inline-block;
  padding: 12px;
  cursor: pointer;
  background-color: #2F2C2C;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

.custom-file-upload:hover {
  background-color: #A09696;
}

.apply-form button {
  background-color: #2F2C2C;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-form button:hover {
  background-color: #A09696;
}

.apply-form .privacy {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
  text-align: center;
}
    /* Right Column - Info */
    .careers-info {
      flex: 1;
      min-width: 300px;
    }

    .careers-info h3 {
      color: #444;
      font-size: 16px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .careers-info h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .careers-info h2 {
      font-size: 48px;
      font-weight: bold;
      color: #d0d0e0;
      margin: 0 0 20px 0;
    }

    .careers-info p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .careers-info ul {
      padding-left: 20px;
      font-size: 15px;
      line-height: 1.8;
    }

 .warranty-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 150px 10%;
    }

    /* Left Column - Form */
.warranty-form form {
  display: flex;
  flex-direction: column;
}

.warranty-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.warranty-form input,
.warranty-form select,
.warranty-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.warranty-form input[type="file"] {
  display: none; /* يخفي زر الاختيار الافتراضي */
}

/* زر مخصص */
.custom-file-upload {
  display: inline-block;
  padding: 12px;
  cursor: pointer;
  background-color: #2F2C2C;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

.custom-file-upload:hover {
  background-color: #A09696;
}

.warranty-form button {
  background-color: #2F2C2C;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.warranty-form button:hover {
  background-color: #A09696;
}

.warranty-form .privacy {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
  text-align: center;
}
    /* Right Column - Info */
    .warranty-info {
      flex: 1;
      min-width: 300px;
	margin-top: 15%;
		
    }

    .warranty-info h2 {
      font-size: 48px;
      font-weight: bold;
      color: #d0d0e0;
      margin: 0 0 20px 0;
    }

    .warranty-info p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
	
}

/* للموبايل */
@media (max-width: 768px) {
	 header {
    justify-content: flex-start;
        padding: 10px 3px; /* تقليل الحشوة */
  }
 .menu-toggle {
        display: block;
    position: absolute;
    top: 10px;    /* نزول شوي من فوق */
    right: 20px;  /* يلتصق بأقصى اليمين */
    font-size: 26px; /* حجم الأيقونة */
    cursor: pointer;
    color: white; /* اللون أبيض عشان يبين فوق الهيدر */
    z-index: 1100; /* فوق كل العناصر */
  }
  nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;                /* تأكد تبقى جوّا الشاشة */
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    padding: 15px 0;
    z-index: 999;
    overflow-y: auto;        /* إذا القائمة طويلة يصير فيها سكرول */
    max-height: calc(100vh - 60px);
  }

  .logo img {
    height: 35px; /* حجم أصغر */
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 12px;
    color: #fff;
  }

  /* dropdown بالموبايل */
  nav ul li ul.dropdown-content {
    position: static;     /* جوّا القائمة مش absolute */
    display: none;        /* مخفية افتراضياً */
    background: rgba(255,255,255,0.08);
    padding: 10px 0;
  }

  /* تفتح عند الضغط بإضافة class */
  nav ul li.open > ul.dropdown-content {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  /* اللغة صارت داخل القائمة */
  .language {
    position: relative;
    margin: 10px auto 0;
  }

  nav.show {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* افتراضياً */
.mobile-only { display: none; }
.desktop-only { display: block; }



/* للموبايل */
@media (max-width: 768px) {
  .mobile-only { display: block; }
  .language { display: none; }
  
  .logo {
    font-size: 18px; /* تصغير حجم اللوغو للموبايل */
	  margin-left: 10px;
  }
  
   

  /* إزالة أي مسافات من الجسم */
  html, body {
    margin: 0;
    padding: 0;
  }

  /* الحاويات الأب تتحكم بعرض كامل */
  .section-split, 
  .split-image, 
  .container, 
  .wrapper {  /* أضف أي اسم حاوية موجود عندك */
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 30px 0 0 0 !important;
    display: block !important;
    box-sizing: border-box;
   
  }




.split-image {
        height: auto;

    width: 100vw;       /* نفس عرض الصورة */
    max-width: 100vw;
    padding: 0;         /* إزالة أي padding */
    margin: 0;          /* إزالة أي margin */
    display: block;
    box-sizing: border-box;
}

.split-image img {
    width: 100%;        /* تمتد داخل الحاوية بالكامل */
    height: 90vh;
    display: block;
    margin: 0;
    border-radius: 0;
}

	body{
		background-color: white;
		
	}
	  .split-text {
	      margin-top: -140px;
         
        padding: 0 !important;
    }

    .split-text h2,
    .split-text p {
   margin: 0 10px 5px 10px !important; /* قللنا المسافة السفلية */
        padding: 0 !important;             /* إزالة أي padding إضافي */
        }
  .split-text h2 {
    font-size: 24px;
    text-align: center;

  }

  .split-text p {
    font-size: 15px;
    text-align: justify;
   
  }


  
  
	.full-image-section{
		   margin: 0;      /* إزالة أي margin على الموبايل */
    padding: 0;     /* إزالة أي padding على الموبايل */
		background-color: white;
		margin-top: -50px;
		margin-bottom:20px;
		 height: auto; /* ارتفاع تلقائي */
	}
	
	 .full-image-section img {
     width: 100%;      /* عرض كامل الشاشة */
    height: auto;     /* ارتفاع متناسب */
		
  }
/* إعداد عام للقائمة الرئيسية */
nav.main-nav {
  margin-top: -28px;        /* حسب التصميم لديك */
  display: block;
}

/* UL كـ flex row مع تباعد محدد */
nav.main-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2px; /* مسافة صغيرة بين العناصر */
}

/* كل LI كـ عنصر خطّي */
nav.main-nav ul li {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

nav.main-nav ul li a,
nav.main-nav ul li span {
  padding: 4px 6px;   /* padding أصغر عشان الموبايل */
  font-size: 13px;    /* خط أصغر */
}

/* السهم (separator) */
nav.main-nav ul li.separator {
  margin: 0;       /* نحذف أي فراغ افتراضي */
  padding: 0;      /* حذف أي padding */
  font-size: 13px;
  line-height: 1;
}

/* رابط About بعد السهم */
nav.main-nav ul li a.active {
  padding-left: 2px;   /* يقلل المسافة عن السهم */
}
 nav ul li .dropdown-content {
    background-color: #222;   /* غامق */
  }

  nav ul li .dropdown-content li a {
    color: #fff;              /* النص أبيض */
  }

  nav ul li .dropdown-content li a:hover {
    background-color: #444;   /* أغمق شوي عند الهوفر */
  }
}
.slab-spec {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
  padding: 40px 20px 60px 20px; /* زيادة padding-top و padding-bottom */
  margin: 150px auto 50px auto;  /* زيادة margin-top و margin-bottom لتوضيح الإطار */
  max-width: 1200px;
  transition: transform 0.3s ease;
	
}
.slab-spec:hover {
  transform: translateY(-5px);      /* نفس تأثير التحريك عند hover */
}
.slab-spec .spec-top {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 50px;
  margin: 0 auto 20px auto;   /* توسيط بالنص */
align-items: start;
	max-width: 700px;           /* أقصى عرض للمواصفات */
  padding: 0 20px;            /* مسافة يمين ويسار */
}

.slab-spec h3 {
 font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  border-bottom: 2px solid #aaa;
  display: flex;
align-items: center;
  min-height: 40px; /* نفس ارتفاع كل العناوين */
}
.slab-spec ul {
list-style: none;
margin: 0;
padding: 0;
font-size: 14px;

}
.slab-canvas {
text-align: center;


background: #white;
}
.slab-canvas img {
max-width: 60%;
border-radius: 8px;
object-fit: contain;
}
.slab-caption {
margin-top: 12px;
text-align: center;
font-weight: bold;
letter-spacing: 1px;
border-top: 1px solid #e3e3e8;
padding-top: 10px;
	 font-size: 2rem;
  color: #333;
}
		 
 
 /* Lightbox CSS */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation-name: zoom;
  animation-duration: 0.3s;
}

@keyframes zoom {
  from {transform:scale(0.7)} 
  to {transform:scale(1)}
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-caption {
  margin: 15px 0;
  color: #f1f1f1;
  font-size: 20px;
}

		
		
@media (max-width: 768px) {
  .slab-spec {
          margin: 120px 10px 30px 10px; /* فوق أكبر من تحت */ 
    padding: 20px 10px;
  }

  .slab-spec .spec-top {
    grid-template-columns: 1fr;  /* كل عنصر تحت التاني */
    gap: 15px;                   /* مسافة بين العناصر */
    max-width: 100%;             /* ملء العرض */
    padding: 0 10px;
    text-align: left;
  }

  .slab-spec .spec-top h3 {
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    min-height: auto;  
    display: block;              /* ياخد عرض كامل */
  }

  .slab-canvas {
    text-align: center;          /* خلي الصورة بالنص */
  }

  .slab-canvas img {
    display: block;              /* أسهل لتوسيطها */
    margin: 0 auto;
    max-width: 85%;              /* أصغر شوي من الديسكتوب */
    height: auto;
  }

  .slab-caption {
    font-size: 14px;             /* أكبر شوي من 12px لتبين أوضح */
    display: block;
    border-top: 1px solid #e3e3e8;
    padding-top: 5px;
    text-align: center;
    margin: 10px auto 0 auto;
  }
   
}