* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo img {
    max-height: 70px;
    width: auto;
}

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 {
    position: relative;
    min-height: 100vh; /* يملي الشاشة */
    background-image: url("/assets/images/hero.jpg");
    background-size: cover;      /* تتغير حسب حجم الشاشة */
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* وضوح النص */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
}
/*للموبايل */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* ======================================================
   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 {
    padding: 100px 0;
    background: #fafafa;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #111;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.company-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.company-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
}

.company-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}





.company-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #caa45c;
    margin-bottom: 10px;
}

/* ======================================================
   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;
}













/* ===== Companies Page ===== */

.companies-hero {
    position: relative;
    min-height: 60vh;
    background-image: url("/assets/images/companies-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.companies-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.companies-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.companies-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.companies-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Companies List */

.companies-list {
    padding: 100px 0;
}

.company-block {
    max-width: 900px;
    margin-bottom: 70px;
}

.company-block h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.company-sector {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #caa45c;
    margin-bottom: 20px;
}

.company-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* CTA */

.companies-cta {
    background: #111;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.companies-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.companies-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 768px) {
    .companies-hero h1 {
        font-size: 2.2rem;
    }

    .company-block h2 {
        font-size: 1.6rem;
    }
}
