* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav a:hover {
  color: #000;
}

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 14px;
  color: #777;
}



/* ======================================================
   HERO SECTION
====================================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #f5f6f8; /* لون مؤقت – نغيره لاحقًا */
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-description {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
}

/* ======================================================
   BUTTONS
====================================================== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary:hover {
  background: #222;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}

/* ======================================================
   ABOUT SNAPSHOT
====================================================== */
.about-snapshot {
  padding: 90px 0;
}

.about-snapshot h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-snapshot p {
  max-width: 750px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* ======================================================
   COMPANIES PREVIEW
====================================================== */
.companies-preview {
  padding: 90px 0;
  background: #fafafa;
}

.companies-preview h2 {
  font-size: 34px;
  margin-bottom: 50px;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.company-card {
  padding: 35px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.company-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.company-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* ======================================================
   CTA SECTION
====================================================== */
.cta {
  padding: 100px 0;
  background: #000;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 35px;
  color: #ccc;
}

/* ======================================================
   HELPERS
====================================================== */
.center {
  text-align: center;
  margin-top: 50px;
}
