#main-body > main > div > div > div > div > section > div > neoxero-slider > div > div.swiper-wrapper > div div > div > figure > div > h4 {
        color: black;
    }
#main-body > main > div > div > div > div > section > div > neoxero-slider > div > div.swiper-wrapper > div div > div > figure > img {
    object-fit: contain;
}
#react-home-slider-97054894-5858-45b0-931b-975657184af2 > div > div > div > div > div.swiper-wrapper > div.swiper-slide.swiper-slide-active > div > div > div.top-\[635px\] {
    top: 70vh;
}
#react-home-slider-97054894-5858-45b0-931b-975657184af2 > div > div > div > div > div.swiper-wrapper > div.swiper-slide.swiper-slide-active > div > div > div.right-\[-100px\] {
    right: 35vw;
}

/* ══════════════════════════════════════
           CSS VARIABLES & RESET
        ══════════════════════════════════════ */
        :root {
            --RJB-primary: #1c4892;
            --RJB-primary-dark: #123066;
            --RJB-primary-light: #2a5baf;
            --RJB-secondary: #b68f63;
            --RJB-secondary-light: #c9a87c;
            --RJB-secondary-pale: #f5ede0;
            --RJB-white: #ffffff;
            --RJB-off-white: #f8f6f3;
            --RJB-bg: #f0ece7;
            --RJB-card-bg: #ffffff;
            --RJB-text-dark: #1a1a2e;
            --RJB-text-mid: #444;
            --RJB-text-light: #777;
            --RJB-border: #e0d8ce;
            --RJB-shadow-sm: 0 2px 8px rgba(28,72,146,0.08);
            --RJB-shadow-md: 0 6px 24px rgba(28,72,146,0.12);
            --RJB-shadow-hover: 0 12px 36px rgba(28,72,146,0.18);
            --RJB-radius: 16px;
            --RJB-radius-sm: 10px;
            --RJB-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;*/
        }

        html {
            scroll-behavior: smooth;*/
        }

        body {
            font-family: 'Tajawal', 'IBM Plex Sans Arabic', sans-serif;
            background-color: var(--RJB-bg);
            color: var(--RJB-text-dark);
            direction: rtl;
            min-height: 100vh;
        }

         ══════════════════════════════════════
           PAGE HEADER
        ══════════════════════════════════════ */
        .RJB-page-header {
            background: linear-gradient(135deg, var(--RJB-primary-dark) 0%, var(--RJB-primary) 55%, var(--RJB-primary-light) 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 24px 48px;
            text-align: center;
        }

        .RJB-page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 80% 20%, rgba(182,143,99,0.18) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .RJB-page-header::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 40px;
            background: var(--RJB-bg);
            clip-path: ellipse(55% 100% at 50% 100%);
        }

        .RJB-header-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .RJB-ornament-line {
            width: 48px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--RJB-secondary));
            border-radius: 2px;
        }

        .RJB-ornament-line.RJB-flip {
            background: linear-gradient(90deg, var(--RJB-secondary), transparent);
        }

        .RJB-ornament-dot {
            width: 8px;
            height: 8px;
            background: var(--RJB-secondary);
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(182,143,99,0.6);
        }

        .RJB-page-title {
            font-size: clamp(1.9rem, 5vw, 2.8rem);
            font-weight: 800;
            color: var(--RJB-white);
            letter-spacing: -0.01em;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .RJB-page-title span {
            color: var(--RJB-secondary-light);
        }

        .RJB-page-subtitle {
            margin-top: 10px;
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .RJB-branch-count {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(182,143,99,0.35);
            color: var(--RJB-secondary-light);
            font-size: 0.92rem;
            font-weight: 600;
            padding: 7px 18px;
            border-radius: 99px;
            backdrop-filter: blur(6px);
            position: relative;
            z-index: 1;
        }

        /* ══════════════════════════════════════
           MAIN GRID CONTAINER
        ══════════════════════════════════════ */
        .RJB-page-body {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 20px 72px;
        }

        .RJB-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        /* Tablet: 2 columns */
        @media (min-width: 640px) {
            .RJB-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop: 3 columns */
        @media (min-width: 1024px) {
            .RJB-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Wide: 4 columns */
        @media (min-width: 1280px) {
            .RJB-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ══════════════════════════════════════
           BRANCH CARD
        ══════════════════════════════════════ */
        .RJB-card {
            background: var(--RJB-card-bg);
            border-radius: var(--RJB-radius);
            border: 1px solid var(--RJB-border);
            box-shadow: var(--RJB-shadow-sm);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition:
                transform var(--RJB-transition),
                box-shadow var(--RJB-transition),
                border-color var(--RJB-transition);
            text-align: center;
        }

        .RJB-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--RJB-shadow-hover);
            border-color: var(--RJB-secondary);
        }

        /* Card Header */
        .RJB-card-header {
            background: linear-gradient(160deg, var(--RJB-primary) 0%, var(--RJB-primary-dark) 100%);
            padding: 20px 16px 18px;
            position: relative;
            overflow: hidden;
        }

        .RJB-card-header::after {
            content: '';
            position: absolute;
            bottom: -1px; left: 0; right: 0;
            height: 12px;
            background: var(--RJB-card-bg);
            clip-path: ellipse(52% 100% at 50% 100%);
        }

        .RJB-branch-tag {
            display: inline-block;
            background: rgba(182,143,99,0.18);
            border: 1px solid rgba(182,143,99,0.4);
            color: var(--RJB-secondary-light);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            padding: 3px 12px;
            border-radius: 99px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .RJB-branch-name {
            color: var(--RJB-white);
            font-size: 1.08rem;
            font-weight: 700;
            line-height: 1.4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .RJB-name-ar {
            font-size: 1.15rem;
        }

        .RJB-name-divider {
            color: var(--RJB-secondary);
            font-weight: 300;
            display: none;
        }

        .RJB-name-en {
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(255,255,255,0.72);
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            letter-spacing: 0.01em;
        }

        /* Card Meta Info */
        .RJB-card-meta {
            display: flex;
            align-items: stretch;
            padding: 18px 16px 14px;
            gap: 0;
        }

        .RJB-meta-block {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .RJB-meta-sep {
            width: 1px;
            background: var(--RJB-border);
            margin: 4px 12px;
            border-radius: 1px;
        }

        .RJB-meta-labels {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px;
        }

        .RJB-meta-label-ar {
            font-size: 0.72rem;
            color: var(--RJB-text-light);
            font-weight: 600;
        }

        .RJB-meta-label-en {
            font-size: 0.65rem;
            color: #aaa;
            font-weight: 400;
            font-family: 'IBM Plex Sans Arabic', sans-serif;
        }

        .RJB-meta-value {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--RJB-primary);
            letter-spacing: 0.02em;
            font-family: 'IBM Plex Sans Arabic', monospace;
            direction: ltr;
        }

        /* Map */
        .RJB-map-wrap {
            padding: 0 14px 14px;
            flex: 1;
          display: none;
        }

        .RJB-map-wrap iframe {
            display: block;
            width: 100%;
            height: 200px;
            border: none;
            border-radius: var(--RJB-radius-sm);
            overflow: hidden;
        }

        /* Visit Button */
        .RJB-visit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0 14px 16px;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--RJB-primary) 0%, var(--RJB-primary-light) 100%);
            color: var(--RJB-white);
            text-decoration: none;
            border-radius: var(--RJB-radius-sm);
            font-family: 'Tajawal', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            transition:
                background var(--RJB-transition),
                transform var(--RJB-transition),
                box-shadow var(--RJB-transition);
            box-shadow: 0 3px 12px rgba(28,72,146,0.25);
            border: 1.5px solid rgba(255,255,255,0.12);
            position: relative;
            overflow: hidden;
        }

        .RJB-visit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(182,143,99,0.2) 100%);
            opacity: 0;
            transition: opacity var(--RJB-transition);
        }

        .RJB-visit-btn:hover {
            background: linear-gradient(135deg, var(--RJB-primary-dark) 0%, var(--RJB-primary) 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(28,72,146,0.35);
        }

        .RJB-visit-btn:hover::before {
            opacity: 1;
        }

        .RJB-btn-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .RJB-visit-btn span {
            position: relative;
            z-index: 1;
        }

        /* ══════════════════════════════════════
           FOOTER
        ══════════════════════════════════════ */
        .RJB-page-footer {
            background: var(--RJB-primary-dark);
            color: rgba(255,255,255,0.5);
            text-align: center;
            padding: 20px;
            font-size: 0.82rem;
          display: none;
        }

        .RJB-page-footer strong {
            color: var(--RJB-secondary-light);
        }

        /* ══════════════════════════════════════
           ACCESSIBILITY
        ══════════════════════════════════════ */
        @media (prefers-reduced-motion: reduce) {
            .RJB-card,
            .RJB-visit-btn {
                transition: none;
            }
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --RJB-bg: #0f1825;
                --RJB-card-bg: #1a2640;
                --RJB-off-white: #1d2e48;
                --RJB-text-dark: #e8eef8;
                --RJB-text-mid: #b0bdd0;
                --RJB-text-light: #7a91ae;
                --RJB-border: #2a3a55;
                --RJB-secondary-pale: #1e2d42;
                --RJB-shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
                --RJB-shadow-md: 0 6px 24px rgba(0,0,0,0.4);
                --RJB-shadow-hover: 0 12px 36px rgba(0,0,0,0.5);
            }
        }

