
    /* UPDATED: Add base font-family to match index.html */
    body {
      font-family: 'Roboto', sans-serif;
    }
    
    /* About Page Specific Styles */
    .about-hero {
      height: 400px;
      background: linear-gradient(135deg, #0033a0 0%, #00257a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/assets/logo.webp') no-repeat center center;
      background-size: 300px auto;
      opacity: 0.1;
      background-color: rgba(0, 51, 160, 0.03);
    }
    
    .about-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .about-hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      font-family: 'Roboto', sans-serif;
    }

    .about-hero-content .hero-sub {
      font-size: 1.3rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Enhanced Stats Section */
    .stats-section {
      padding: 60px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .stat-card {
      background: white;
      padding: 40px 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
    }

    .stat-card:nth-child(1) {
      background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    }
    .stat-card:nth-child(1)::before {
      background: linear-gradient(135deg, #1976d2, #1565c0);
    }

    .stat-card:nth-child(2) {
      background: linear-gradient(135deg, #bbdefb, #90caf9);
    }
    .stat-card:nth-child(2)::before {
      background: linear-gradient(135deg, #1565c0, #0d47a1);
    }

    .stat-card:nth-child(3) {
      background: linear-gradient(135deg, #90caf9, #64b5f6);
    }
    .stat-card:nth-child(3)::before {
      background: linear-gradient(135deg, #0d47a1, #0033a0);
    }

    .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 800;
      color: #0033a0;
      margin-bottom: 0.5rem;
      line-height: 1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .stat-label {
      font-size: 1.2rem;
      font-weight: 700;
      color: #00257a;
      margin-bottom: 0;
    }

    .stat-plus {
      color: #0033a0;
      font-weight: 700;
    }

    /* Enhanced Introduction Section */
    .intro-section {
      padding: 80px 0;
      background: white;
    }

    .intro-content {
      max-width: 100%;
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .intro-content p {
      margin-bottom: 1.5rem;
      color: #374151;
    }

    .intro-content .lead {
      font-size: 1.3rem;
      font-weight: 700;
      color: #0033a0;
      line-height: 1.7;
    }

    .highlight-box {
      background: linear-gradient(135deg, #e3f2fd, #f8fafc);
      padding: 30px;
      border-radius: 12px;
      margin: 2rem 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .mission-vision {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .mission-card, .vision-card {
      background: white;
      padding: 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      text-align: center;
      position: relative;
    }

    .mission-card::before, .vision-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(135deg, #0033a0, #00257a);
      border-radius: 20px 20px 0 0;
    }

    .mission-icon, .vision-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: block;
    }

    .values-section {
      padding: 80px 0;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .value-card {
      background: white;
      padding: 40px 30px;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .value-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #0033a0, #00257a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 2rem;
    }

    .network-countries {
      padding: 80px 0;
      background: #f8fafc;
    }

    .countries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .country-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .country-card:hover {
      transform: translateY(-5px);
    }

    .country-flag {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      background: linear-gradient(135deg, #0033a0, #00257a);
    }

    .country-content {
      padding: 30px;
    }

    .country-content h3 {
      color: #0033a0;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .country-features {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0;
    }

    .country-features li {
      padding: 0.5rem 0;
      border-bottom: 1px solid #f1f5f9;
      position: relative;
    }

    .country-features li:last-child {
      border-bottom: none;
    }

    .clients-section {
      padding: 80px 0;
    }

    .client-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    .client-category {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    }

    .client-category h4 {
      color: #0033a0;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .services-showcase {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .service-card {
      background: white;
      padding: 40px 30px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }

    .service-card:hover {
      border-color: #0033a0;
      transform: translateY(-3px);
    }

    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      display: block;
    }

    .seo-keywords {
      padding: 60px 0;
      background: #0033a0;
      color: white;
      text-align: center;
    }

    .keywords-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .keyword-badge {
      background: rgba(255, 255, 255, 0.1);
      padding: 15px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .keyword-badge:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    /* Network Badge */
    .network-badge {
      background: linear-gradient(135deg, #0033a0, #002680);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 700;
      border: 2px solid #0033a0;
      display: inline-block;
      margin-top: 1rem;
    }

    /* إضافة CSS للبطاقة المرتبطة */
    .service-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .service-card-link .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 51, 160, 0.15);
        border-color: #0033a0;
    }

    .service-card-link .service-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        height: 100%;
    }

    .service-card-link .service-card::after {
        content: "→";
        position: absolute;
        top: 20px;
        left: 20px;
        background: #0033a0;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    html[dir="rtl"] .service-card-link .service-card::after {
        content: "←";
        right: 20px;
        left: auto;
    }

    .service-card-link .service-card:hover::after {
        opacity: 1;
    }

    /* للأجهزة المحمولة، إظهار السهم دائماً */
    @media (max-width: 768px) {
        .service-card-link .service-card::after {
            opacity: 1;
            top: 15px;
            left: 15px;
        }

        html[dir="rtl"] .service-card-link .service-card::after {
            right: 15px;
            left: auto;
        }
    }

    /* NEW: Clickable button style for the "Ideal for international organizations & governments" section */
    .clickable-info-box {
      margin-top: 15px;
      padding: 12px 16px;
      background: linear-gradient(135deg, #0033a0, #00257a);
      color: white;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      border: 2px solid #0033a0;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .clickable-info-box:hover {
      background: linear-gradient(135deg, #00257a, #001a52);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 51, 160, 0.2);
    }

    .clickable-info-box::after {
      content: "🔗";
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      font-size: 1rem;
    }

    html[dir="rtl"] .clickable-info-box::after {
      content: "🔗";
      right: auto;
      left: 15px;
    }

    @media (max-width: 768px) {
      .clickable-info-box {
        padding: 10px 12px;
        font-size: 0.85rem;
      }
    }

    /* ================== DIRECTION FIXES ================== */
    
    /* Default RTL styles */
    html[dir="rtl"] {
      direction: rtl;
    }
    
    html[dir="rtl"] .section-title,
    html[dir="rtl"] .stat-label,
    html[dir="rtl"] .stat-number,
    html[dir="rtl"] .value-card h4,
    html[dir="rtl"] .country-content h3,
    html[dir="rtl"] .service-card h4,
    html[dir="rtl"] .client-category h4,
    html[dir="rtl"] .intro-content,
    html[dir="rtl"] .hero-sub,
    html[dir="rtl"] .section-subtitle,
    html[dir="rtl"] .mission-card p,
    html[dir="rtl"] .vision-card p,
    html[dir="rtl"] .country-content p,
    html[dir="rtl"] .intro-content p,
    html[dir="rtl"] .highlight-box p {
      text-align: right;
    }
    
    html[dir="rtl"] .breadcrumb {
      text-align: right;
    }
    
    html[dir="rtl"] .country-features li {
      padding-right: 1.5rem;
    }
    
    html[dir="rtl"] .country-features li::before {
      content: "✓";
      position: absolute;
      right: 0;
      color: #0033a0;
      font-weight: bold;
    }
    
    html[dir="rtl"] .highlight-box {
      border-right: 4px solid #0033a0;
    }
    
    html[dir="rtl"] .client-category {
      border-left: 4px solid #0033a0;
    }
    
    /* LTR styles for English */
    html[dir="ltr"] {
      direction: ltr;
    }
    
    html[dir="ltr"] .section-title,
    html[dir="ltr"] .stat-label,
    html[dir="ltr"] .stat-number,
    html[dir="ltr"] .value-card h4,
    html[dir="ltr"] .country-content h3,
    html[dir="ltr"] .service-card h4,
    html[dir="ltr"] .client-category h4,
    html[dir="ltr"] .intro-content,
    html[dir="ltr"] .hero-sub,
    html[dir="ltr"] .section-subtitle,
    html[dir="ltr"] .mission-card p,
    html[dir="ltr"] .vision-card p,
    html[dir="ltr"] .country-content p,
    html[dir="ltr"] .intro-content p,
    html[dir="ltr"] .highlight-box p {
      text-align: left;
    }
    
    html[dir="ltr"] .breadcrumb {
      text-align: left;
    }
    
    html[dir="ltr"] .country-features li {
      padding-left: 1.5rem;
    }
    
    html[dir="ltr"] .country-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #0033a0;
      font-weight: bold;
    }
    
    html[dir="ltr"] .highlight-box {
      border-left: 4px solid #0033a0;
      border-right: none;
    }
    
    html[dir="ltr"] .client-category {
      border-right: 4px solid #0033a0;
      border-left: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .about-hero {
        height: 300px;
      }

      .about-hero-content h1 {
        font-size: 2.5rem;
      }

      .about-hero-content .hero-sub {
        font-size: 1.1rem;
      }

      .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .mission-card, .vision-card {
        padding: 30px;
      }

      .values-grid,
      .countries-grid,
      .client-categories,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .stat-card {
        padding: 30px 15px;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
      
      .intro-content {
        font-size: 1rem;
      }
      
      .intro-content .lead {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .about-hero-content h1 {
        font-size: 2rem;
      }

      .mission-card, .vision-card {
        padding: 20px;
      }

      .value-card,
      .country-content,
      .client-category,
      .service-card {
        padding: 20px;
      }
    }
  
