body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #000;
  color: #fff;
}

/* ===== Header ===== */
header {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.title-text h1 {
  font-size: 20px;
  margin: 0;
}

.title-text p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  padding-left: 80px; /* يضيف مسافة آمنة من اليسار */
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s;
}

nav a:hover {
  color: #00bfff;
}


/* ===== Hero Section ===== */
.hero {
  background: url('images/skyline.jpg') center center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 50px;
  border-radius: 15px;
}

.hero h2 {
  font-size: 36px;
  color: #ffef94;
  text-shadow: 0 0 20px #ffd700;
}

.hero p {
  font-size: 18px;
  color: #ddd;
}

/* ===== About Section ===== */
#about {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

#about h2 {
  color: #ffef94;
  font-size: 28px;
}

#about p {
  max-width: 800px;
  margin: 20px auto;
  color: #ccc;
  line-height: 1.8;
}

/* ===== Products Section ===== */
#products {
  padding: 80px 20px;
  text-align: center;
  background-color: #0e0e0e;
}

#products h2 {
  color: #ffef94;
  font-size: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background: #1b1b1b;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px #000;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00bfff;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  color: #ffef94;
  margin-top: 10px;
}

.product-card p {
  font-size: 14px;
  color: #ccc;
}

/* ===== Contact Section ===== */
#contact {
  text-align: center;
  padding: 50px;
  background: #000;
}

footer {
  text-align: center;
  padding: 15px;
  background: #111;
  color: #888;
  font-size: 13px;
}
