:root {
    --gold: #c7a24b;
    --dark: #121417;
    --gray: #8b8f95;
    --light: #f4f3ef;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
  }
  
  body {
    background: var(--light);
    color: #222;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Navbar */
  .navbar {
    background: var(--dark);
    padding: 16px 0;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-wrap img {
    width: 50px;
  }
  
  .logo-text {
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
  }
  
  .logo-text small {
    display: block;
    font-size: 11px;
    color: var(--gray);
  }
  
  /* Menu */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--gold);
    cursor: pointer;
  }
  
  .nav-links {
    display: flex;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
  }
  
  /* Hero */
  .hero {
    min-height: 100vh;   /* أهم سطر */
    background:
      linear-gradient(rgba(18,20,23,0.75), rgba(18,20,23,0.75)),
      url("../images/hero.jpg") center center / cover no-repeat;
      background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  
  .hero-content {
    max-width: 800px;
    color: #fff;
  }
  
  .hero h1 {
    font-size: 40px;
    background: linear-gradient(to left, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero p {
    margin: 15px 0 25px;
  }
  .services {
    background: linear-gradient(
      to bottom,
      #faf9f6,
      #ffffff
    );
  }
  
  .services .card {
    transition: all 0.35s ease;
    position: relative;
  }
  
  .services .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(199,162,75,0.25);
    pointer-events: none;
  }
  
  .services .icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
  }
  
  .section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--gray);
  }
  .section-divider {
    height: 2px;
    width: 60%;
    margin: -1px auto;
    background: linear-gradient(to left, transparent, var(--gold), transparent);
  }
  .why-choose {
    background: linear-gradient(
      to bottom,
      #0f1215,
      #121417
    );
    color: #fff;
  }
  
  .section-title.light {
    color: #fff;
  }
  
  .section-desc.light {
    color: #cfcfcf;
  }
  
  .why-choose .grid {
    margin-top: 50px;
  }
  
  .why-card {
    background: #161a1f;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
  }
  
  .why-card span {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
  }
  
  .why-card h3 {
    margin-bottom: 10px;
    color: var(--gold);
  }
  
  .why-card p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.7;
  }
  
  .why-card:hover {
    transform: translateY(-6px);
  }
  
  
  /* Buttons */
  .btn {
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
  }
  
  .primary {
    background: var(--gold);
    color: #000;
  }
  .process {
    background: linear-gradient(
      to bottom,
      #f1efe9,
      #e7e3d9
    );
  }
  .process::after {
    content: "";
    display: block;
    height: 2px;
    width: 60%;
    margin: 70px auto 0;
    background: linear-gradient(to left, transparent, var(--gold), transparent);
  }
  
  .step, .services .card {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  
  .secondary {
    border: 2px solid #fff;
    color: #fff;
  }
  
  /* Sections */
  section {
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
  }
  
  /* Grids */
  .steps, .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
  }
  
  .step, .card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    text-align: center;
  }
  
  .step span {
    font-size: 36px;
    color: var(--gold);
    font-weight: 800;
  }
  
  /* Stats */
  .stats {
    background: var(--dark);
    color: #fff;
  }
  
  .stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
  }
  
  .stat strong {
    font-size: 38px;
    color: var(--gold);
  }
  
  /* Footer */
  footer {
    background: var(--dark);
    text-align: center;
    padding: 30px;
    color: #aaa;
  }
  
  .footer-logo {
    width: 80px;
    margin-bottom: 10px;
  }
  
  /* 📱 Mobile */
  @media (max-width: 768px) {
  
    .menu-toggle {
      display: block;
    }
    .hero {
        min-height: 100svh; /* حل مشاكل شريط المتصفح */
      }
    .nav-links {
      width: 100%;
      display: none;
      flex-direction: column;
      background: var(--dark);
      margin-top: 15px;
    }
  
    .nav-links a {
      padding: 14px;
      margin: 0;
      border-top: 1px solid #222;
      text-align: center;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .stats .container {
      flex-direction: column;
      gap: 25px;
    }
  }
  



  /* about page style */

  .inner-hero {
    background: linear-gradient(
      rgba(18,20,23,0.85),
      rgba(18,20,23,0.85)
    ),
    url("../images/hero.jpg") center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
  }
  
  .inner-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
  }
  
  .about-page p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444;
  }
  
  .vision-mission {
    background: #faf9f6;
  }
  
  .values .card {
    text-align: center;
    font-weight: 600;
  }

  





/* service page style */

/* Hero داخلي */
.inner-hero {
  min-height: 60vh;
  background:
    linear-gradient(rgba(18,20,23,0.85), rgba(18,20,23,0.85)),
    url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-hero h1 {
  font-size: 36px;
  color: #fff;
}

.inner-hero p {
  color: #ddd;
  margin-top: 10px;
}

/* Intro */
.services-intro {
  background: #faf9f6;
}

.services-intro p {
  line-height: 1.9;
  color: #444;
  text-align: center;
}

/* Services page */
.services-page {
  background: linear-gradient(to bottom, #f4f3ef, #ffffff);
}

.service-item {
  padding: 35px;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-right: 4px solid var(--gold);
}

.service-item h3 {
  margin-bottom: 10px;
  color: var(--gold);
}

.service-item p {
  color: #555;
  line-height: 1.8;
}

/* Active menu */
.nav-links a.active {
  color: var(--gold);
}



/* portfolio Intro */
/* Portfolio Intro */
.portfolio-intro {
  background: #faf9f6;
}

.portfolio-intro p {
  line-height: 1.9;
  color: #444;
  text-align: center;
}

/* Portfolio */
.portfolio {
  background: linear-gradient(to bottom, #f4f3ef, #ffffff);
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

/* Placeholder image */
.project-image {
  height: 180px;
  background: linear-gradient(
    135deg,
    #d8d5ce,
    #ece9e2
  );
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 8px;
  color: var(--gold);
}

.project-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.project-content span {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #777;
  border: 1px solid #ddd;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Active menu */
.nav-links a.active {
  color: var(--gold);
}
.portfolio {
  background: linear-gradient(to bottom, #f4f3ef, #ffffff);
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 18px;
}

.project-content p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}




/* Contact */
.contact {
  background: linear-gradient(to bottom, #f4f3ef, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  color: var(--gold);
}

.contact-info p {
  margin-bottom: 12px;
  color: #444;
}

.contact-note {
  margin-top: 25px;
  padding: 20px;
  background: #faf9f6;
  border-right: 4px solid var(--gold);
  border-radius: 8px;
  color: #555;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Cairo', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  align-self: flex-start;
}

/* Active menu */
.nav-links a.active {
  color: var(--gold);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
