:root {
  --primary-bg-color: #df0000;
  --gray-bale-color: #a3a0a0;
}

@font-face {
  font-family: "rubik-arabic";
  src: url("/assets/fonts/Rubik-VariableFont_wght.ttf");
}

* {
  font-family: "rubik-arabic", "Poppins", sans-serif;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
}

.row {
  display: flex !important;
  flex-direction: row !important;
}

.column {
  display: flex !important;
  flex-direction: column !important;
}

.icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-margin {
  margin: 0 !important;
}

a {
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}
.splide__pagination__page {
  background: rgba(255, 217, 0, 0.65) !important;
}
.splide__pagination__page.is-active {
  background: gold !important;
}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000002;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(248, 243, 255, 0.7);
}

.loader img {
  display: flex;
  width: 200px;
  height: auto;
}

.main {
  -webkit-overflow-scrolling: touch;
  position: relative;
  background-color: #fff;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  overflow-y: auto;
}

.scroll {
  scrollbar-width: auto;
  scrollbar-color: #312b2b transparent;
    scroll-behavior: smooth;

}

.scroll::-webkit-scrollbar {
  width: 5px;
}

.scroll::-webkit-scrollbar-track {
  background: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background: var(--gold-color);
}

.scroll::-webkit-scrollbar-thumb:hover {
  background: var(--white-color);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  width: fit-content;
}

/* start header */