/* --- locations --- */
.RJL-branches-wrapper * {
    box-sizing: border-box;
  }

  .RJL-branches-wrapper {
    --RJL-primary: #1c4892;
    --RJL-primary-dark: #142f63;
    --RJL-primary-light: #2a5cb8;
    --RJL-gold: #b68f63;
    --RJL-gold-light: #cba87d;
    --RJL-gold-dark: #9a7548;
    --RJL-white: #ffffff;
    --RJL-bg: #f5f7fc;
    --RJL-card-bg: #ffffff;
    --RJL-border: #e0e8f5;
    --RJL-text: #1a2340;
    --RJL-text-muted: #6b7a99;
    --RJL-shadow: 0 2px 12px rgba(28,72,146,0.08);
    --RJL-shadow-hover: 0 8px 32px rgba(28,72,146,0.16);
    --RJL-radius: 12px;
    --RJL-font-ar: 'Tajawal', 'Cairo', Arial, sans-serif;
    --RJL-font-en: 'Outfit', 'Segoe UI', Arial, sans-serif;

    font-family: var(--RJL-font-ar);
    background: var(--RJL-bg);
    color: var(--RJL-text);
    padding: 48px 20px 64px;
    direction: rtl;
  }

  /* ===== GOOGLE FONTS ===== */
  @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&family=Cairo:wght@400;600;700&family=Outfit:wght@400;500;600;700&display=swap');

  /* ===== PAGE HEADER ===== */
  .RJL-page-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .RJL-page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28,72,146,0.08);
    border: 1px solid rgba(28,72,146,0.15);
    color: var(--RJL-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }

  .RJL-page-header__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--RJL-primary);
    margin: 0 0 8px;
    line-height: 1.2;
  }

  .RJL-page-header__title span {
    color: var(--RJL-gold);
  }

  .RJL-page-header__sub {
    font-size: 15px;
    color: var(--RJL-text-muted);
    margin: 0;
  }

  .RJL-page-header__divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--RJL-primary), var(--RJL-gold));
    border-radius: 2px;
    margin: 20px auto 0;
  }

  /* ===== STATS BAR ===== */
  .RJL-stats-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: var(--RJL-primary);
    border-radius: var(--RJL-radius);
    padding: 20px 32px;
    margin-bottom: 48px;
  }

  .RJL-stat-item {
    text-align: center;
    color: var(--RJL-white);
  }

  .RJL-stat-item__number {
    font-size: 28px;
    font-weight: 800;
    color: var(--RJL-gold-light);
    line-height: 1;
    display: block;
  }

  .RJL-stat-item__label {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
  }

  .RJL-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
  }

  /* ===== DISTRICT SECTION ===== */
  .RJL-district {
    margin-bottom: 52px;
  }

  .RJL-district-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--RJL-border);
    position: relative;
  }

  .RJL-district-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--RJL-primary), var(--RJL-gold));
    border-radius: 1px;
  }

  .RJL-district-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--RJL-primary), var(--RJL-primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .RJL-district-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .RJL-district-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: var(--RJL-primary);
    margin: 0;
  }

  .RJL-district-count {
    margin-right: auto;
    margin-left: 0;
    background: rgba(182,143,99,0.12);
    color: var(--RJL-gold-dark);
    border: 1px solid rgba(182,143,99,0.3);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
  }

  /* ===== BRANCHES GRID ===== */
  .RJL-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }

  /* ===== BRANCH CARD ===== */
  .RJL-branch-card {
    background: var(--RJL-card-bg);
    border: 1px solid var(--RJL-border);
    border-radius: var(--RJL-radius);
    padding: 20px;
    box-shadow: var(--RJL-shadow);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }

  .RJL-branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--RJL-primary), var(--RJL-gold));
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .RJL-branch-card:hover {
    box-shadow: var(--RJL-shadow-hover);
    border-color: rgba(28,72,146,0.2);
    transform: translateY(-2px);
  }

  .RJL-branch-card:hover::before {
    opacity: 1;
  }

  /* Branch Name */
  .RJL-branch-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--RJL-primary);
    margin: 0;
    line-height: 1.4;
  }

  .RJL-branch-name__en {
    font-family: var(--RJL-font-en);
    font-size: 12px;
    font-weight: 500;
    color: var(--RJL-text-muted);
    display: block;
    margin-top: 2px;
  }

  /* Branch Region */
  .RJL-branch-region {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--RJL-text-muted);
  }

  .RJL-branch-region svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: var(--RJL-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Phone Numbers */
  .RJL-branch-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .RJL-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--RJL-primary);
    text-decoration: none;
    font-family: var(--RJL-font-en);
    direction: ltr;
    transition: color 0.2s;
    width: fit-content;
  }

  .RJL-phone-link:hover {
    color: var(--RJL-gold-dark);
  }

  .RJL-phone-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--RJL-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Direction Button */
  .RJL-direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--RJL-primary), var(--RJL-primary-light));
    color: var(--RJL-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    margin-top: auto;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
  }

  .RJL-direction-btn:hover {
    background: linear-gradient(135deg, var(--RJL-gold-dark), var(--RJL-gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(182,143,99,0.4);
  }

  .RJL-direction-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .RJL-branches-wrapper {
      padding: 32px 14px 48px;
    }

    .RJL-branches-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }

    .RJL-stats-bar {
      gap: 20px;
      padding: 16px 20px;
    }

    .RJL-stat-divider {
      display: none;
    }

    .RJL-stat-item__number {
      font-size: 22px;
    }
  }

  @media (max-width: 480px) {
    .RJL-branches-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .RJL-branch-card {
      padding: 14px;
    }

    .RJL-branch-name {
      font-size: 13px;
    }
  }

  @media (max-width: 360px) {
    .RJL-branches-grid {
      grid-template-columns: 1fr;
    }
  }
.overflow-hidden {
    overflow: overlay;
}