* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Almarai", Sans-serif;
    line-height: 1.8;
}
html {
    scroll-behavior: smooth;
}
/* Loading screen styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #000 #0000;
    animation: l1 1s infinite;
  }
  @keyframes l1 {to{transform: rotate(.5turn)}}
  
  /* Hide loading screen when JavaScript is loaded */
  .loaded .loading-screen {
    display: none;
  }
  .loader-hidden {
      display: none;
  }

  
  .floating-icon {
    z-index: 99;
    display: block;
    width: 60px;
    height: 60px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    border-radius: 50%;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;
  }
  
  .floating-icon:hover {
    background-color: #1474bb;
  }
  
  .left-icon {
    position: fixed;
    padding-top: 15px;
    bottom: 10px;
    left: 10px;
    background: #128c7e;
  }
  
  .right-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #276191;
  }



/* ---  contact section  --- */
  .contact-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 5%;
    background-color: #405351;
    color: #eee;
}

.contact-section a {
  color: inherit;
}

.right {
    display: flex;
    flex-direction: row;
}
.contact-section i {
    margin-right: 5px;
}

.contact-section p {
    margin: 0 20px;
    font-size: 16px;
}

.contact-section .phone {
    margin-bottom: 5px;
}

/* ---  contact section @media  --- */
@media(max-width: 800px) {
  .contact-section p {
    font-size: 14px;
  }
}

/* ---  Navbar --- */

.navbar {
    padding: 0 3%;
    font-weight: bold;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: ease-in-out 0.3s;
    background: #fff;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px !important;
    border-bottom: 1px solid #eee;
}

.navbar.hidden {
    top: -100px;
}
.navbar img {
    width: 100px;
}
.nav-menu {
    list-style: none;
}
.nav-menu.open {
    display: flex;
}
.nav-menu li {
    display: inline-block;
    padding: 20px;
}
.nav-menu li a {
    font-size: 20px;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    padding-bottom: 10px;
}

/* hover animation */
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #405351;
  height: 1px;
}
.navbar .selected:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    content: '.';
    color: transparent;
    background: #405351;
    height: 2px;
  }
nav.stroke ul li a:hover:after {
  width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 30px;
    height: 5px;
    margin: 5px auto;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #405351;
}



/* ---  Navbar @media  --- */
@media(max-width: 1080px) {
    .nav-menu li a {
        font-size: 18px;
    }
    .navbar {
        padding: 0;
        justify-content: space-between;
    }
    .navbar .hamburger,
    .navbar img {
        padding: 0 20px;
    }
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(10px) rotate(44deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-10px) rotate(-44deg);
    }
    .nav-menu.active {
        top: 100px;
        opacity: 1;
        display: flex !important;
    }
    .nav-menu {
        display: none !important;
        padding-right: 0;
        z-index: 99;
        position: fixed;
        top: -100%;
        opacity: 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #405351;
        width: 100%;
        transition: 0.3s;
    }
    .nav-menu a {
        color: #fff !important;
    }
    .navbar li {
        margin: 10px;
        padding: 5px 20px;
    }
}




/* ---  Hero --- */
.hero {
    position: relative;
    height: 750px;
    padding: 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #405351;
    background-size: cover;
    background-position: center;
}
.hero #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.568); /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
    z-index: 9; /* to make sure the layer is on top of the image */
}

.hero img {
    width: 150px;
    border-radius: 150px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 99;
}

.hero .text {
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    color: #fff;
    font-family: "Almarai", Sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 93px;
    margin-bottom: 20px;
}

.hero p {
    color: #eee;
    font-size: 22px;
    margin-bottom: 40px;
}

.hero button {
    border: none;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #fff;
}

.hero button:hover {
    background: #405351;
    color: #fff;
}


/* ---  Hero @media  --- */
@media(max-width: 800px) {
    .hero {
        padding: 10px;
        height: 500px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 18px;
    }
    .hero button {
        font-size: 14px;
    }
    .hero img {
        width: 110px;
    }
}



