body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #fff;
  direction: rtl;
}
.page-wrapper {
  max-width: 1470px;
  margin: 0 auto;
  width: 100%;
}
.hero-section {
  background: url(assets/bghero.png) no-repeat;
  background-size: 65% auto;
  background-position: top left;
  min-height: 50vh;
  position: relative;
  color: white;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 90px;
  position: relative;
  z-index: 2;
}

#contact-img {
  width: 120px;
  max-width: 100%;
}

.logo {
  height: 80px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-custom {
  padding: 8px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.btn-white {
  background: white;
  color: #2094F3;
}

.btn-orange {
  background: #FF7F29;
  color: white;
  border-radius: 0px !important;
  padding: 15px 50px;
}

.btn-hero-black {
  background: #000;
  color: #fff;
  padding: 15px 30px;
}

.btn-hero-white {
  background: white;
  color: #2094F3;
  padding: 15px 30px;
}

.hero-container {
   display: flex;
  justify-content: space-between;
  align-items: center;
  height: 650px;
  padding: 0 90px;
  position: relative;
  z-index: 2;
}

.hero-text {
  height: 100%;
  padding-bottom: 20%;
}


.hero-text h1 {
  font-size: 36px;
  margin: 15px 0 15px 0;
}

.hero-text p {
  font-size: 16px;
  margin: 0 0 15px 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
}

/*footer*/

.footer {
  color: white;
  margin-top: 80px;
  position: relative;
}

.flipped-bg {
    position: absolute;
    inset: 0;
    background: url(assets/bghero.png) no-repeat;
    background-size: 80% auto;
    background-position: top left;
    transform: scaleX(-1);
    z-index: 0;
 }

.footer .content-area {
  z-index: 1;
  position: relative;
}


.footer .image-area img {
    width: 38%;
}

.footer-mister {
       padding: 25px;
    margin-top: 30px;
}



/*Nav Bar*/
.custom-navbar {
  padding: 20px 0px;
  background: transparent;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link {
  color: white;
  font-weight: bold;
  padding: 10px;
  font-size: 16px;
}

ul.navbar-nav.me-auto.mb-2.mb-lg-0 {
    align-items: anchor-center;
}


/*Services section */

.services-section {
  background: url(assets/servisecbg.png) no-repeat;
  background-size: 65% auto;
  background-position: top right;
  padding: 10px 0;
}

.section-title {
  background: #e4e4e4;
  color: #2094F3;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

.service-card {
  background-color: #2196f3;
  border-radius: 10px;
  padding: 40px 20px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.services-section a {
  color: #ffffff;
}

/* boostrap css  */

.m-50 {
    padding: 50px;
  }

  .img-bg {
    width: 80%;
  }
  .w-30 {
    width: 30%;
  }

/* Medium devices (tablets, 768px and up) */
@media (max-width: 780px) {
  .top-nav {
    display: none;
  }

  .custom-navbar {
    display: flex;
  }

 .hero-section {
  background: url(assets/phonebg.png) no-repeat;
  background-size: 90% auto;
  background-position: top left;
  min-height: 85vh;
  position: relative;
  color: white;
}
.hero-image img {
  width: 90% !important;
  max-width: 125% !important;
}
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 450px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.m-50 {
    padding: 20px;
  }

  .img-bg {
    width: 100%;
  }

  p.section-description.text-dark.mb-1 {
    padding: 15px 15px;
}
.flipped-bg

 {
    position: absolute;
    inset: 0;
    background: url(assets/bghero.png) no-repeat;
    background-size: 115% auto;
    background-position: top left;
    transform: scaleX(-1);
    z-index: 0;
}

.footer .image-area img
 {
    width: 60%;
}

.footer-mister {
    padding: 0px;
    margin-top: 0px;
}


}

/* devices (from 800px up) */
@media (min-width: 781px) and (max-width: 900px)  {
  .custom-navbar {
    display: none;
  }

  .top-nav {
    display: flex;
  }
}


/* Large devices (from 992px up) */
@media (min-width: 901px) and (max-width: 1000px)  {
  .custom-navbar {
    display: none;
  }

  .top-nav {
    display: flex;
  }

.hero-container {
 
    height: 400px;
    
}
}

/* Large devices (from 1000px up) */
@media (min-width: 1000px)  {
  .custom-navbar {
    display: none;
  }

  .top-nav {
    display: flex;
  }

.hero-container {
 
    height: 650px;
    
}

 .hero-image img
 {
    max-width: 600px
}
}

@media (min-width: 1694px)  {
 


}
