body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  margin: 0;
  background-color: #fff9f0;
  color: #333;
}

h1, h2, h3 {
  color: #d4a10c;
}

header.banner {
  background: url('https://i.postimg.cc/2SzdmK38/Whats-App-Image-2025-07-13-at-00-23-47-8f186137.jpg') center/cover no-repeat;
  height: 300px;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .overlay {
  background-color: rgba(255, 204, 0, 0.35);
  padding: 20px;
}

header h1, header p {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 20px auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

section h2 {
  text-align: center;
  margin-top: 0;
}

ul {
  list-style-type: square;
  padding-right: 20px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 250px;
  background-color: #fffdf8;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 10px 0 5px;
}

.card p {
  padding: 0 10px 10px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #d4a10c;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
}

form button:hover {
  background-color: #b78c0a;
}

#contact {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 20px auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

#contact a {
  color: #d4a10c;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #d4a10c;
  color: white;
}