
body {
  margin: 0;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  background: #f9f9f9;
  color: #1c1c1c;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.modern-header {
  background: white;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  padding: 10px 0;
}
.logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 600;
}
.nav-links a.active {
  color: #005aad;
}
.hero-section {
  background: linear-gradient(to left, #003d6a, #007bd3);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-button {
  background: white;
  color: #007bd3;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background: #e0efff;
}
.features {
  padding: 60px 0;
  text-align: center;
}
.feature-card {
  display: inline-block;
  width: 250px;
  background: white;
  padding: 30px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.feature-card img {
  height: 60px;
  margin-bottom: 20px;
}
.feature-card h3 {
  margin-bottom: 10px;
  color: #005aad;
}
.modern-footer {
  background: #eee;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.lang-toggle {
  text-align: left;
  padding: 10px 0 0 40px;
}
.lang-toggle a {
  color: #005aad;
  font-weight: bold;
  text-decoration: none;
}