/* ---  About --- */
.about {
    padding: 100px 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.about img {
    width: 600px;
    margin: 0 80px;
}

.about .text {
    max-width: 1200px;
    text-align: center;
}

.about h2 {
    font-size: 42px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}
.about h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 10%;
    content: '.';
    color: transparent;
    background: #405351;
    height: 3px;
  }
.about p {
    font-size: 20px;
    text-align: justify;
    text-align-last: center;
    color: #333;
}
.about button {
    margin-top: 40px;
    border: 1px solid #c5cac6;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #fff;
}

.about button:hover {
    background: #405351;
    color: #fff;
}
/* About @media */
@media (max-width: 1024px){
    .about {
        flex-wrap: wrap;
    }
    .about img {
        width: 100%;
    }
}
@media (max-width: 800px){
    .about {
        padding: 80px 15px;
    }
    .about img {
        margin: 20px 0;
    }
    .about h2 {
        font-size: 24px;
    }
    .about p {
        font-size: 18px;
    }
}
/* ---  consult --- */

.consult {
    position: relative;
    padding: 100px 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #7a917e;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.consult:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.568); /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
    z-index: 9; /* to make sure the layer is on top of the image */
}
.consult img {
    width: 400px;
    margin: 0 80px;
    z-index: 99;
}

.consult .text {
    max-width: 800px;
    z-index: 99;
}

.consult h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}
.consult p {
    font-size: 20px;
    color: #eee;
}
.consult button {
    margin-top: 40px;
    border: 1px solid #c5cac6;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #fff;
    margin-bottom: 20px;
}

.consult button:hover {
    background: #405351;
    color: #fff;
}
/* consult @media */
@media (max-width: 1024px){
    .consult {
        flex-wrap: wrap;
    }
    .consult img {
        width: 100%;
    }
}
@media (max-width: 800px){
    .consult {
        padding: 80px 15px;
    }
    .consult img {
        margin: 20px 0;
    }
    .consult h2 {
        font-size: 24px;
    }
    .consult p {
        font-size: 18px;
    }
}




/* --- Services Starts --- */

.services {
    overflow: hidden;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}
.services .header {
    z-index: 10;
}
.services h2 {
    font-size: 38px;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
    z-index: 10;
}

.services .services_content {
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    position: relative;
}
.services .card {
    position: relative;
    margin: 20px 0;
    z-index: 99;
    width: 300px;
    height: 450px;
    background-color: #013A6B;
    background-image: linear-gradient(-30deg, #1D1E1C, #40414A 60%, #fff 40%);
    color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.507);
}
.card img {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 150px;
    max-height: 150px;
  }
.card .content {
    margin-top: 70%;
    padding: 20px;
}
  
.card h2 {
    margin-bottom: 10px;
}
  
