body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background: #f8f9fb;
  color: #222;
}

.header {
  background: #002b5b;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: 800;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}
nav a:hover { color: #f4a300; }

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1200&q=60')
              center/cover no-repeat;
  color: white;
}

.hero h1 { font-size: 32px; margin-bottom: 10px; }
.hero p { font-size: 16px; max-width: 500px; margin: auto; }
.btn {
  background: #f4a300;
  color: #222;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.bg-light { background: #eef3f8; }

h2 { font-size: 26px; margin-bottom: 25px; }

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: auto;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.card h3 { margin-bottom: 10px; color: #002b5b; }

.email a {
  font-size: 18px;
  color: #002b5b;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #002b5b;
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: 30px;
}
