/* --- Global Containers --- */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Services Hero --- */
.hero-services {
  background: linear-gradient(rgba(9, 13, 150, 0.9), rgba(9, 13, 150, 0.7)), url('images/Addasubheading-5.png') center/cover;
  padding: 100px 0;
  text-align: center;
  color: white;
}

.hero-services h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
}

/* --- Services Grid --- */
.services-section {
  padding: 80px 0;
  background: #fcfdff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 5px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 5px solid #090d96;
  box-shadow: 0 20px 50px rgba(9, 13, 150, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(9, 13, 150, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #090d96;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #090d96;
  font-size: 1.5rem;
}

/* --- Feature Highlight --- */
.feature-section {
  padding: 80px 0;
  background: #ffffff;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.feature-img {
  flex: 1;
}

.feature-content {
  flex: 1;
}

.feature-img img {
  width: 100%;
  border-radius: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.feature-list li::before {
  content: '✓';
  color: #090d96;
  font-size: 1.2rem;
}

@media (max-width: 850px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    flex-direction: column-reverse;
  }
}

/* RTL Support */
[lang="ar"] .service-card,
[lang="ar"] .feature-content {
  text-align: right;
}

[lang="ar"] .feature-list li {
  flex-direction: row-reverse;
}