
body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
  margin: 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background-color: #D4AF37;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 50px;
}

.center-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.header-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.header-list {
  font-size: 1.2em;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-list i {
  color: #fff;
  font-size: 1em;
}

.header-list a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;
  transition: color 0.3s ease;
}

.header-list a:hover {
  color: #f0e68c;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin: 0 10px;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #f0e68c;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
}

.logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hamburger {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  padding: 5px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .menu {
      display: none;
      position: absolute;
      top: 50px;
      right: 0;
      left: 0;
      background-color: #D4AF37;
      flex-direction: column;
      text-align: center;
      padding: 15px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      z-index: 1000;
      margin: 0;
  }
  .menu.active {
      display: flex !important;
      opacity: 1;
      visibility: visible;
  }
  .hamburger {
      display: block;
  }
  .logo {
      width: 50px;
      height: 50px;
  }
  .center-section .header-list li {
      font-size: 1em;
  }
  .center-section .header-list li a {
      font-size: 0.7em;
  }
  .logo-container {
      margin-left: 10px;
  }
}

.hero-section {
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-color: #333;
  height: 80vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
  margin-top: 50px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 600px;
  color: white;
  position: relative;
  z-index: 10;
  margin-right: 15px;
  padding-right: 20px;
  border-right: 4px solid #D4AF37;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in 0.1s forwards;
}

.hero-text {
  text-align: right;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  position: relative;
}

.whatsapp-container {
  position: relative;
}

.whatsapp-toggle {
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: #25D366;
  color: white;
}

.whatsapp-toggle:hover {
  transform: scale(1.05);
  background-color: #1ebe57;
}

.whatsapp-toggle i {
  margin-left: 6px;
  font-size: 1.1rem;
}

.whatsapp-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  margin-top: 5px;
  z-index: 10;
}

.whatsapp-container:hover .whatsapp-dropdown {
  display: block;
}

.whatsapp-option {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.whatsapp-option:hover {
  background-color: #f0e68c;
}

.btn {
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-contact {
  background-color: #D4AF37;
  color: white;
}

.btn-contact:hover {
  background-color: #b8972e;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  color: #D4AF37;
  font-size: 1.2em;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #f0e68c;
}

.social-icon:hover i {
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.services-section {
  padding: 50px 0;
  background-color: #e5e7eb;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 30px;
}

.services-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.service-card {
  background-color: #D4AF37;
  color: white;
  padding: 25px;
  border-radius: 8px;
  width: 280px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.icon-large {
  font-size: 44px;
  margin-bottom: 12px;
}

.about-section {
  padding: 50px 0;
}

.about-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.about-text {
  flex: 1;
}

.about-text p {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 12px;
}

.recruitment-section {
  padding: 50px 0;
  background-color: #e5e7eb;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.recruitment-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.recruitment-card h3 {
  font-size: 22px;
  color: #D4AF37;
  margin-bottom: 12px;
}

.country-list {
  list-style: none;
  padding: 0;
}

.country-list li {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.country-list li i {
  color: #D4AF37;
  margin-left: 8px;
  font-size: 18px;
}

.recruitment-card p {
  font-size: 16px;
  color: #4b5563;
}

.recruitment-card p i {
  color: #D4AF37;
  margin-left: 8px;
  font-size: 18px;
}

.why-choose-section {
  padding: 50px 0;
  background-color: #e5e7eb;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.why-card {
  background-color: white;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.why-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.icon-medium {
  font-size: 28px;
  color: #D4AF37;
  margin-left: 8px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 600;
}

.why-card p {
  font-size: 13px;
  color: #4b5563;
}

.stats-section {
  padding: 50px 0;
  background-color: white;
}

.stats-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 15px;
  width: 280px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: scale(1.03);
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
}

.stat-number.active {
  animation: pulse 0.4s ease;
}

.stat h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.stat p {
  color: #4b5563;
  font-size: 16px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.contact-section {
  padding: 50px 0;
  background-color: #e5e7eb;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h3 {
  font-size: 26px;
  color: #D4AF37;
  margin-bottom: 20px;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-item:hover {
  background-color: #f9f9f9;
}

.contact-icon {
  font-size: 28px;
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon:hover {
  color: #b8972e;
  transform: scale(1.1);
  background-color: #e5e7eb;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
}

.footer {
  background-color: #1f2937;
  color: white;
  padding: 30px 0 10px;
}

.footer-content {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-logo {
  flex: 1.5;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 12px;
  color: #d1d5db;
}

.footer-links, .footer-contact {
  flex: 1;
}

.footer-links h3, .footer-contact h3 {
  font-size: 18px;
  color: #D4AF37;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #D4AF37;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 8px;
}

.footer-contact .social-media {
  display: flex;
  gap: 10px;
}

.footer-contact .social-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-contact .social-icon i {
  color: #D4AF37;
  font-size: 1.2em;
}

.footer-contact .social-icon:hover {
  transform: scale(1.1);
  background-color: #D4AF37;
}

.footer-contact .social-icon:hover i {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #d1d5db;
}

.floating-btn {
  position: fixed;
  bottom: 15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 100;
  font-size: 28px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp {
  right: 15px;
  background-color: #25D366;
}

.phone {
  left: 15px;
  background-color: #D4AF37;
}

@media (max-width: 1024px) {
  .why-choose-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .recruitment-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
      max-width: 90%;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
  }
  .hero-text h1 {
      font-size: 2.5rem;
  }
  .hero-text p {
      font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
      height: 60vh;
      min-height: 250px;
      margin-top: 50px;
  }
  .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 0 auto;
      padding: 10px;
      border-right: none;
      box-shadow: none;
  }
  .hero-text h1 {
      font-size: 2rem;
  }
  .hero-text p {
      font-size: 1rem;
  }
  .hero-buttons-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 8px;
  }
  .hero-buttons {
      flex-direction: column;
      gap: 8px;
      justify-content: center;
  }
  .whatsapp-dropdown {
      top: auto;
      bottom: 100%;
      margin-bottom: 5px;
  }
  .btn {
      padding: 8px 20px;
      font-size: 0.8rem;
  }
  .services-grid {
      flex-direction: column;
      align-items: center;
  }
  .about-content {
      flex-direction: column;
  }
  .why-choose-grid {
      grid-template-columns: 1fr;
  }
  .stats-grid {
      flex-direction: column;
      gap: 12px;
      align-items: center;
  }
  .stat {
      width: 90%;
      max-width: 300px;
      margin: 0 auto;
      text-align: center;
  }
  .stat-number {
      font-size: 48px;
  }
  .stat h3 {
      font-size: 20px;
  }
  .stat p {
      font-size: 15px;
  }
  .recruitment-grid {
      grid-template-columns: 1fr;
  }
  .recruitment-card {
      padding: 15px;
  }
  .recruitment-card h3 {
      font-size: 20px;
  }
  .recruitment-card p,
  .country-list li {
      font-size: 15px;
  }
  .contact-info {
      padding: 15px;
  }
  .contact-info h3 {
      font-size: 22px;
  }
  .contact-item h4 {
      font-size: 17px;
  }
  .contact-item p {
      font-size: 15px;
  }
  .footer-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  .footer-logo,
  .footer-links,
  .footer-contact {
      flex: unset;
  }
  .footer-contact {
      text-align: center;
  }
  .footer-contact .social-media {
      justify-content: center;
  }
}
