
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Tajawal', 'Inter', sans-serif;
      background-color: #f8faff;
      color: #0a1e3c;
      line-height: 1.5;
      overflow-x: hidden;
    }

    .hero-bg {
      background: linear-gradient(135deg, #0a1e3c 0%, #1a3a5c 100%);
      position: relative;
      isolation: isolate;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M10 10 L 90 10 L 90 90 L 10 90 Z" fill="none" stroke="%23FFB81C" stroke-width="1.5"/><path d="M20 20 L 80 20 L 80 80 L 20 80 Z" fill="none" stroke="%23FFB81C" stroke-width="1"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23FFB81C" stroke-width="1"/></svg>');
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 0;
      color: white;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo img {
      height: 45px;
      width: auto;
    }

    .logo span {
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .lang-switch {
      display: flex;
      gap: 0.75rem;
      background: rgba(255,255,255,0.1);
      padding: 0.5rem 1rem;
      border-radius: 40px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .lang-switch a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      transition: all 0.2s;
    }

    .lang-switch a.active {
      background: #ffb81c;
      color: #0a1e3c;
    }

    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      padding: 3rem 0 5rem 0;
      color: white;
    }

    .hero h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .hero h1 i {
      color: #ffb81c;
      font-style: normal;
    }

    .hero .lead {
      font-size: 1.3rem;
      opacity: 0.9;
      margin-bottom: 2rem;
      max-width: 90%;
    }

    .arabic-quote {
      background: rgba(255,255,255,0.1);
      border-right: 4px solid #ffb81c;
      padding: 1.5rem;
      border-radius: 20px 0 0 20px;
      margin: 2rem 0 2.5rem 0;
      font-size: 1.2rem;
      line-height: 1.6;
      backdrop-filter: blur(5px);
    }

    .arabic-quote .ar {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    .arabic-quote .translation {
      font-size: 1rem;
      opacity: 0.8;
      border-top: 1px dashed rgba(255,255,255,0.3);
      padding-top: 0.8rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      background: #ffb81c;
      color: #0a1e3c;
      font-weight: 600;
      font-size: 1.2rem;
      padding: 1rem 2.5rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.25s;
      border: 2px solid transparent;
      box-shadow: 0 10px 20px -8px rgba(0,0,0,0.3);
    }

    .btn-primary:hover {
      background: transparent;
      border-color: #ffb81c;
      color: white;
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -10px rgba(0,0,0,0.4);
    }

    .btn-primary i {
      transition: transform 0.2s;
    }

    .btn-primary:hover i {
      transform: translateX(-6px);
    }

    .hero-stats-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .hero-stats-mini div {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .hero-stats-mini i {
      font-size: 2rem;
      color: #ffb81c;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .stat-card-glass {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 32px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      transition: all 0.3s;
    }

    .stat-card-glass:hover {
      background: rgba(255,255,255,0.12);
      transform: scale(1.02);
      border-color: #ffb81c;
    }

    .stat-card-glass .number {
      font-size: 2.8rem;
      font-weight: 700;
      color: #ffb81c;
      line-height: 1.2;
    }

    .stat-card-glass .label {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      opacity: 0.8;
    }

    .stats-section {
      padding: 5rem 0;
      background: white;
      border-radius: 3rem 3rem 0 0;
      margin-top: -2rem;
      box-shadow: 0 -20px 30px -10px rgba(0,0,0,0.05);
    }

    .section-title {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 600;
      color: #0a1e3c;
    }

    .section-title p {
      font-size: 1.2rem;
      color: #4a5b7a;
      max-width: 700px;
      margin: 1rem auto 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .stat-item {
      background: #f0f4fe;
      border-radius: 40px;
      padding: 2.5rem 1.5rem;
      text-align: center;
      transition: 0.2s;
      border: 2px solid transparent;
    }

    .stat-item:hover {
      border-color: #ffb81c;
      background: white;
      box-shadow: 0 20px 30px -10px rgba(10,30,60,0.1);
    }

    .stat-icon {
      font-size: 3rem;
      color: #ffb81c;
      margin-bottom: 1.2rem;
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 700;
      color: #0a1e3c;
      line-height: 1.2;
    }

    .stat-label {
      font-size: 1.2rem;
      font-weight: 500;
      color: #2c3e5c;
    }

    /* قسم الشرائح المتحركة */
    .slider-section {
      padding: 4rem 0;
      background: #f2f7ff;
    }

    .slider-container {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 30px;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease;
    }

    .slide {
      min-width: 100%;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      display: block;
    }

    .slide-caption {
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      background: linear-gradient(0deg, rgba(10,30,60,0.9), transparent);
      color: white;
      padding: 2rem;
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.3);
      backdrop-filter: blur(5px);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      transition: 0.2s;
      z-index: 10;
    }

    .slider-btn:hover {
      background: #ffb81c;
      color: #0a1e3c;
    }

    .slider-btn.prev {
      right: 20px;
    }

    .slider-btn.next {
      left: 20px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.2s;
    }

    .dot.active {
      background: #ffb81c;
      transform: scale(1.3);
    }

    /* قسم البطاقات الجديدة */
    .services-section {
      padding: 5rem 0;
      background: linear-gradient(180deg, #fff 0%, #f2f7ff 100%);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
      margin-top: 2rem;
    }

    .service-card {
      background: white;
      border-radius: 30px;
      padding: 2rem 1.5rem;
      box-shadow: 0 10px 20px -5px rgba(0,0,0,0.03);
      border: 1px solid #eaeef5;
      transition: all 0.2s;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: #ffb81c;
      box-shadow: 0 25px 30px -12px rgba(255,184,28,0.15);
    }

    .service-icon {
      background: #0a1e3c;
      width: 60px;
      height: 60px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .service-icon i {
      font-size: 2rem;
      color: #ffb81c;
    }

    .service-card h3 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    .service-card p {
      color: #4a5b7a;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .cookie-banner {
      background: #0f2744;
      color: white;
      padding: 1rem 2rem;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      z-index: 999;
      border-top: 2px solid #ffb81c;
      backdrop-filter: blur(8px);
      font-size: 0.95rem;
      transform: translateY(0);
      transition: transform 0.4s ease;
    }

    .cookie-banner.hidden {
      transform: translateY(100%);
    }

    .cookie-banner p {
      flex: 1;
      min-width: 280px;
    }

    .cookie-banner a {
      color: #ffb81c;
      text-decoration: underline;
      font-weight: 500;
    }

    .cookie-btn {
      background: #ffb81c;
      border: none;
      color: #0a1e3c;
      font-weight: 600;
      padding: 0.7rem 2rem;
      border-radius: 40px;
      cursor: pointer;
      font-size: 1rem;
      border: 2px solid transparent;
      transition: all 0.2s;
    }

    .cookie-btn:hover {
      background: transparent;
      border-color: #ffb81c;
      color: white;
    }

    .footer {
      background: #0a1e3c;
      color: #b0c4de;
      padding: 3rem 0;
      border-top: 1px solid #1f3a5c;
    }

    .footer .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-links {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ffb81c;
      text-decoration: none;
      font-weight: 500;
    }

    [dir="rtl"] .btn-primary i {
      transform: scaleX(-1);
    }
    [dir="rtl"] .btn-primary:hover i {
      transform: translateX(6px) scaleX(-1);
    }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .stats-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .navbar { flex-direction: column; gap: 1rem; }
      .slide-caption { font-size: 1.5rem; }
    }
    
        .security-section {
      background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%);
      padding: 5rem 0;
    }
    .security-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }
    .security-card {
      background: white;
      border-radius: 30px;
      padding: 2rem 1.5rem;
      box-shadow: 0 10px 20px -5px rgba(0,0,0,0.03);
      border: 1px solid #eaeef5;
      transition: all 0.2s;
      text-align: center;
    }
    .security-card:hover {
      transform: translateY(-8px);
      border-color: #ffb81c;
      box-shadow: 0 25px 30px -12px rgba(255,184,28,0.15);
    }
    .security-icon {
      background: #0a1e3c;
      width: 70px;
      height: 70px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem auto;
    }
    .security-icon i {
      font-size: 2rem;
      color: #ffb81c;
    }
    .security-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    .security-card p {
      color: #4a5b7a;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .security-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .security-grid { grid-template-columns: 1fr; }
    }