.card p {
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
.card .no {
    border-bottom: none;
}
.services .service i {
    color: #1474bb;
    font-size: 35px;
    padding-bottom: 10px;
}
.services .service h3 {
    font-size: 24px;
    color: #000;
    padding-bottom: 10px;
}
.services .service p {
    color: #333;
    font-size: 16px;
}

/* About @media */
@media (max-width: 800px){
    .services .services_content {
        padding: 0;
    }
    .services .service h3 {
        font-size: 22px;
    }
}




/* --- Why Starts --- */
.why {
    margin: 0 auto;
    padding: 100px 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
}

.why h3 {
    font-size: 26px;
}

.why p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.why li {
    font-size: 18px;
}
.why .text {
    width: 50%;
}

.why button {
    margin-top: 40px;
    border: 1px solid #c5cac6;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #fff;
}

.why button:hover {
    background: #405351;
    color: #fff;
}


.list-menu {
    list-style-type: none;
    padding: 0;
}

.list-menu li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.star {
    width: 20px !important;
    height: 20px !important;
    margin: 0 5px;
    vertical-align: middle;
}

.why img {
    max-width: 500px;
    border-radius: 20px;
}
.image-container {
    position: relative;
}

.background-image {
    position: absolute;
    top: -100px; /* Adjust the top offset as needed */
    right: 0; /* Adjust the right offset as needed */
    z-index: 1; /* Ensure the background image is behind the foreground image */
}

.background-image2 {
    position: absolute;
    top: 30px; /* Adjust the top offset as needed */
    right: -50px; /* Adjust the right offset as needed */
    z-index: 1; /* Ensure the background image is behind the foreground image */
}

.foreground-image {
    position: absolute;
    top: 150px;
    right: -100px;
    z-index: 2; /* Ensure the foreground image is on top */
}
.language-en .foreground-image {
    right: auto;
    left: 120px;
  }
/* About @media */
@media (max-width: 1024px){
    .why .image-container {
        display: none;
    }
}

@media (max-width: 800px){
    .why {
        padding: 60px 15px;
        flex-wrap: wrap;
    }
    .why .text {
        width: 100%;
        margin: 0 20px;
    }
}




/* --- Clients Start --- */

.client {
    padding: 50px;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    color: #000;
}
.slider-container {
    padding: 20px 0;
    border-radius: 0 150px;
    overflow: hidden;
}
.client-slider {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.client-slider a {
    color: #000;
}
.client .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
}
.client h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #405351;
}
.client p {
    font-size: 18px;
}
.client img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.507);
}

.client-slider .item {
    padding: 15px;
    justify-content: center;
    margin: 0 10px;
}
.slick-dots {
    left: 0;
}
.slick-dots li.slick-active button:before {
    color: #000 !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    color: #333 !important;
}

.slick-prev:before,
.slick-next:before {
    color: #333 !important;
}
.client a button {
    margin-top: 40px;
    border: 1px solid #c5cac6;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #fff;
}

.client a button:hover {
    background: #405351;
    color: #fff;
}


    /* Quote */

.quote {
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-section .row {
    z-index: 99;
    background-color: #fff;
    padding: 20px;
    border-left: 5px solid #313f3e;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 20px;
    max-width: 1000px;
  }

  .text-column {
    text-align: center;
    font-style: italic;
    color: #333;
  }


  /* Footer Start */


#footer{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 15px;
    background: #eee;
    background-size: cover;
    background-position: center;
}
footer .loc {
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.footer-div {
    margin: 10px 0;
    z-index: 99;
}
.footer-about {
    max-width: 500px;
}
.logo {
    max-width: 300px;
}
.logo img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}
.logo p {
    color: #333;
}
.social-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
}
.social-links h2{
    color: #000;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}
.social-links img{
    padding-bottom: 25px;
}
.social-icons{
    display: flex;
    gap: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #333;
}
.social-icons a{
    font-size: 18px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    margin-right: 20px;
    color: #333;
}
.social-icons a:hover{
    color: #444;
}
.social-icons a i{
    box-shadow: #b31c0b23 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #000;
    font-size: 16px;
    margin-right: 12px;
}
li{
    list-style: none;
}
.useful-link h2{
    color: #000;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}
  .useful-link img{
    padding-bottom: 15px;
}
.use-links{
    line-height: 32px;
}
.use-links li i{
    font-size: 14px;
    padding-right: 8px;
    margin-bottom: 10px;
    color: #333;
}
.use-links li a{
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
  .use-links li a:hover{
    color: #ccc;
  }
  .copy-right-sec{
    padding: 5px;
      background: #405351;
      color: #fff;
      text-align: center;
  }
  .copy-right-sec a{
    color: #fcd462;
      font-weight: 500;
  }
  a{
    text-decoration:none;
  }
  
  @media (max-width: 800px) {
    .footer-div {
        margin: 10px;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-icons a{
        font-size: 16px;
    }
    .social-icons a i{
        font-size: 14px;
    }
  }
  
  /* footer section end */