@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-Bold.ttf') format('truetype');
    font-weight: bold;
}
    :root {
      --primary: rgb(26 47 86);
      --secondary: #2f5aa8;
      --accent: #4da6ff;
      --soft: #eef4ff;
      --light: #f8fbff;
      --text: #0f172a;
      --muted: #5b6780;
      --white: #ffffff;
      --border: rgba(23, 44, 82, 0.1);
      --shadow: 0 16px 40px rgba(23, 44, 82, 0.10);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --container: 1140px;
      --nav-height: 68px;
      --lamasat: rgb(149 132 95 / 62%);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Almarai" !important;
      color: var(--text);
      line-height: 1.8;
      background:url("/img/background.png") no-repeat center center;
      background-size: cover;
      overflow-x: hidden;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .section {
      padding: 72px 0;
      position: relative;
      scroll-margin-top: 92px;
    }

    .section::after {
      content: "";
      position: absolute;
      right: 0;
      left: 0;
      bottom: 0;
      width: min(1040px, calc(100% - 32px));
      margin: auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(23,44,82,0.08), transparent);
    }

    .section:last-of-type::after,
    .cta.section::after {
      display: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: var(--lamasat);
      color: var(--white);
      border: 1px solid rgba(77, 166, 255, 0.2);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .badge i {
      font-size: 12px;
    }

    .mini-nav {
      position: sticky;
      top: 12px;
      z-index: 30;
      padding-top: 12px;
    }

    .mini-nav-inner {
      width: min(900px, calc(100% - 32px));
      margin: 0 auto;
      background: var(--primary);
      border: 1px solid rgba(23, 44, 82, 0.08);
      box-shadow: 0 12px 28px rgba(23,44,82,0.08);
      border-radius: 999px;
      min-height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .mini-nav-inner::-webkit-scrollbar {
      display: none;
    }

    .mini-nav a {
      text-decoration: none;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      padding: 9px 14px;
      border-radius: 999px;
      white-space: nowrap;
      transition: 0.25s ease;
    }

    .mini-nav a:hover {
      background: rgba(255,255,255,0.10);
    }

    .hero {
      min-height: calc(90vh - 80px);
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 26px 0 58px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 36px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.4;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .hero h1 span {
      display: block;
      font-size: clamp(18px, 2vw, 22px);
      color: var(--secondary);
      font-weight: 700;
      margin-top: 8px;
    }

    .hero p {
      font-size: 16px;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 24px;
      text-align: justify;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 22px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      min-width: 156px;
      padding: 13px 20px;
      border-radius: 14px;
      font-weight: 700;
      transition: 0.25s ease;
      border: 1px solid transparent;
      font-size: 14px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      box-shadow: 0 12px 24px rgba(23, 44, 82, 0.18);
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.88);
      color: var(--primary);
      border-color: rgba(23, 44, 82, 0.12);
      backdrop-filter: blur(10px);
    }

    .btn-primary:hover,
    .btn-outline:hover,
    .card:hover {
      transform: translateY(-2px);
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-points span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 8px 12px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .visual-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .glow {
      position: absolute;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(77, 166, 255, 0.3) 0%, rgba(77, 166, 255, 0) 68%);
      filter: blur(8px);
      z-index: 0;
    }

    .about-visual {
      position: relative;
      z-index: 1;
      width: min(100%, 430px);
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(23,44,82,0.08);
      box-shadow: 0 22px 42px rgba(23,44,82,0.14);
      border-radius: 32px;
      padding: 26px;
      backdrop-filter: blur(14px);
    }

    .about-logo {
      width: 74px;
      height: 74px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin-bottom: 18px;
      box-shadow: 0 16px 28px rgba(23,44,82,0.18);
    }

    .about-visual h3 {
      color: var(--primary);
      font-size: 24px;
      margin-bottom: 10px;
    }

    .about-visual p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 18px;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .mini-stat {
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,248,255,0.95));
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px;
      text-align: center;
    }

    .mini-stat strong {
      display: block;
      color: var(--primary);
      font-size: 22px;
      margin-bottom: 4px;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px;
    }

    .section-head h2 {
      font-size: clamp(24px, 4vw, 36px);
      color: var(--primary);
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .section-head p {
      color: var(--muted);
      font-size: 15px;
    }

    .grid-2,
    .grid-3,
    .values-grid,
    .team-grid {
      display: grid;
      gap: 18px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
      align-items: stretch;
    }

    .grid-3,
    .values-grid,
    .team-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .card {
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
      height: 100%;
      transition: 0.25s ease;
    }

    .card h3 {
      color: var(--primary);
      font-size: 19px;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      font-size: 14px;
    }

    .feature-icon,
    .mini-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      font-size: 20px;
      background: linear-gradient(135deg, rgba(23,44,82,0.10), rgba(77,166,255,0.15));
      color: var(--primary);
      border: 1px solid rgba(23,44,82,0.06);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(23,44,82,0.98), rgba(47,90,168,0.94));
      color: var(--white);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: 0 20px 46px rgba(23, 44, 82, 0.2);
    }

    .highlight-box h2 {
      font-size: 32px;
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .highlight-box p,
    .highlight-box li {
      color: rgba(255,255,255,0.86);
      font-size: 14px;
    }

    .list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .list li {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 12px 14px;
      border-radius: 14px;
    }

    .values-grid .card,
    .team-grid .card {
      text-align: center;
    }

    .cta {
      padding-bottom: 90px;
    }

    .cta-box {
      background: linear-gradient(135deg, rgba(23, 44, 82, 1), rgb(10 32 57));
      color: var(--white);
      border-radius: 26px;
      padding: 34px;
      box-shadow: 0 24px 52px rgba(23, 44, 82, 0.24);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
    }

    .cta-box::before {
      width: 180px;
      height: 180px;
      top: -70px;
      right: -50px;
    }

    .cta-box::after {
      width: 150px;
      height: 150px;
      bottom: -60px;
      left: -40px;
    }

    .cta-box h2 {
      font-size: clamp(24px, 4vw, 36px);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .cta-box p {
      max-width: 700px;
      margin: 0 auto 22px;
      color: rgba(255,255,255,0.84);
      position: relative;
      z-index: 1;
      font-size: 15px;
    }

    .cta-box .hero-actions {
      justify-content: center;
      position: relative;
      z-index: 1;
      margin-bottom: 0;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .grid-2,
      .grid-3,
      .values-grid,
      .team-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero {
        min-height: auto;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 52px 0;
      }

      .mini-nav {
        top: 8px;
        padding-top: 8px;
      }

      .mini-nav-inner {
        min-height: auto;
        justify-content: flex-start;
        border-radius: 18px;
        padding: 10px;
      }

      .hero-grid,
      .grid-2,
      .grid-3,
      .values-grid,
      .team-grid,
      .mini-stats {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .visual-wrap {
        order: -1;
        min-height: auto;
        width: 100%;
        margin-bottom: 6px;
      }

      .hero-content {
        order: 2;
        text-align: center;
      }

      .hero {
        padding: 20px 0 34px;
      }

      .hero h1 {
        font-size: 30px;
        margin-bottom: 12px;
      }

      .hero p,
      .section-head p {
        font-size: 14px;
        text-align: center;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        min-width: unset;
      }

      .hero-points {
        justify-content: center;
      }

      .highlight-box,
      .cta-box,
      .card,
      .about-visual {
        padding: 18px;
      }

      .section-head {
        margin-bottom: 24px;
      }

      .section-head h2 {
        font-size: 24px;
      }

      .feature-icon,
      .mini-icon,
      .about-logo {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 12px;
      }

      .about-logo {
        border-radius: 14px;
      }

      .cta-box {
        padding: 24px 18px;
      }
    }

    @media (max-width: 480px) {
      .container {
        width: min(var(--container), calc(100% - 20px));
      }

      .hero h1 {
        font-size: 26px;
      }

      .hero h1 span {
        font-size: 16px;
      }

      .badge {
        font-size: 12px;
        padding: 7px 12px;
      }

      .hero-points span {
        width: 100%;
        justify-content: center;
      }
    }
  