header {
  z-index: 1000000;
  padding: 25px;
  padding-top: 15px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 100%;
  color: var(--gold-color);
  background-color: var(--primary-bg-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.5s;
  background-color: transparent;
  transition: 0.35s;
}

header.header-eng{
  direction: rtl;
}


header .lang-box{
  color: #fff;
  position: absolute;
  right: 2%;
}


header .lang-box a{
  color: #fff;
  
}

header .header-navs {
  background: linear-gradient(to right, #9c9c9c 10%, #4f4f4f 40%, #363636 80%);
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline-start: 85px;
  padding: 10px 25px;
  border-radius: 35px;
}

header .header-navs .header-navs-links {
  width: 75%;
  display: flex;
  justify-content: flex-start;
}

header.header-eng .header-navs .header-navs-links {
  flex-direction: row-reverse;
}


header .header-navs .header-navs-links a {
  color: #fff;
  margin-inline-end: 60px;
  transition: all 0.05s ease;
}

header .header-navs .header-navs-links a:hover {
  transform: scale(1.05);
}


header .header-navs .header-navs-links a i {
  font-size: 12px;
  margin-inline-start: 2px;
}

header .header-navs .start-now {
  background-color: #df0000;
  border-radius: 30px;
  padding: 8px 15px;
  width: 20%;
  display: flex;
}

header .header-navs .start-now a {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 7px;
}

header .header-navs .start-now a img {
  width: 24px;
}

header .logo {
  width: 10%;
  display: flex;
  margin-inline-end: 50px;
}

header .logo img {
  width: 100%;
}

header .mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(to right, #9c9c9c 10%, #4f4f4f 40%, #363636 80%);
  padding: 12px 20px;
  border-radius: 10px;
  margin-inline-start: 20px;
}

.mobile-sidebar {
  display: none;
}

/* end header */

/* start hero home */

section.hero-home {
  width: 100%;
  height: 85vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 45px;
}


section.hero-home-eng  .hero-text p img{
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

section.hero-home .hero-mobile-img {
  display: none;
}

section.hero-home.services-hero{
  height: 85vh;
}



section.hero-home .hero-img {
  position: absolute;
  top: 0;
  top: -45px;
  left: 0;
  width: 100%;
  height: 100%;
}

section.hero-home .hero-img img {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
}

section.hero-home-eng .hero-img img {
  transform: scaleX(-1);
}


section.hero-home .hero-text {
  margin-inline-start: 3%;
  z-index: 1;
  width: 50%;
  margin-top: -50px;
}

section.hero-home .hero-text h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.55;
  margin-bottom: 25px;
}

section.hero-home .hero-text h1 span {
  color: var(--primary-bg-color);
}

section.hero-home .hero-text p.hero-desc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  width: 55%;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 30px;
}

section.hero-home .hero-text p img {
  width: 22px;
  position: relative;
  top: 8px;
}

section.hero-home .hero-text a.contact-btn {
  background: red;
  color: #fff;
  padding: 10px 35px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-inline-start: 20px;
}

section.hero-home .hero-text a img {
  width: 20px;
}

section.hero-home .hero-text .achievments {
  /* background-color: green; */
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -25px;
  right: 10%;
  gap: 15px;
}

section.hero-home-eng .hero-text .achievments {
  right: unset;
  left: 10%;
}


section.hero-home .hero-text .achievments .achievment-number {
  position: relative;
}

section.hero-home .hero-text .achievments .achievment-number img {
  width: 40px;
  position: absolute;
  top: -6%;
  right: -7%;
}

.achievment-number h2 {
  background: url("/assets/img/text-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 150px;
  display: inline-block;
}

section.hero-home .hero-text .achievments .achievment-text {
  /* background-color: blue; */
}

section.hero-home .hero-text .achievments .achievment-text p {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 500;
  /* width: 75%; */
}

/* section.hero-home .machine-img {
  width: 45%;
  align-self: self-end;
  z-index: 1;
}

section.hero-home .machine-img img {
  width: 100%;
} */

/* Machine image container */
section.hero-home .machine-img {
  width: 45%;
  align-self: self-end;
  z-index: 1;
  position: relative; /* makes icons absolute relative to this */
  opacity: 0;
  left: -100px;
  transition: all 1s ease;
}

section.hero-home-eng .machine-img {
  left: unset;
  right: -100px;
}


section.hero-home .machine-img-eng{
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


section.hero-home .machine-img.show {
  opacity: 1;
  left: 0;
}

section.hero-home-eng .machine-img.show {
  left: unset;
  right: 0;
}


section.hero-home .machine-img img.machineImg {
  width: 100%;
  display: block;
}

/* Floating icons inside machine-img */
.machine-img .floating-icon {
  position: absolute;
  opacity: 0;
  transition: all 0.8s ease;
  width: 90px;
  height: auto;
}

.machine-img .floating-icon.show {
  opacity: 1;
  transform: scale(1);
}

/* Example positions relative to the machine image */
.machine-img .icon-1 {
  top: 0;
  left: 10%;
  transform: scale(0.5);
}

.machine-img .icon-2 {
  bottom: 11%;
  left: 50%;
  transform: scale(0.5);
}

.machine-img .icon-3 {
  top: 25%;
  right: -30px;
  transform: scale(0.5);
}

/* end hero home */

/* start about */

section.about-eltaher {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-direction: row-reverse;
  margin-bottom: 70px;
}

section.about-eltaher .about-images {
  width: 30%;
  /* background-color: green; */
}

section.about-eltaher .about-images img {
  margin-bottom: 10px;
  width: 100%;
}

section.about-eltaher .about-images img:last-child {
  margin-bottom: 0;
}

section.about-eltaher .about-desc {
  width: 50%;
  margin-inline-start: 45px;
  /* background-color: blue; */
}

section.about-eltaher .about-desc p.section-title {
  width: fit-content;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-bg-color);
}

section.about-eltaher .about-desc p.section-title span {
  color: var(--primary-bg-color);
}

section.about-eltaher .about-desc h2.section-slogan {
  width: 100%;
  font-size: 35px;
  margin-bottom: 20px;
}

section.about-eltaher .about-desc h2.section-slogan span {
  color: var(--primary-bg-color);
}

section.about-eltaher .about-desc .about-images-mob {
  display: none;
}

section.about-eltaher .about-desc p.section-desc {
  width: 80%;
  margin-bottom: 15px;
  color: #000000d1;
  font-size: 19px;
  line-height: 1.45;
}

section.about-eltaher .about-desc .section-points p {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-size: 17px;
  margin-bottom: 8px;
  color: #ba0000;
}

section.about-eltaher-eng .about-desc .section-points p {
  text-align: left;
}


section.about-eltaher .about-desc .section-points p img {
  width: 15px;
  position: relative;
  top: 3px;
}

section.about-eltaher-eng .about-desc .section-points p img {
  transform: scaleX(-1);
}


/* end about */

/* start services home */

section.home-services {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 95px;
}

section.home-services p.section-title {
  width: fit-content;
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-bg-color);
}

section.home-services h2.section-slogan {
  margin-bottom: 15px;
  font-size: 25px;
}

section.home-services h2.section-slogan span {
  color: var(--primary-bg-color);
}

section.home-services p.section-desc {
  margin-bottom: 40px;
  width: 50%;
  font-size: 18px;
  color: #000000bf;
}

section.home-services .home-services-container {
  width: 100%;
  /* background-color: green; */
  display: flex;
  align-items: center;
  justify-content: space-around;
}

section.home-services .home-services-container .home-service-box {
  width: 25%;
  /* background-color: yellow; */
  position: relative;
}

section.home-services
  .home-services-container
  .home-service-box
  img.service-img {
  width: 100%;
  transition: all 0.35s ease;
}

section.home-services
  .home-services-container
  .home-service-box:hover
  img.service-img {
  transform: scale(1.05);
}

section.home-services .home-services-container .home-service-box .service-desc-box {
  background-color: #f7f7f7;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  text-align: justify;
  padding: 25px 0px;
  width: 80%;
  position: absolute;
  bottom: -22%;
  right: -3%;
  transition: all 0.35s ease;
}

section.home-services-eng .home-services-container .home-service-box .service-desc-box {
  text-align: left;
}


section.home-services
  .home-services-container
  .home-service-box
  .service-desc-box
  h2.service-title {
  font-size: 17px;
  margin-bottom: 8px;
  margin-inline-start: 5%;
  color: var(--primary-bg-color);
  transition: all 0.35s ease;
}

section.home-services .home-services-container .home-service-box .service-desc-box h2.service-title i {
  font-size: 14px;
  margin-inline-end: 3px;
}

section.home-services-eng .home-services-container .home-service-box .service-desc-box h2.service-title i {
  transform: scaleX(-1);
}


section.home-services
  .home-services-container
  .home-service-box
  .service-desc-box
  p.service-desc {
  font-size: 15px;
  width: 85%;
  margin-inline-start: 5%;
  color: #000000bf;
  transition: all 0.35s ease;
}

section.home-services
  .home-services-container
  .home-service-box:hover
  .service-desc-box {
  background-color: #c71414;
}

section.home-services
  .home-services-container
  .home-service-box:hover
  .service-desc-box
  p.service-desc,
section.home-services
  .home-services-container
  .home-service-box:hover
  .service-desc-box
  h2.service-title {
  color: #fff;
}

section.home-services a.contact-btn {
  margin-top: 100px;
  background: red;
  color: #fff;
  padding: 12px 70px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-inline-start: 20px;
  transition: all 0.35s ease;
}

section.home-services a.contact-btn img {
  width: 27px;
}

section.home-services a.contact-btn:hover {
  transform: scale(1.05);
}

/* end services home */

/* start our projects */

.our-projects-title {
}

.our-projects-title p {
  width: fit-content;
  font-size: 22px;
  margin: auto;
  margin-bottom: 15px;
  color: var(--primary-bg-color);
}

.our-projects-title h2 {
  margin-bottom: 15px;
  font-size: 25px;
}

.our-projects-title h2 span {
  color: var(--primary-bg-color);
}

.our-projects {
  width: 90%;
  border-radius: 25px;
  /* height: 100vh; */
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  display: flex;
  margin-bottom: 100px;
}

.our-projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.our-projects .description-container {
  background: #ffffff24;
  padding: 40px 0px;
  border-radius: 10px;
  /* max-width: 450px; */
  width: 45%;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(7px);
}

.our-projects .description-container h2 {
  font-size: 32px;
  margin: auto;
  margin-bottom: 15px;
  color: #fff;
}

.our-projects .description-container h2 span {
  color: var(--primary-bg-color);
}

.our-projects .description-container p.mainDescription {
  width: 90%;
  margin-inline-start: 22px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.our-projects .description-container p.mainDescription img {
  width: 18px;
  position: relative;
  top: 6px;
}

.our-projects-eng .description-container p.mainDescription img {
  transform: scaleX(-1);
}


.our-projects .description-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
}

.our-projects .points-container {
  display: flex;
  margin-bottom: 30px;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.our-projects .point {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 35%;
}

.our-projects .point:hover {
  background: #ebebeb;
  /* transform: scale(1.05); */
}

.our-projects .point.active {
  background: #e51414;
  color: white;
  border-color: #e51414;
  transform: scale(1.05);
}

.our-projects .point h3 {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--primary-bg-color);
}

.our-projects .point p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  color: #000000;
}

.our-projects .point.active h3,
.our-projects .point.active p {
  color: rgba(255, 255, 255, 0.95);
}

