
.navbar{
    width: -webkit-fill-available;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    z-index: 100000;
    position: fixed;
    margin-bottom: 5rem;
}
        .hero {
            position: relative;
            color: white;
            padding: 200px 0;
            /* Adjusted padding to avoid the navbar */
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../Assets/KSA-background.jpeg'); /* Temporary background image */
            background-size: cover;
            background-position: center;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bolder;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
        }

        .navbar-brand {
            margin-left: 4rem;
            width: 15%;
        }

        .alternating-1,
        .alternating-2 {
            padding: 60px 0;
        }

        .alternating-1 {
            background: #f9f9f9;
        }

        .alternating-2 {
            background: #e9ecef;
        }

        .outsource-card img {
            height: 60px;
            margin-bottom: 20px;
        }

        .section-text {
            margin-bottom: 40px;
        }

        .contact-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
        }

        .how-we-do-it-title {
            color: #343a40;
        }

        .hover-effect {
            transition: background 0.3s ease, box-shadow 0.3s ease;
            border: 1.5px solid #297ed873;
            padding: 20px;
            border-radius: 8px;
            min-height: 220px;
        }

        .hover-effect:hover {
            background: white;
            box-shadow: 0 8px 16px #297ed8c0;
        }

        .hover-effect h5 {
            font-weight: bolder;
        }

        .contact-form-container {
            display: flex;
            justify-content: flex-start;
        }

        .contact-form-container form {
            max-width: 500px;
            width: 100%;
        }

        .navbar-nav {
            margin-left: auto;
        }

        .img-fluid {
            max-width: 30%;
            height: auto;
        }

        .lang-switch {
            cursor: pointer;
            font-weight: bold;
            margin-left: 20px;
            color: #027bff;
        }

        .hero-industry {
            padding: 170px 0;
            text-align: center;
            background: #ffffff;
        }

        .hero-industry img {
            height: 100px;
            margin-bottom: 20px;
        }

        .hero-industry h4 {
            font-weight: bold;
        }
        .navbar-brand-image{
      width: 100%;
    }
    @media screen and (max-width: 1000px) {
      .navbar-brand-image{
      width: 200%;
    }
    }
.contact-form-container {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .contact-form-container form {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  @media screen and (max-width:1000px) {
    .contact-form-container {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 1.5rem;
  }
  }