* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  direction: rtl;
  background-color: #fff;
  color: #000;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000; /* ← أسود بالكامل */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 999;
}

.logo img {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: #000;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 15px;
    text-align: center;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}
.centered-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 20px;
}


.services-section {
 
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.services-container {
  background-color: #092668;
  padding: 50px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.services-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 200px;
  border-radius: 10px;
  color: white;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card i {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
  font-size: 1.1rem;
  margin: 0;
}
.founder-card {
  background-color: #00093c;
  width: 280px;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.founder-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #fff;
  background-color: #fff;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.founder-role {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons .fa {
  background: #fff;
  color: #00093c;
  padding: 10px;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons .fa:hover {
  background: #ffcc00;
  transform: scale(1.1);
}

/* حل مشكلة الاسكرول الجانبي */
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* حل لمشكلة التحريك يمين/شمال من AOS */
[data-aos^="fade-right"],
[data-aos^="fade-left"] {
  overflow-x: hidden;
  max-width: 100% !important;
}
.footer-icon {
  background-color: #f4a940;
  color: #00093c;
  font-size: 18px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background-color: #ffffff;
  color: #00093c;
  transform: scale(1.1) rotate(5deg);
}
form input, form textarea {
  direction: rtl;
  text-align: right;
  font-family: 'Cairo', sans-serif;
}