.our-projects .breakers-location {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.our-projects p.locaDescription {
  width: 90%;
  margin-inline-start: 22px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 12px;
}

.our-projects p.locaDescription img {
  width: 18px;
  position: relative;
  top: 6px;
}

.our-projects-eng p.locaDescription img {
  transform: scaleX(-1);
}


.our-projects .breakers-location .location-box {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.our-projects .breakers-location .location-box img {
  width: 45px;
}
.our-projects .breakers-location .location-box h6 {
  font-size: 16px;
  color: #fff;
}
/* end our projects */

/* start gallery */

section.gallery {
  width: 100%;
  margin-bottom: 100px;
}

section.gallery .our-projects-title {
}

section.gallery .our-projects-title h2 {
  margin: auto;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  /* background-color: red; */
  /* width: 300px; */
  height: 300px;
}

.swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

section.gallery .pagination-container {
  width: 60%;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  margin: auto;
  margin-top: 55px;
  background-image: url("/assets/img/pagination-bg.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18px 0;
}

section.gallery .pagination-container .pagination-box {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  gap: 15px;
}

section.gallery .pagination-container .pagination-text {
  width: 45%;
  color: #fff;
}

section.gallery .pagination-container .pagination-img {
  width: 20%;
  position: relative;
}

section.gallery .pagination-container .pagination-img img {
  width: 100%;
  position: absolute;
  bottom: -100%;
}

.swiper-button-next.next-proj,
.swiper-button-prev.prev-proj {
  position: unset;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 0;
}

.swiper-button-prev.prev-proj {
  background-color: var(--primary-bg-color);
  border: 1px solid transparent;
}

.swiper-button-next.next-proj {
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.15s ease;
}

.swiper-button-next.next-proj:hover {
  background-color: red;
}

.swiper-button-next.next-proj:after,
.swiper-button-prev.prev-proj:after {
  font-size: 15px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: var(--primary-bg-color);
  width: 20px;
  height: 9px;
  border-radius: 3px;
}

/* end gallery */



/* start banner */

section.banner {
  width: 100%;
  margin-bottom: 65px;
}

section.banner-eng{
  margin-bottom: 120px;
}


section.banner .red-div {
  width: 100%;
  height: 8px;
  background: var(--primary-bg-color);
}

section.banner .banner-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  background-image: url("/assets/img/banner-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 55px 0;
}

section.banner .banner-container .banner-mach {
  width: 50%;
  position: relative;
}
section.banner .banner-container .banner-mach img {
  width: 100%;
  position: absolute;
  bottom: -40%;
}

section.banner .banner-container .banner-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 35px 0; */
}

section.banner .banner-container .banner-text h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 28px;
}

section.banner .banner-container .banner-text h2 span {
  color: var(--primary-bg-color);
}

section.banner .banner-container .banner-text h3 {
  color: #fff;
  margin-bottom: 45px;
  font-size: 17px;
}

section.banner .banner-container .banner-text .banner-services {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 30px;
  margin-bottom: 30px;
}

section.banner .banner-container .banner-text .banner-services .banner-service-box {
  width: 25%;
  display: flex;
  align-items: center;
}

section.banner-eng .banner-container .banner-text .banner-services .banner-service-box {
  width: 30%;
}


section.banner
  .banner-container
  .banner-text
  .banner-services
  .banner-service-box
  img {
  width: 50px;
}

section.banner
  .banner-container
  .banner-text
  .banner-services
  .banner-service-box
  p {
  color: #fff;
}

section.banner .banner-container .banner-text .contact-banner-container {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

section.banner
  .banner-container
  .banner-text
  .contact-banner-container
  .start-now {
  background-color: #df0000;
  border-radius: 30px;
  padding: 8px 15px;
  display: flex;
}

section.banner
  .banner-container
  .banner-text
  .contact-banner-container
  .start-now
  a {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 7px;
}

section.banner
  .banner-container
  .banner-text
  .contact-banner-container
  .start-now
  a
  img {
  width: 24px;
}

header .logo {
  width: 10%;
  display: flex;
  margin-inline-end: 50px;
}

section.banner .banner-container .banner-text .contact-banner-container .break {
  background-color: #fff;
  width: 2px;
  height: 90px;
}

section.banner
  .banner-container
  .banner-text
  .contact-banner-container
  .contact-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 21px;
}

section.banner
  .banner-container
  .banner-text
  .contact-banner-container
  .contact-text
  p {
  margin-bottom: 5px;
}

section.banner
  .banner-container
  .banner-text
  .contact-banner-container
  .contact-text
  a {
  color: #fff;
}

/* end banner */

/* start provide */

section.provide-section {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin-bottom: 35px;
  z-index: 1;
}

section.provide-section .provide-desc {
  width: 40%;
}

section.provide-section .provide-desc h3 {
  color: var(--primary-bg-color);
  margin-bottom: 10px;
}

section.provide-section .provide-desc h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

section.provide-section .provide-desc h2 span {
  color: var(--primary-bg-color);
}

section.provide-section .provide-desc .provide-img-mob {
  display: none;
}

section.provide-section .provide-desc p.provide-text {
  margin-bottom: 30px;
  color: #000000b0;
  font-size: 20px;
  width: 90%;
  line-height: 1.55;
}

section.provide-section .provide-desc .provide-points {
}

section.provide-section .provide-desc .provide-points .provide-point {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 7px;
}

section.provide-section .provide-desc .provide-points .provide-point img {
  width: 45px;
}

section.provide-section .provide-desc .provide-points .provide-point p {
  font-weight: 500;
  color: var(--primary-bg-color);
}

section.provide-section .provide-img {
  width: 45%;
}

section.first-service-eng .provide-img {
  transform: scaleX(-1);
}


section.provide-section .provide-img img {
  width: 100%;
}

/* end provide */

/* start our company */

section.our-company {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  padding: 25px 0;
  margin-bottom: 100px;
}

section.our-company .our-company-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  /* display: none; */
}


section.our-company-eng .our-company-bg {
  top: 5%;
}


section.our-company .our-company-bg img {
  width: 100%;
}

section.our-company .our-company-img {
  width: 40%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.our-company .our-company-img img {
  width: 100%;
}

section.our-company .our-company-img a.contact-btn {
  background: red;
  color: #fff;
  padding: 10px 85px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

section.our-company .our-company-img a.contact-btn img {
  width: 20px;
}

section.our-company .our-company-desc {
  width: 40%;
  z-index: 0;
}

section.our-company .our-company-desc h3 {
  color: var(--primary-bg-color);
  margin-bottom: 10px;
}

section.our-company .our-company-desc h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 30px;
}

section.our-company-eng .our-company-desc h2 {
  color: #000;
}


section.our-company .our-company-desc h2 span {
  color: var(--primary-bg-color);
}

section.our-company .our-company-desc p.our-company-text {
  color: #fff;
  font-size: 19px;
  width: 80%;
  line-height: 1.55;
  margin-bottom: 20px;
}

section.our-company .our-company-desc .our-company-points {
}

section.our-company .our-company-desc .our-company-points .our-company-point {
  display: flex;
  margin-bottom: 22px;
  gap: 8px;
  align-items: center;
}

section.our-company
  .our-company-desc
  .our-company-points
  .our-company-point
  img {
  width: 55px;
}

section.our-company
  .our-company-desc
  .our-company-points
  .our-company-point
  .point-desc {
}

section.our-company
  .our-company-desc
  .our-company-points
  .our-company-point
  .point-desc
  h6 {
  margin-bottom: 5px;
  color: var(--primary-bg-color);
  font-size: 17px;
}

section.our-company .our-company-desc .our-company-points .our-company-point .point-desc h5 {
  color: #fff;
  font-size: 17px;
  width: 70%;
  line-height: 1.45;
  font-weight: 400;
}


section.our-company-eng .our-company-desc .our-company-points .our-company-point .point-desc h5 {
  width: 45%;
}


/* end our company */

/* start why eltaher */

section.why-eltaher {
  width: 100%;
  margin-bottom: 115px;
}

section.why-eltaher .our-projects-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.why-eltaher .our-projects-title h2 {
  margin-bottom: 30px;
}

section.why-eltaher h3 {
  text-align: center;
  color: grey;
  width: 65%;
  margin-bottom: 40px;
  font-weight: 400;
}

section.why-eltaher .why-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
  height: 30rem;
}

