* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: linear-gradient(135deg, #e0f2fe, #f8fafc);
  color: #111;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

/* الهيدر */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
}
header.scrolled {
  padding: 8px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
header.scrolled .logo img {
  height: 60px;
}
.logo img {
  height: 90px;
}

header nav a {
  color: #111;
  margin-right: 18px;
  text-decoration: none;
  font-weight: 700;   /* 👈 Bold */
  font-size: 18px;    /* 👈 تكبير الخط */
  transition: 0.3s;
}

header nav a:hover {
  color: #38bdf8;
}

/* الهيرو */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
    /* الخلفية */
  background: url("../images/powder-overlay.jpg") center/cover no-repeat;

}



.hero h1 {
  font-size: 40px;
  font-weight: 700;
    color: #ffffff;   /* أبيض */

}

.hero p {
  margin-top: 10px;
  color: #555;
    color: #ffffff;   /* أوف وايت هادي */

}

/* زر */
.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #38bdf8;
}

/* الأقسام */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* كروت الخدمات */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 20px;
  width: 250px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* تواصل */
.contact-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  width: 280px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* الخريطة */
.map {
  max-width: 700px;
  margin: 30px auto;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

/* الفوتر */
footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.card p {
  color: #555;
  font-size: 14px;
}


.product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.product-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-info {
  max-width: 400px;
  text-align: right;
}

.product-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.product-info p {
  color: #555;
  margin-bottom: 20px;
}

.about-box {
  max-width: 800px;
  margin: 30px auto;
  text-align: right;
  line-height: 2;
}

.about-box p {
  margin-bottom: 15px;
  color: #333;
  font-size: 17px;
}

/* شكل كارت خفيف */
.about-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.product-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-info ul li {
  margin-bottom: 8px;
  color: #333;
}

html {
  scroll-behavior: smooth;
}
