body {
  font-family: 'Cairo', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0;
  direction: rtl;
}

header {
  background-color: #88c9bf;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 28px;
  margin: 0;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: #72b7ad;
}

.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  background-blend-mode: overlay;
  background-color: rgba(136, 201, 191, 0.7);
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  color: #f0f0f0;
}

.home-main {
  padding: 60px 20px;
}

.intro {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.images img {
  width: 480px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px 20px;
}

.product {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 15px;
  border-radius: 8px;
}

form {
  background-color: #ffffff;
  max-width: 480px;
  margin: 60px auto;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-weight: bold;
  color: #555;
}

form input,
form textarea {
  padding: 12px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}

form button {
  background-color: #88c9bf;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #72b7ad;
}

footer {
  background-color: #eeeeee;
  color: #777;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  border-top: 1px solid #ccc;
}