section.why-eltaher .why-container .why-right-column {
  width: 45%;
}

section.why-eltaher .why-container .why-right-column .why-card {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 23px;
}

section.why-eltaher .why-container .why-right-column .why-card:last-child {
  margin-bottom: 0;
}

section.why-eltaher .why-container .why-right-column .why-card-desc {
  width: 34%;
  margin: auto;
}

section.why-eltaher .why-container .why-right-column .why-card-desc h2 {
  color: var(--primary-bg-color);
  font-size: 17px;
  margin-bottom: 15px;
}

section.why-eltaher .why-container .why-right-column .why-card-desc p {
}

section.why-eltaher .why-container .why-right-column .why-card-img {
  width: 52%;
  display: flex;
}

section.why-eltaher .why-container .why-right-column .why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.why-eltaher .why-container .why-left-column {
  width: 45%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  height: 100%;
}

section.why-eltaher .why-container .why-left-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.why-eltaher .why-container .why-left-column .left-column-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

section.why-eltaher
  .why-container
  .why-left-column
  .left-column-layer
  .layer-desc {
  margin-inline-start: 20px;
  margin-bottom: 30px;
}

section.why-eltaher
  .why-container
  .why-left-column
  .left-column-layer
  .layer-desc
  h2 {
  font-size: 27px;
  margin-bottom: 15px;
  color: var(--primary-bg-color);
}

section.why-eltaher
  .why-container
  .why-left-column
  .left-column-layer
  .layer-desc
  p {
  color: #fff;
  font-size: 18px;
}

/* end why eltaher */

/* start location */

section.location {
  width: 90%;
  border-radius: 16px;
  background-image: url("/assets/img/site.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -25px;
  overflow: hidden;
}

section.location .location-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

section.location .location-map {
  width: 40%;
  z-index: 0;
  margin-inline-start: 25px;
  overflow: hidden;
  border-radius: 16px;
  height: 24rem;
}

section.location .location-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.location .location-desc {
  width: 50%;
  padding: 40px 25px;
  border-radius: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.location .location-desc h3 {
  color: #fff;
  margin-bottom: 10px;
}

section.location .location-desc h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 45px;
  text-align: center;
}

section.location .location-desc h2 span {
  color: var(--primary-bg-color);
}

section.location .location-desc .contact-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

section.location .location-desc .contact-box a {
  background-color: transparent;
  border: 1px solid var(--primary-bg-color);
  color: #fff;
  border-radius: 21px;
  padding: 10px 0px;
  width: 45%;
  display: flex;
  justify-content: center;
  transition: all 0.35s ease;
}

section.location .location-desc .contact-box a.schedule-time {
  border: unset;
  cursor: unset;
}

section.location .location-desc .contact-box a i {
  font-size: 20px;
  margin-inline-end: 5px;
}

section.location .location-desc .contact-box a:hover {
  background-color: var(--primary-bg-color);
  color: #fff;
  border: 1px solid #fff;
}

section.location .location-desc .contact-box a.schedule-time:hover {
  background-color: unset;
  color: #fff;
  border: unset;
}

section.location .location-desc p.location-text {
  font-size: 18px;
  color: #fff;
  width: 70%;
  line-height: 1.45;
  margin-bottom: 30px;
  text-align: center;
}

section.location .location-desc p.location-text i {
  margin-inline-end: 5px;
}

section.location .location-desc .location-map-mobile {
  display: none;
}

section.location .location-desc a.contact-btn {
  background: red;
  color: #fff;
  padding: 7px 60px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s ease;
}

section.location .location-desc a.contact-btn img {
  width: 27px;
}

section.location .location-desc a.contact-btn:hover {
  transform: scale(1.05);
}

/* end location */

/* start form */

section.contact-form {
  width: 100%;
  position: relative;
  bottom: -16%;
  z-index: 1;
}

.contact-form-inputs {
  text-align: center;
  direction: rtl;
  /* width: 60%; */
  width: fit-content;
  font-family: "Cairo", sans-serif;
  /* background-color: yellow; */
  position: absolute;
  top: 25%;
  right: 12%;
}

.contact-form-inputs h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #fff;
}

.contact-form-inputs h2 span {
  color: var(--primary-bg-color);
}

.inputs-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.form-row input {
  width: 26%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 32px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

section.contact-form-eng .form-row input {
  direction: ltr;
}


.form-row input:focus {
  border-color: #4caf50;
}

.submit-btn {
  background: unset;
  border: unset;
  margin-inline-end: 55px;
  width: fit-content;
}

.submit-btn a.contact-btn {
  background: red;
  color: #fff;
  padding: 9px 100px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s ease;
  font-size: 18px;
}

.submit-btn a.contact-btn img {
  width: 23px;
}

section.contact-form .contact-form-bg {
  width: 80%;
  margin: auto;
}

section.contact-form .contact-form-bg img {
  width: 100%;
}

section.contact-form .contact-form-inputs .contact-mob-img {
  display: none;
}

/* end form */

/* start footer */

footer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
  padding-top: 95px;
  background-image: url("/assets/img/footer-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

footer .footer-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  z-index: 1;
  display: flex;
}

footer.footer-eng .footer-img{
  left: unset;
  right: 0;
  transform: scaleX(-1);
}


footer .footer-img img {
  width: 100%;
}

footer .footer-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

footer .first-column {
  width: 25%;
  text-align: center;
}

footer .first-column img {
  width: 75%;
  margin: auto;
  margin-bottom: 20px;
}

footer .first-column h2 {
  margin-bottom: 20px;
}

footer .first-column h2 span {
  color: var(--primary-bg-color);
}

footer .first-column p {
  font-size: 17px;
  line-height: 1.45;
}

footer .sec-column {
  /* background-color: red; */
  width: 15%;
}

footer .sec-column a img {
  width: 15px;
}

footer.footer-eng .sec-column a img {
  transform: scaleX(-1);
}


footer .third-column {
  /* background-color: yellow; */
  width: 20%;
}

footer .third-column img {
  width: 10%;
}

footer .last-column {
  /* background-color: teal; */
  width: 20%;
}

footer .last-column img {
  width: 15%;
}

footer .first-column,
footer .sec-column,
footer .third-column,
footer .last-column {
  z-index: 0;
  color: #fff;
}

footer .sec-column h3,
footer .third-column h3,
footer .last-column h3 {
  margin-bottom: 17px;
  font-size: 24px;
}

footer .sec-column a,
footer .third-column a,
footer .last-column a {
  margin-bottom: 10px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: #fff;
  transition: all 0.35s ease;
}

footer .sec-column a:hover,
footer .third-column a:hover,
footer .last-column a:hover {
  transform: translateX(-5px);
}


footer .sec-column a {
  font-size: 19px;
  margin-bottom: 20px;
}

/* end footer */


/* start services hero */

section.services-hero{
  justify-content: flex-end;
}

section.services-hero-eng{
  justify-content: flex-start;

}


section.services-hero .services-hero-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);

}


