/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
   font-family: 'Exo 2', sans-serif;
   font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #000;
}
section{
  margin-top:40px;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px; /* عرض الاسكرول */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* خلفية المسار */
}

::-webkit-scrollbar-thumb {
  background: #fac739; /* اللون الأساسي */
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e6b730; /* درجة أغمق عند الهوفر */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #fac739 #f1f1f1;
}
/* Navbar */
.navbar {
  width: 95%;
  margin: 15px auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 15px;         /* الحواف */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* ظل ناعم */
  z-index: 1000;
  transition: all 0.3s ease;
}


.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #000000;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  display: none;
  color: #fac739;
}

/* Menu Overlay (Mobile) */
.menu-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
 background: rgba(250,199,57,0.85);  /* خففت الشفافية */
  backdrop-filter: blur(6px);        /* البلور بيخلي اللي ورا باين بس ناعم */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.5s ease;
  z-index: 999;
}

.menu-overlay.active { top: 0; }

.menu-overlay nav { text-align: center; }

.menu-overlay ul { list-style: none; }

.menu-overlay ul li { margin: 20px 0; }

.menu-overlay ul li a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;   /* مهم عشان يملأ الشاشة */
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);  /* غامق خفيف يخلي النص باين */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #000000;
  padding: 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 14px 28px;
  background: #fac739;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-btn { padding: 12px 20px; font-size: 0.9rem; }
}
.who-we-are {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000;
  border-bottom: 4px solid #fac739;
  display: inline-block;
  padding-bottom: 10px;
}

.cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-card {
  position: relative;
  width: 300px;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* 🎨 Overlay خاص بالسكشن ده فقط */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  opacity: 1;
  transition: background 0.4s ease;
}

.info-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.card-overlay i {
  font-size: 2.8rem;
  color: #fac739;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.info-card:hover .card-overlay i {
  transform: scale(1.1);
}

.card-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.card-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}



.hr-ecosystem {
  background: linear-gradient(135deg, #fff 70%, #fac7391a 100%);
  padding: 100px 20px;
  overflow: hidden;
}

.hr-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hr-text {
  flex: 1;
  min-width: 300px;
}

.hr-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.hr-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #fac739;
  display: block;
  margin-top: 12px;
  border-radius: 2px;
}

.hr-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.hr-list li {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.hr-list li::before {
  content: "✔";
  color: #fac739;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.cta-btn {
  display: inline-block;
  background: #fac739;
  color: #000;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #e6b82f;
}

.hr-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hr-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  border: 6px solid #fac739;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: scale(0.9);
  transition: transform 0.6s ease;
}

.hr-image img:hover {
  transform: scale(1) rotate(1deg);
}

.partners {
  overflow: hidden;
   background: linear-gradient(135deg, #fff 70%, #fff6d9);
  padding: 40px 0;
  text-align: center;
}

.partners-title {
  color: #fac739;
  font-size: 2rem;
  margin-bottom: 30px;
  
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(250px * 42); /* 21 شعار × 2 = 42 شعار */
  animation: scroll 20s linear infinite;
}

.slide-track img {
  height: 90px;
  width: 200px;
  object-fit: contain;
  margin: 0 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slide-track img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .slide-track img {
    width: 120px;
    height: 60px;
    margin: 0 10px;
  }
}

.iso-certification {
   background: linear-gradient(135deg, #ffffff 80%, #fff7df);
  color: #000;       /* نصوص سوداء */
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  border: 3px solid #fac739; /* بوردر بلون الأساسي */
  border-radius: 10px;
  
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #fac739;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444;
}

.iso-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.iso-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.iso-images img {
  max-width: 300px;
  border-radius: 12px;
  border: 2px solid #fac739;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.iso-images img:hover {
  transform: scale(1.05);
}

.iso-text {
  max-width: 400px;
  text-align: left;
}
.iso-text ul li:hover {
  color: #000;
  transform: translateX(5px);
  transition: all 0.3s ease;
}


.iso-text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #000;
  border-left: 5px solid #fac739;
  padding-left: 10px;
}

.iso-text ul {
  list-style: none;
  padding: 0;
}

.iso-text ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  font-size: 1.1rem;
  color: #333;
}

