 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #3db34a;
    --green-dark: #2e9040;
    --green-light: #5dca6a;
    --yellow: #FFC107;
    --dark: #0d1b2a;
    --dark2: #0f1e30;
    --navy: #07184C;
    --white: #ffffff;
    --gray-bg: #f7f8fa;
    --gray-light: #efefef;
    --gray-text: #777;
    --text-dark: #030e33;
    --card-border: #e6e8ec;
    --font: 'Cairo', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    direction: ltr;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAVBAR ─── */

  .lang-switch {
  margin-left: auto; /* يدفع الزر لأقصى اليسار */
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-switch:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
nav {
  width: 100%;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: transparent; /* الوضع الافتراضي */
}

/* عند السكروول */
nav.scrolled {
  background: rgb(17 32 77); /* اللون المميز */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px); /* تأثير زجاجي جميل */
}
  .nav-logo {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
  .nav-logo img {width: 100px; }

  /* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;

  /* الصورة */
  background: url("../../images/offers/world-cup-en.webp") center/cover no-repeat;
}

/* طبقة تغميق لتحسين وضوح النص */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* المحتوى فوق الطبقة */
.hero > * {
  position: relative;
  z-index: 2;
}

  /* Two-column grid wrapper */
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    max-width: 1200px;
    margin: 0 auto;
  }
  /* RIGHT col — text content */
  .hero-content {
    padding: 100px 0;
        text-align: left;
  }
  /* LEFT col — image */
  .hero-image-col {
    position: relative;
    overflow: hidden;
  }

  .hero-tag {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
  }
  .hero h1 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.20;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  .hero h1 span { color: var(--green-light); }
  .hero p {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.95;
    margin-bottom: 30px;
    font-weight: 400;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(61,179,74,0.35);
  }
  .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61,179,74,0.45);
  }

  /* ─── SERVICES CARDS ─── */
  .services {
    padding: 56px 44px 52px;
    background: var(--white);
  }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }
  .card {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 26px 22px 22px;
    text-align: right;
    background: var(--white);
    transition: box-shadow .25s, transform .25s;
  }
  .card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }
  .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
  }
  .card-icon.blue  { background: #e3f0fc; }
  .card-icon.teal  { background: #e0f6f2; }
  .card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: center;
    margin-top: 20px;
  }

    .card img {
   width: 40px;
   text-align: center;
  }
  .card p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: center;
  }

    .card h4 {
      text-align: center;
    font-size: 14px;
    color: #3db34a;
  }
  .card-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s;
  }
  .card-link:hover { color: var(--green-dark); text-decoration: underline; }

  /* ─── GREEN BANNER ─── */
  .green-banner {
    background: var(--green);
    padding: 50px 44px;
    text-align: center;
    color: var(--white);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0.2px;
  }
  .green-banner span { color: var(--yellow); }

  /* ─── STATS ─── */
  .stats-section {
    padding: 60px 44px 56px;
    background: var(--white);
    text-align: center;
  }
  .stats-section h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
  .stats-section > p {
    font-size: 13.5px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 720px;
    margin: 0 auto;
  }
  .stat-card {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow .2s;
  }
  .stat-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
  .stat-card .stat-icon {
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 14px;
  }
  .stat-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .stat-card p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.75;
  }
  .stat-highlight { color: var(--green); font-weight: 800; }

  /* ─── TOOLS SECTION ─── */
  .tools-section {
    padding: 60px 44px 56px;
    background: var(--gray-bg);
    text-align: center;
  }
  .tools-section h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .section-sub {
    font-size: 13.5px;
    color: var(--gray-text);
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .tools-grid {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 850px;
    margin: 40px auto;
  }
  .tool-card {
       margin-bottom: 20px;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 24px 22px;
    text-align: left;
    transition: box-shadow .2s, transform .2s;
    
  }
  .tool-card:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    transform: translateY(-1px);
  }
  .tool-header {
    align-items: center;
    margin-bottom: 14px;
  }
  .tool-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }
    .tools-section img {
    width: 35px;
    margin-bottom: 3px;
  }
  .tool-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 20px;
  }
    .tool-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 27px;
  }

      .tool-card img {
    width: 45px;
  }
  .tool-card ul { list-style: none; padding: 0; }
  .tool-card ul li {
    font-size: 14px;
    color: var(--gray-text);
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
  }
  .tool-card ul li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 12px;
    margin-right: 10px;
  }
  .tool-card ul li:last-child { border-bottom: none; }

  /* ─── DARK FEATURE SECTION ─── */
  .dark-feature {
   background: #07184C;
    padding: 72px 44px;
    color: var(--white);
  }
  .dark-feature h2 {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
    color: var(--white);
  }
  .dark-feature .sub {
    text-align: center;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 52px;
  }
  .dark-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 52px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* Phone mockup */
  .phone-mockup-wrap {
    display: flex;
    justify-content: center;
  }

    .phone-mockup-wrap img {
    width: 250px;
  }
  
  
  .chat-time {
    font-size: 10px;
    color: #888;
    text-align: center;
    margin: 6px 0 10px;
    background: rgba(255,255,255,0.6);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
  }
  .chat-bubble {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: 10.5px;
    color: #333;
    max-width: 88%;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }
  .chat-bubble.out {
    background: #dcf8c6;
    border-radius: 10px 0 10px 10px;
    margin-right: auto;
    margin-left: 0;
    text-align: right;
  }
  .chat-bubble .green-link { color: #075e54; font-weight: 700; }
  .chat-check { color: #34b7f1; font-size: 9px; display: block; text-align: left; margin-top: 3px; }

  /* Feature list */
  .feature-list { list-style: none; padding: 0; }
  .feature-item {
    margin-bottom: 30px;
    text-align: left;
    background-color: #102564;
    padding: 20px;
    border-radius: 10px;
  }
  .feature-item:last-child { margin-bottom: 0; }
  .feature-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 14px rgba(61,179,74,0.4);
  }
  .feature-item-text h4 {
    font-size: 14.5px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
  }
  .feature-item-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 10px;
  }

    .feature-item-text span {
   font-size: 12px;
    background: #07184c;
    padding: 2px 6px;
    margin-top: 20px;
    border-radius: 100px;
  }

  /* ─── INDUSTRIES ─── */
  .industries {
    padding: 64px 44px;
    background: var(--white);
    text-align: center;
  }
  .industries h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 36px;
    color: var(--text-dark);
  }

  
  /* ─── FORM SECTION ─── */
  .form-section {
    background: #07184C;
    padding: 72px 44px 80px;
    color: var(--white);
    text-align: center;
  }
  .form-section h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--white);
  }
  .form-section .sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .form-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 32px 0 40px;
    flex-wrap: wrap;
  }
  .form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .form-step .step-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    transition: background .2s;
  }
  .form-step:hover .step-icon { background: rgba(61,179,74,0.2); }
  .form-step p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
  }
  .form-wrap {
    max-width: 460px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 36px 30px;
    text-align: left;
    backdrop-filter: blur(8px);
  }
  .form-group { margin-bottom: 15px; }
  .form-group label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    font-family: var(--font);
    font-size: 13.5px;
    outline: none;
    direction: ltr;
    transition: border .2s, background .2s;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--green);
    background: rgba(255,255,255,0.1);
  }
  .form-group select option { color: #333; background: #fff; }
  .form-group textarea { min-height: 80px; resize: vertical; }
  .btn-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(61,179,74,0.35);
    letter-spacing: 0.3px;
  }
  .btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(61,179,74,0.45);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #21305f;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px 44px;
    font-size: 12.5px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  footer span { color: var(--green-light); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .ind-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .hero { padding: 44px 20px 52px; }
    .services { padding: 44px 20px; }
    .stats-section { padding: 48px 20px; }
    .tools-section { padding: 48px 20px; }
    .dark-feature { padding: 56px 20px; }
    .industries { padding: 48px 20px; }
    .form-section { padding: 56px 20px 64px; }
    footer { padding: 18px 20px; }

    .cards-grid { grid-template-columns: 1fr; gap: 14px; }
    .stats-grid { grid-template-columns: 1fr; gap: 14px; }
    .tools-grid { grid-template-columns: 1fr; gap: 14px; }
    .dark-grid { grid-template-columns: 1fr; gap: 36px; }
    .ind-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .hero-inner { grid-template-columns: 1fr; grid-template-rows: 220px auto; }
    .hero-image-col { order: -1; }
    .hero-image-col::after { background: linear-gradient(to bottom, transparent 40%, var(--dark2) 100%); }
    .hero-content { padding: 32px 20px 44px; align-items: flex-start; }
    .hero h1 { font-size: 26px; }
    .form-wrap { padding: 26px 20px; }
    .form-steps { gap: 28px; }
    .green-banner { font-size: 15px; padding: 18px 20px; }
  }

  @media (max-width: 480px) {
    .ind-grid { grid-template-columns: 1fr; }
    .dark-grid { grid-template-columns: 1fr; }
  }

  .btn-primary {
       font-size: 13px;
       
    }