* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0b1630;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 1100px;
  max-width: 92%;
  margin: auto;
}

.center {
  text-align: center;
}

.header {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
   height: 50px;          /* سيبه زي ما هو */
  transform: scale(3.5); /* كبّر اللوجو */
  transform-origin: left center;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #0b1630;
  font-weight: 500;
}

nav a.active {
  font-weight: 700;
}

.hero {
  padding: 40px 0 60px; /* فوق | يمين/شمال | تحت */
}


.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
  color: #444;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #ff7a1a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.white {
  background: #fff;
  color: #ff7a1a;
}

.section {
  padding: 80px 0;
}

.section.light {
  background: #f8f9fb;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border: 1px solid #eee;
}

.muted {
  color: #555;
  margin-bottom: 30px;
}

.map {
  display: block;
  max-width: 300px;   /* ← غير الرقم لو حابب */
  width: 100%;
  margin: 30px auto 0;
}


.why h4 {
  margin-bottom: 8px;
}

.cta {
  background: #0b1630;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.cta p {
  margin: 10px 0 30px;
  color: #ddd;
}

.footer {
  border-top: 1px solid #eee;
  padding: 25px 0;
  font-size: 14px;
  color: #555;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .footer-flex {
    flex-direction: column;
    gap: 10px;
  }
}
.cta-dark {
  position: relative;
  padding: 40px 0;
  color: #fff;
  text-align: center;
  background: url("assets/bg-tech.png") center/cover no-repeat;
}

.cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 48, 0.85); /* Navy overlay */
}

.cta-dark .container {
  position: relative;
  z-index: 1;
}

.cta-dark h2 {
  font-size: 34px;
  margin-bottom: 10px;
}


.cta-dark p {
  color: #ddd;
  margin-bottom: 30px;
}
.contact-panel {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 40px;
}

.contact-panel h3 {
  margin-bottom: 20px;
}

.steps {
  list-style: none;
  margin-bottom: 25px;
}

.steps li {
  margin-bottom: 12px;
  color: #444;
}

.steps strong {
  color: #ff7a1a;
  margin-right: 6px;
}

.tech {
  margin-bottom: 30px;
}

.tech span {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 6px 12px;
  margin: 6px 6px 0 0;
  font-size: 13px;
  color: #333;
}

.contact-panel .btn {
  margin-top: 10px;
}
.contact-steps {
  background: #f8f9fb;
  padding: 90px 0;
}

.contact-steps h2 {
  margin-bottom: 40px;
}

.steps-list {
  max-width: 600px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff7a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
}

.step p {
  margin: 0;
  color: #333;
}

.contact-steps .tech {
  margin-bottom: 35px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 700px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 25px;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* ===== HERO LAYOUT FIX ===== */

.hero-flex {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.hero-text {
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

/* RIGHT ICONS */
.hero-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.icon-item {
  border: 1px solid #eee;
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 8px;
  background: #fafafa;
  color: #444;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-icons {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    justify-content: center;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  width: 420px;
  max-width: 90%;
  margin: 8% auto;
  padding: 30px;
  border-radius: 12px;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #0b1630;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.modal-content textarea {
  min-height: 120px;
  resize: vertical;
}

.modal-content button {
  width: 100%;
  padding: 12px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}
.contact-btn:focus,
.contact-btn:active {
  outline: none;
  box-shadow: none;
}
.contact-btn {
  border: none;
}
/* ===== MARKETS SECTION LAYOUT ===== */

.markets-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.markets-text {
  max-width: 500px;
}

.markets-map {
  display: flex;
  justify-content: flex-end;
}

.markets-map .map {
  max-width: 340px;
  margin: 0;
}
@media (max-width: 900px) {
  .markets-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .markets-map {
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width: 900px) {
  .cta-dark {
    padding: 50px 20px;
  }
}
/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .header-flex {
    flex-direction: row;          /* خليهم جنب بعض */
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    transform: scale(2.3);        /* كبر اللوجو */
    height: 46px;
  }

  nav {
    display: flex;
    gap: 14px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }
}