.iso-text ul li::before {
  content: "✔";
  color: #fac739;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .iso-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .iso-text {
    text-align: center;
  }
  .iso-text h3 {
    border-left: none;
    border-bottom: 3px solid #fac739;
    padding-left: 0;
    padding-bottom: 5px;
    display: inline-block;
  }
}
.expansion-section {
  background: #fff;
  color: #000;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  display: inline-block;
  border-bottom: 4px solid #fac739;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

/* Map */
.map-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.map {
  width: 100%;
  max-width: 700px; /* أكبر من الأول */
}
.map-label {
  font-size: 16px;
  fill: #000;
  font-weight: bold;
}
#line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

/* Locations */
.locations-inline {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.location-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 320px; /* ✅ نفس العرض */
  height: 450px; /* ✅ نفس الطول */
  cursor: pointer;
}
.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #fac739;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.location-img:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 199, 57, 0.9);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 15px;
}
.overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: bold;
}
.overlay a {
  padding: 10px 20px;
  background: #000;
  color: #fac739;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.overlay a:hover {
  background: linear-gradient(180deg, #fff 0%, #fff7e0 100%);;
  color: #000;
  border: 2px solid #000;
}
.location-img:hover .overlay {
  opacity: 1;
   transform: translateY(0);
}
@media (max-width: 768px) {
  .map {
    max-width: 100%; /* تملى العرض */
  }
  #plane {
    font-size: 40px; /* ✈️ أكبر */
  }
  #egypt, #dubai {
    r: 20; /* النقاط أكبر */
  }
  #line {
    stroke-width: 8; /* الخط أعرض */
  }
}
@media (max-width: 768px) {
  .locations-inline {
    flex-direction: column;
    align-items: center;
  }
  .location-img {
    width: 90%;
    height: 350px;
  }
}

.contact-section {
  background: #fff;
  color: #000;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fac739;
}

.contact-section p {
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #333;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.info-box i {
  color: #fac739;
  font-size: 1.3rem;
  transition: transform 0.3s ease;

}
.info-box:hover i {
  transform: scale(1.2) rotate(10deg);
}
.info-box:hover {
  color: #fac739;
  transform: translateX(5px);
}

.info-box a {
  text-decoration: none;
  color: inherit;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  color: #000;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fac739;
  box-shadow: 0 0 8px #fac73955;
}

.contact-form button {
  background: #fac739;
  color: #000;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
  color: #fff;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    text-align: center;
    align-items: center;
  }
}
.footer {
background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  color: #fac739;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-social h3 {
  color: #fac739;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fac739;
  padding-left: 5px;
}
.footer-links ul li::before {
  content: "➝";
  color: #fac739;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fac739;
  transform: scale(1.2);
  text-shadow: 0 0 8px #fac739;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #fac739;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 9999;
}
@media (max-width: 768px) {
  .cursor{
    display: none;
  }
}
a:hover ~ .cursor,
button:hover ~ .cursor {
  width: 35px;
  height: 35px;
  background: #fac73933;
}
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #fac739;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none; /* بيظهر مع الاسكرول */
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 9999;
  animation: pulse 2s infinite;
}

#scrollTopBtn:hover {
  box-shadow: 0 0 20px rgba(250,199,57,0.7);
  transform: scale(1.1);
}

/* Animation Pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}




.car-supply {
  background: linear-gradient(180deg, #fff 70%, #fdf6dd 100%);
  color: #000;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: #444;
}

.car-journey {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.road {
  width: 100%;
  height: 400px;
  stroke-dasharray: 10 10; /* خط الطريق متقطع */
  opacity: 0.8;
}

.car {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  filter: drop-shadow(0 0 10px #fac739aa);
}

.steps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.step {
  position: absolute;
  background: #fff;
  border: 2px solid #fac739;
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: 0.3s ease;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.step h3 {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.2rem;
  border-left: 4px solid #fac739;
  padding-left: 8px;
}

.step p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.step1 { top: 260px; left: 60px; }
.step2 { top: 60px; left: 330px; }
.step3 { top: 220px; right: 60px; }

/* 📱 Responsive */
@media (max-width: 991px) {
  .road { height: 250px; }
  .steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .step {
    position: relative;
    width: 90%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1 !important;
    transform: scale(1);
  }
}

.solutions-slider {
  width: 100%;
  height: 80vh;
  position: relative;
  background: #ffffff;
  color: #000000;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* النص يروح شمال */
  padding-left: 60px;
  color: #fff;
  text-align: left;
}
.slide-overlay div {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.swiper-slide-active .slide-overlay div {
    transform: translateX(0);
    opacity: 1;
}
.slide-overlay h3 {
  font-size: 2.2rem;
  color: #fac739;
  margin-bottom: 15px;
   letter-spacing: 1px;
}

.slide-overlay p {
  font-size: 1.2rem;
  max-width: 500px;
}

/* Pagination dots */

.swiper-pagination-bullet {
  background: #fac739 !important;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
  .slide-overlay {
    padding-left: 20px;
    justify-content: center; /* في الموبايل يبقى في النص */
    text-align: center;
  }
  .slide-overlay h3 { font-size: 1.6rem; }
  .slide-overlay p { font-size: 1rem; }
}
.why-us {
  background: linear-gradient(180deg, #fff 70%, #fdf6dd 100%);
  color: #fac739;
  padding: 100px 20px;
  text-align: center;
}

.why-us .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000000;
}

.why-us .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #000000;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.why-item i {
  font-size: 2.5rem;
  color: #fac739;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}