section.services-hero .hero-img{
  top: 0;
}

section.services-hero .hero-img img{
  height: 100%;
  object-fit: cover;
}

section.services-hero .services-hero-desc{
  z-index: 1;
  color: #fff;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section.services-hero .services-hero-desc h3{
    margin-bottom: 15px;
    font-size: 19px;
}


section.services-hero .services-hero-desc h2{
    margin-bottom: 40px;
    font-size: 40px;
    width: 95%;
}





section.services-hero .services-hero-desc a.contact-btn {
  background: #fff;
  color: red;
  padding: 10px 35px;
  border-radius: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

section.services-hero .services-hero-desc a.contact-btn img {
  width: 20px;
}
/* end services hero */


/* start first service */

section.first-service{
  justify-content: center;
}


section.first-service-eng{
  margin-bottom: 90px;
}

section.first-service .provide-desc{
  position: relative;
  width: 50%;
  left: -4%;
  z-index: -1;
  margin-top: 20px;
}

section.first-service-eng .provide-desc{
  left: 0;
}



section.first-service .provide-desc .provide-points .provide-point img{
  width: 19px;
}

section.first-service-eng .provide-desc .provide-points .provide-point img{
  transform: scaleX(-1);
}

section.first-service .provide-desc p.provide-text{
  width: 100%;
}

section.first-service .provide-desc .provide-points .provide-point p{
  font-size: 18px;
  margin-bottom: 10px;
}

/* end first service */

/* start road service */

section.road-service{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
}

section.road-service .road-service-machine{
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 20%;
}

section.road-service-eng .road-service-machine{
  transform: scaleX(-1);
  left: unset;
  right: 0;
}


section.road-service .road-service-machine img{
  width: 100%;
}



section.road-service .road-service-img{
  width: 40%;
}

section.road-service .road-service-img img{
  width: 100%;
}

section.road-service .road-service-desc{
  width: 45%;
}

section.road-service .road-service-desc h3{
    color: var(--primary-bg-color);
    margin-bottom: 15px;
}

section.road-service .road-service-desc h2{
    font-size: 30px;
    margin-bottom: 20px;
}

section.road-service .road-service-desc h2 span{
  color: var(--primary-bg-color);
}

section.road-service .road-service-desc p.road-slogan{
    color: #585858;
    margin-bottom: 25px;
    font-size: 21px;
    width: 80%;
    line-height: 1.45;
}


section.road-service .road-service-desc .roads-container{}

section.road-service .road-service-desc .roads-container .roads-point{
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 25px;
}

section.road-service .road-service-desc .roads-container .roads-point img{
  width: 55px;
}


section.road-service .road-service-desc .roads-container .roads-point .roads-point-desc{
    background: linear-gradient(135deg, #646464, #4f4f4f);
    color: #fff;
    padding: 15px 25px;
    border-radius: 17px;
}

section.road-service .road-service-desc .roads-container .roads-point .roads-point-desc p{

}

/* end road service */


/* start supply service */

section.supply-service-eng{
  margin-bottom: 40px;
}
section.supply-service .supply-container{
}

section.supply-service .supply-container .supply-point-desc{}

section.supply-service .supply-container .supply-point-desc h5{
    font-size: 17px;
    color: var(--primary-bg-color);
    font-weight: 500;
    margin-bottom: 10px;
}

section.supply-service .supply-container .supply-point-desc h6{
    font-size: 16px;
    color: grey;
    font-weight: 500;
}

section.supply-service-eng .supply-container .supply-point-desc h6{
  width: 85%;
}


section.supply-service .supply-img-mob{
  display: none;
}


/* end supply service */


/* start plan-service */

section.plan-service{

}

section.plan-service .road-service-desc .roads-container .roads-point img{
  width: 20px;
}


section.plan-service-eng .road-service-desc .roads-container .roads-point img{
  transform: scaleX(-1);
}


section.plan-service .road-service-desc .roads-container .roads-point .supply-point-desc h5{
      font-size: 18px;
    font-weight: 500;
    color: #00000099;
}

section.plan-service .road-service-desc .plan-img-mob{
  display: none;
}



/* end plan-service */

a.break-contact-btn{
  background: red;
  color: #fff;
  padding: 15px 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 50px;
  transition: all 0.3s ease;
}

a.break-contact-btn img{
  width: 20px;
}

a.break-contact-btn:hover{
  padding: 15px 120px;
}


/* start contact form page */



section.services-hero.form-page{
  height: auto;
  padding-bottom: 40px;
  justify-content: space-around;
}


.services-hero-desc .services-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.services-hero-desc .services-form .ghgh {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.services-hero-desc .services-form input,
.services-hero-desc .services-form select,
.services-hero-desc .services-form textarea {
  flex: 1;
  padding: 20px 15px;
  border: none;
  border-radius: 20px;
  background: #fff;
  font-size: 15px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: 3px solid #a8a8a8cc;
}

.services-hero-desc .services-form select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M4 6l4 4 4-4z"/></svg>');
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 12px;
  padding-left: 35px;
  width: 100%;
}

.services-hero-desc .services-form textarea {
  height: 120px;
  resize: none;
}

.services-hero-desc .services-form .submit-btn {
  background: linear-gradient(to right, #555, #999);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.services-hero-desc .services-form .submit-btn:hover {
  background: linear-gradient(to right, #333, #777);
}

section.form-page .services-hero-desc{
  margin-top: 11%;
  width: 50%;
  margin-inline-start: unset;
}


section.form-page .services-hero-desc form.services-form .submit-btn{
  margin-inline-end: 0;
  margin: auto;
  padding: 13px 90px;
}


section.form-page .contact-page-container{
  background-color: transparent;
  width: 35%;
  z-index: 0;
  margin-top: 4.5%;
  padding: 15px 25px;
  /* padding-top: 35px; */
  border-radius: 16px;
  position: relative;
}


section.form-page .contact-page-container .hawk-img{
    position: absolute;
    bottom: -12%;
    left: 43%;
    width: 16%;
    z-index: -1;
}


section.form-page .contact-page-container .hawk-img img{
  width: 100%;
}


section.form-page .contact-page-container h5.contact-slogan{
    margin: auto;
    margin-bottom: 15px;
    font-size: 20px;
    color: #fff;
}

section.form-page .contact-page-container .contact-page-box{
  background-color: transparent;
  overflow: hidden;
  border-radius: 6px;
  padding: 15px;
}

section.form-page .contact-page-container .contact-page-box .contact-black-box{
  border: 1px solid #fff;
  border-radius: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 30px;
  gap: 30px;
  background-color: black;
}

section.form-page .contact-page-container .contact-page-box .contact-black-box img{
  width: 10%;
  width: 35px;
}

section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-break{
  width: 2px;
  height: 45px;
  background-color: #fff;
}

section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-box-text{}

section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-box-text h5{
  color: var(--primary-bg-color);
      margin-bottom: 15px;
    font-size: 18px;
}

section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-box-text h6{
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    width: 65%;
}

section.form-page-eng .contact-page-container .contact-page-box .contact-black-box .contact-box-text h6{
  width: 50%;
}


/* end contact form page */

.custom-dropdown { display: none; }


@media screen and (max-width: 1115px) {
  .mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
  }

  header .header-navs .header-navs-links {
    width: fit-content;
  }

  header .header-navs .header-navs-links a {
    margin-inline-end: 30px;
  }

  header .header-navs .header-navs-links a:last-child {
    margin-inline-end: 0px;
  }

  header .header-navs .start-now {
    width: 26%;
  }

  section.gallery .pagination-container .pagination-img img {
    bottom: -55%;
  }

  .form-row input {
    width: 19%;
  }
}

@media screen and (max-width: 992px) {
  header .header-navs {
    display: none;
  }

  header .mobile-menu-toggle {
    display: block;
  }

  .mobile-sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(
      to bottom,
      #363636 0%,
      #4f4f4f 50%,
      #9c9c9c 100%
    );
    z-index: 10000000;
    padding: 30px;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
  }

  .mobile-sidebar.active {
    right: 0;
  }

  .mobile-sidebar .close-menu {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    text-align: left;
    margin-bottom: 40px;
  }

  .mobile-sidebar .mobile-header-navs-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .mobile-sidebar .mobile-header-navs-links a {
    color: #fff;
    font-size: 18px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
  }

  .mobile-sidebar .mobile-header-navs-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .mobile-sidebar .mobile-header-navs-links a i {
    font-size: 12px;
  }

  header .header-navs .start-now {
    display: none;
  }

  header .logo {
    width: 30%;
    margin-inline-end: 20px;
  }

  .mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }

  section.hero-home {
    justify-content: center;
    background-image: url("/assets/img/hero-mob.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  section.services-hero {
    background-image: url("/assets/img/services-hero.png");
  }
  
  section.form-page {
    background-image: url("/assets/img/form-cover.png");
  }

  section.services-hero .services-hero-desc{
    width: 65%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  section.hero-home .machine-img {
    display: none;
  }

  section.hero-home .hero-text {
    margin: 0;
    width: 90%;
    text-align: center;
    margin-top: 8%;
  }

  section.hero-home .hero-text p {
    text-align: center;
    width: 100%;
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
  }

  section.hero-home .hero-text p img {
    display: none;
  }

  section.hero-home .hero-img {
    display: none;
  }

  section.services-hero .hero-img,
  section.form-page .hero-img{
    display: block;
  }


  section.hero-home .hero-mobile-layer {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
  }

  section.about-eltaher {
    flex-direction: column-reverse;
  }

  section.about-eltaher .about-desc {
    margin: 0;
    width: 90%;
  }

  section.about-eltaher .about-images {
    display: none;
  }

  section.about-eltaher .about-desc .about-images-mob {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
  }

  section.about-eltaher .about-desc .about-images-mob img {
    width: 35%;
  }

  section.home-services .home-services-container {
    flex-direction: column;
  }

  section.home-services .home-services-container .home-service-box {
    width: 80%;
    justify-content: space-around;
    display: flex;
    flex-direction: row;
    margin-bottom: 45px;
    align-items: center;
  }

  section.home-services
    .home-services-container
    .home-service-box
    .service-desc-box {
    position: unset;
    width: 50%;
    padding: 45px 0px;
  }

  section.home-services
    .home-services-container
    .home-service-box
    img.service-img {
    width: 45%;
  }

  .our-projects .description-container {
    width: 100%;
  }

  .swiper-pagination.pagination-proj,
  section.gallery .pagination-container .pagination-img,
  section.gallery .pagination-container .pagination-text {
    display: none;
  }

  section.gallery .pagination-container {
    width: 30%;
  }

  .swiper-button-next.next-proj,
  .swiper-button-prev.prev-proj {
    width: 30px;
    height: 30px;
  }

  section.banner .banner-container .banner-mach {
    display: none;
  }

  section.banner .banner-container {
    justify-content: center;
  }

  section.banner .banner-container .banner-text {
    /* background-color: green; */
    width: 80%;
  }


  section.banner-eng .banner-container .banner-text {
    width: 90%;
  }

  section.banner .banner-container .banner-text .banner-services {
    width: 80%;
    /* background-color: aqua; */
  }

  section.banner {
    margin-bottom: 80px;
  }

  section.provide-section {
    flex-direction: column;
  }

  section.provide-section .provide-desc {
    width: 90%;
  }

  section.provide-section .provide-img {
    display: none;
  }

  section.provide-section .provide-desc .provide-img-mob {
    display: block;
    width: 50%;
  }

  section.provide-section .provide-desc .provide-img-mob img {
    width: 100%;
  }

  section.our-company {
    flex-direction: column;
  }

  section.our-company .our-company-img {
    width: 60%;
    margin-bottom: 40px;
  }

  section.our-company .our-company-desc {
    width: 90%;
  }

  section.why-eltaher .why-container {
    flex-direction: column-reverse;
    height: auto;
  }

  section.why-eltaher .why-container .why-right-column {
    width: 65%;
  }

  section.why-eltaher .why-container .why-left-column {
    width: 60%;
  }

  section.location {
    flex-direction: column;
    margin-bottom: 85px;
  }

  section.location .location-desc {
    width: 100%;
  }

  section.location .location-map {
    display: none;
  }

  section.location .location-desc .location-map-mobile {
    display: block;
    width: 80%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 40px;
  }

  section.location .location-desc .location-map-mobile iframe {
    width: 100%;
  }

  section.contact-form .contact-form-bg {
    display: none;
  }

  section.contact-form .contact-form-inputs .contact-mob-img {
    display: block;
    width: 50%;
    margin-bottom: 40px;
  }

  section.contact-form .contact-form-inputs .contact-mob-img img {
    width: 100%;
  }

  section.contact-form {
    /* background-color: yellow; */
    width: fit-content;
  }

  .contact-form-inputs {
    position: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-form-inputs h2 {
    color: black;
  }

  .form-row {
    justify-content: center;
    margin-bottom: 20px;
  }

  .submit-btn {
    margin-inline-end: unset;
  }

  .form-row input {
    border: 2px solid #00000045;
  }

  footer {
    flex-wrap: wrap;
    row-gap: 55px;
  }

  footer .first-column {
    width: 45%;
  }

  footer .third-column {
    width: 50%;
  }

  section.first-service .provide-desc{
    left: unset;
  }

  section.road-service{
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }

  section.road-service .road-service-desc{
    width: 90%;
  }

  section.road-service .road-service-img{
    display: none;
  }

  section.road-service .road-service-machine{
    bottom: 0;
    width: 30%;
  }

  section.supply-service .supply-img-mob{
    display: block;
    width: 55%;
  }

  section.supply-service .supply-img-mob img{
    width: 100%;
  }

  section.plan-service .road-service-desc .plan-img-mob{
    display: block;
    width: 50%;
  }
  
  section.plan-service .road-service-desc .plan-img-mob img{
    width: 100%;
  }

  section.services-hero.form-page{
    flex-direction: column;
    padding-top: 16rem;
  }

  section.form-page .contact-page-container{
    width: 60%;
  }

  header .lang-box{
    display: none;
  }


}

@media screen and (max-width: 700px) {
  section.hero-home .hero-text .achievments {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  section.about-eltaher .about-desc p.section-title {
    font-size: 17px;
  }

  section.about-eltaher .about-desc h2.section-slogan {
    width: 85%;
    font-size: 23px;
  }

  section.about-eltaher .about-desc p.section-desc {
    font-size: 16px;
  }

  section.about-eltaher .about-desc .section-points p {
    font-size: 14px;
  }

  footer .sec-column {
    width: 25%;
  }
}

@media screen and (max-width: 576px) {
  header {
    padding: 15px;
  }

  header .mobile-menu-toggle {
    margin-inline-start: 10px;
    padding: 10px 15px;
    font-size: 24px;
  }

  header .logo {
    width: 25%;
    margin-inline-end: 10px;
  }

  .mobile-sidebar {
    width: 280px;
  }

  section.hero-home .hero-text {
    margin-top: 20%;
  }

  section.hero-home .hero-text h1 {
    font-size: 30px;
    width: 100%;
    margin: auto;
    margin-bottom: 25px;
  }

  section.hero-home .hero-text p.hero-desc {
    width: 85%;
    font-size: 19px;
  }
  section.hero-home .hero-text .achievments .achievment-text p{
    width: 100%;
    color: #fff;
  }

  section.hero-home .hero-text .achievments {
    display: flex;
    position: unset;
    flex-direction: column;
    gap: 0;
  }

  .achievment-number h2 {
    font-size: 75px;
  }

  section.hero-home .hero-text a.contact-btn {
    margin: 0;
    margin-bottom: 25px;
  }

  section.hero-home .hero-text .achievments .achievment-number img {
    width: 30px;
    top: -10%;
    right: -15%;
  }

  section.hero-home .hero-mobile-layer{
    backdrop-filter: unset;
    background-color: rgba(0, 0, 0, 0.55);
  }

  section.hero-home {
    /* background-image: url("/assets/img/hero-mob-2.webp"); */
    background-image: url("/assets/img/about-btm.webp");
  }

  section.services-hero {
    background-image: url("/assets/img/services-hero.png");
    background-position: 15% 0%;
  }

  section.services-hero .services-hero-layer{
    backdrop-filter: blur(3px);
  }

  section.about-eltaher .about-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  section.about-eltaher .about-desc p.section-desc {
    width: 90%;
  }

  section.about-eltaher .about-desc .about-images-mob img {
    width: 40%;
  }

  section.home-services p.section-title {
    font-size: 20px;
  }

  section.home-services h2.section-slogan {
    font-size: 20px;
    width: 85%;
  }

  section.home-services p.section-desc {
    width: 75%;
    font-size: 15px;
  }

  section.home-services .home-services-container .home-service-box {
    width: 95%;
    flex-direction: column;
  }

  section.home-services
    .home-services-container
    .home-service-box
    img.service-img {
    width: 90%;
    margin-bottom: 15px;
  }

  section.home-services
    .home-services-container
    .home-service-box
    .service-desc-box {
    width: 90%;
    padding: 14px 0px;
  }

  section.home-services a.contact-btn {
    margin: 0;
  }

  .our-projects-title h2 {
        font-size: 22px;
        text-align: center;
        width: 85%;
        margin: auto;
        margin-bottom: 20px;
}

  .our-projects .description-container h2 {
    font-size: 26px;
  }

  .our-projects .description-container p.mainDescription {
    font-size: 15px;
  }

  .our-projects .point {
    width: 75%;
  }

  .our-projects .breakers-location {
    justify-content: space-around;
  }

  .our-projects {
    width: 98%;
    border-radius: 6px;
  }

  .our-projects .description-container {
    backdrop-filter: unset;
  }

  section.gallery .pagination-container {
    width: 45%;
    margin-top: 30px;
  }

  section.banner .banner-container .banner-text h2 {
    font-size: 23px;
    text-align: center;
  }

  section.banner .banner-container .banner-text h3 {
    font-size: 15px;
    text-align: center;
  }

  section.banner .banner-container .banner-text .banner-services {
    width: 100%;
  }

  section.banner .banner-container .banner-text .contact-banner-container {
    width: 100%;
  }

  section.banner
    .banner-container
    .banner-text
    .banner-services
    .banner-service-box
    img {
    width: 40px;
  }

section.banner .banner-container .banner-text .banner-services .banner-service-box p {
    font-size: 14px;
  }

  section.banner .banner-container .banner-text .banner-services .banner-service-box p {
    width: 50%;
  }


  section.banner
    .banner-container
    .banner-text
    .contact-banner-container
    .start-now
    a {
    font-size: 14px;
  }

  section.banner
    .banner-container
    .banner-text
    .contact-banner-container
    .start-now
    a
    img {
    width: 18px;
  }

  section.banner
    .banner-container
    .banner-text
    .contact-banner-container
    .contact-text {
    font-size: 16px;
  }

  section.gallery {
    margin-bottom: 20px;
  }

  section.provide-section {
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
  }

  section.provide-section .provide-desc h3 {
    margin: auto;
    margin-bottom: 7px;
  }

  section.provide-section .provide-desc h2 {
    margin: auto;
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
  }

  section.provide-section .provide-desc .provide-img-mob {
    margin: auto;
    width: 85%;
  }

  section.provide-section .provide-desc p.provide-text {
    margin: auto;
    margin-bottom: 30px;
    font-size: 16px;
  }

  section.provide-section .provide-desc .provide-points .provide-point img {
    width: 38px;
  }

  section.provide-section .provide-desc .provide-points .provide-point p {
    font-size: 15px;
  }

  section.first-service-eng .provide-desc .provide-points .provide-point p {
    width: 80%;
    text-align: left;
  }


  section.provide-section-eng .provide-desc .provide-points .provide-point p {
    text-align: left;
    width: 80%;
  }


  section.our-company .our-company-img {
    width: 80%;
  }

  section.our-company .our-company-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.our-company .our-company-desc h2 {
    font-size: 22px;
    text-align: center;
  }

  section.our-company .our-company-desc p.our-company-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 35px;
  }

  section.our-company .our-company-desc .our-company-points .our-company-point .point-desc h5 {
    font-size: 15px;
    width: 45%;
  }

  section.our-company-eng .our-company-desc .our-company-points .our-company-point .point-desc h5 {
    width: 28%;
  }

  section.our-company .our-company-bg img {
    height: 100%;
    object-fit: cover;
  }

  section.our-company .our-company-bg {
    top: 0;
  }

  section.why-eltaher .why-container .why-right-column {
    width: 95%;
  }

  section.why-eltaher .why-container .why-right-column .why-card-desc h2 {
    font-size: 14px;
  }

  section.why-eltaher .why-container .why-right-column .why-card-desc {
    width: 45%;
  }

  section.why-eltaher .why-container .why-right-column .why-card-desc p {
    font-size: 14px;
  }

  section.why-eltaher .why-container .why-right-column .why-card {
    height: 11rem;
  }

  section.why-eltaher .why-container .why-right-column .why-card-img {
    width: 45%;
    height: 100%;
  }

  section.why-eltaher .why-container .why-left-column {
    width: 95%;
  }

  section.why-eltaher h3 {
    width: 85%;
    font-size: 15px;
  }

  section.why-eltaher h3 {
    margin-bottom: 60px;
  }

  section.location .location-desc h2 {
    text-align: center;
    font-size: 21px;
    width: 85%;
  }

  section.location {
    width: 95%;
  }

  section.location .location-desc .contact-box a {
    width: 85%;
  }

  section.location .location-desc .location-map-mobile {
    width: 95%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input {
    width: 90%;
  }

  .contact-form-inputs h2 {
    font-size: 22px;
    text-align: center;
    width: 70%;
  }

  footer .first-column {
    width: 90%;
    order: 0;
  }

  footer .sec-column {
    order: 1;
    width: 45%;
    margin-inline-start: 15px;
  }

  footer .last-column {
    order: 2;
    width: 45%;
  }

  footer .third-column {
    order: 3;
    width: 90%;
  }

  footer .footer-img {
    width: 40%;
  }

  section.contact-form {
    bottom: 0;
    margin-bottom: 35px;
  }

  footer {
    padding-top: 60px;
  }

  section.services-hero .services-hero-desc{
    width: 100%;
  }
  
  section.services-hero .services-hero-desc h2{
    font-size: 35px;
  }
  
  section.first-service .provide-desc .provide-img-mob{
    margin-inline-end: 15%;
  }

  section.first-service .provide-desc .provide-points .provide-point img{
    width: 19px;
  }


  section.road-service .road-service-desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  section.road-service .road-service-desc h2{
    font-size: 22px;
  }

  section.road-service .road-service-machine{
    display: none;
  }

  section.road-service .road-service-desc .roads-container .roads-point .roads-point-desc p{
    font-size: 15px;
    width: 90%;
  }

  section.road-service-eng .road-service-desc .roads-container .roads-point .roads-point-desc p{
    text-align: left;
    margin-inline-start: 20px;
  }


  section.road-service .road-service-desc .roads-container .roads-point .roads-point-desc{
    width: 85%;
    padding: 15px 0;
  }


  section.road-service .road-service-desc p.road-slogan{
    width: 95%;
    font-size: 16px;
  }

  section.road-service .road-service-desc .roads-container .roads-point img{
    width: 60px;
  }

  section.road-service .road-service-desc .roads-container .roads-point img {
    width: 40px;
  }

  section.supply-service .supply-container .supply-point-desc h6{
    text-align: right;
    width: 60%;
  }

  section.supply-service-eng .supply-container .supply-point-desc h6{
    text-align: left;
    width: 50%;
  }
  
  section.supply-service-eng .supply-container .supply-point-desc h5{
    text-align: left;
    width: 40%;
  }
  
  section.plan-service-eng .road-service-desc .roads-container .roads-point .supply-point-desc h5{
    text-align: left;
    width: 80%;

  }

  section.plan-service .road-service-desc .plan-img-mob{
    width: 75%;
  }

  section.plan-service .road-service-desc .roads-container .roads-point img{
    width: 18px;
  }

  section.form-page{
    background-image: url(/assets/img/form-cover.png);
    background-position: center;
  }

  section.services-hero.form-page{
    padding-top: 8rem;
  }

  
  section.services-hero.form-page .services-hero-desc{
    width: 90%;
  }

  .services-hero-desc .services-form .ghgh{
    flex-direction: column;
  }

  .services-hero-desc .services-form select option {
    background-color: red;
  }

    #serviceSelect {
    display: none;
  }

  /* show custom dropdown on mobile */
  .custom-dropdown {
    display: block;
    position: relative;
    width: 100%;
    font-size: 15px;
    direction: rtl;
  }

  .custom-dropdown .selected-option {
    background-color: #fff;
    padding: 17px 15px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    color: grey;
    text-align: right;
  }

  .custom-dropdown .dropdown-options {
    display: none;
    background-color: #808080d9;
    border-radius: 15px;
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    overflow: hidden;
  }

  .custom-dropdown .dropdown-options li {
    padding: 12px 15px;
    color: #fff;
    cursor: pointer;
    text-align: right;
  }

  
  .services-hero-desc .services-form{
    width: 100%;
  }


  section.form-page .contact-page-container{
    padding: 0;
    width: 90%;
    padding-top: 25px;
    background-color: transparent;
  }

  section.form-page .contact-page-container .contact-page-box .contact-black-box{
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
  }

  section.form-page .contact-page-container h5.contact-slogan{
    color: #fff;
  }


  section.form-page-eng .contact-page-container h5.contact-slogan{
    text-align: center;
  }


  section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-break{
    width: 90%;
    height: 2px;
  }

  section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-box-text{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.form-page .contact-page-container .contact-page-box .contact-black-box .contact-box-text h6{
    width: 80%;
    text-align: center;
  }

  section.form-page .contact-page-container .hawk-img{
    display: none;
  }

  section.road-service{
    margin-bottom: 0;
  }

  section.supply-service .supply-img-mob{
    width: 75%;
    margin-bottom: 10px;
  }

  a.break-contact-btn{
    margin-bottom: 20px;
    margin-bottom: 80px;
  }

  
  section.plan-service,
  section.supply-service{
    margin-bottom: 80px;
  }

  section.about-eltaher-eng .about-desc .section-points {
    padding: 0 20px;
  }

  section.banner-eng .banner-container .banner-text .contact-banner-container .start-now{
    width: 45%;
  }

}
