    /* ===== Reset ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'El Messiri', sans-serif;
      direction: rtl;
      color: #fff;
      overflow-x: hidden;
    }

    /* ===== Navbar ===== */
    .navbar {
      width: 100%;
      position: absolute;
      background-color: #fff;
      top: 0;
      left: 0;
      z-index: 10;
      background: #fff;
      padding: 10px 0;
    }

    .navbar .container {
      width: 90%;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .logo span {
      color: #1b5cff;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .nav-links li a {
      color: #3C414A;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-links li a:hover {
      color: #1b5cff;
    }

    .contact-btn {
      border: 1.5px solid #305AA6;
      color: #305AA6;
      padding: 8px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
    }

    .contact-btn:hover {
      background: #fff;
      color: #1b5cff;
    }

    .menu-toggle {
      display: none;
      color: #305AA6;
      font-size: 26px;
      cursor: pointer;
    }

    /* ===== Hero Section ===== */
    .hero-section {
      height: 100vh;
      background: url("images/Desktop\ -\ 1.png") center/cover no-repeat;
      position: relative;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      width: 90%;
      margin: auto;
    }

    .hero-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .hero-content p {
      font-size: 18px;
      margin-bottom: 30px;
      line-height: 1.8;
      color: #f1f1f1;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #305AA6;
      color: #fff;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background: #174bce;
    }

    .btn-outline {
      border: 1.5px solid #fff;
      padding: 10px 25px;
      background-color: #fff;
      border-radius: 30px;
      color: #305AA6;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-outline:hover {
      background: #fff;
      color: #1b5cff;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 70px;
        right: 5%;
        width: 90%;
        border-radius: 10px;
        text-align: center;
        padding: 15px 0;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .contact-btn {
        display: none;
      }

      .hero-content h1 {
        font-size: 28px;
      }

      .hero-content p {
        font-size: 16px;
      }
      .about{
  background-image:unset !important;
}
    }

    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    html {
      scroll-behavior: smooth;
    }

    .nav-links a {
  color: black;
  pointer-events: auto;
}
.navbar {
  position: relative;
  z-index: 1000;
}

input,textarea,select{
  color:#3C414A !important;
}
