* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-bottom: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

/* fonts  */
@font-face {
  font-family: "Montserrat-Arabic";
  src:
    url("../fonts/Montserrat-Arabic-Light.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Arabic";
  src:
    url("../fonts/Montserrat-Arabic-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Arabic";
  src:
    url("../fonts/Montserrat-Arabic-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Arabic";
  src:
    url("../fonts/Montserrat-Arabic-ExtraBold.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat-Arabic", sans-serif !important;
}

/* loader styles */
/* ===== PREMIUM PAGE LOADER ===== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999;
  transition: visibility 0.6s ease;
}

#page-loader .loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#page-loader .loader-bg-half {
  flex: 1;
  background-color: #fff;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

#page-loader.hidden .loader-bg-half.top {
  transform: translateY(-100%);
}

#page-loader.hidden .loader-bg-half.bottom {
  transform: translateY(100%);
}

#page-loader.hidden {
  visibility: hidden;
}

.loader-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  transition: opacity 0.4s ease;
}

#page-loader.hidden .loader-inner {
  opacity: 0;
}

.loader-logo {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderFadeUp 0.8s ease forwards 0.2s;
}

.loader-logo img {
  width: 180px;
  height: auto;
}

.loader-percentage {
  font-size: 80px;
  font-weight: 800;
  color: #0a2e2a;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.loader-progress-wrap {
  width: 250px;
  height: 2px;
  background-color: rgba(5, 38, 153, 0.1);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.loader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #0a2e2a;
  transition: width 0.1s linear;
}

.loader-text {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 5px;
  color: #0a2e2a;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: loaderFadeIn 1s ease forwards 0.5s;
}

@keyframes loaderFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderFadeIn {
  to {
    opacity: 1;
  }
}

/* start topbar */
.topbar {
  background-color: #0a2e2a;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.topbar iframe {
  overflow: hidden;
  height: 24px;
}

/* start banner */
/*.banner {
  min-height: 85vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  background-image: url(images/ceomessage/01.jpeg);
  display: flex;
  flex-direction: column;
}*/

.banner {
  min-height: 85vh;
  position: relative; /* Required to pin the video inside */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Prevents video from spilling out */
  color: white;
}

.banner--video {
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.banner--video > .container {
  position: relative;
  z-index: 2;
}

/* This makes the video behave like "background-size: cover" */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; /* Sends video to the back */
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none; /* User can't click/pause the video */
}

/* Optional: Adds a dark tint so your white text is easier to read */
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust 0.4 to make it darker or lighter */
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1; /* Pulls text in front of the video and the tint */
  padding: 40px; /* Adjust as needed for your layout */
}

.banner > .container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.banner .content {
  z-index: 111;
  position: relative;
  margin-top: auto;
  padding-bottom: 4rem;
  padding-top: 2rem;
}

.banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 44%,
    rgba(0, 0, 0, 0.4)
  );
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.banner .content h2,
.banner .content p,
.banner .content a {
  opacity: 0;
  transform: translateY(30px);
}

.banner .content h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .banner .content h2 {
    font-size: 30px;
  }
}

.banner .content h2:first-of-type {
  color: #fff;
}

.banner .content h2:last-of-type {
  color: #13ea9d;
}

.banner .content a {
  color: #fff;
  font-weight: 600;
  background-color: #6fbe44;
  padding: 12px 25px;
  border-radius: 5px;
  width: fit-content;
  transition: all 0.3s ease;
}

.banner .content a i {
  color: #fff;
}

.banner .content a:hover {
  background-color: #13ea9d;
  color: #002438;
}

.banner .content a:hover i {
  color: #002438;
}

/* start navbar*/
.navbar {
  z-index: 999;
}

.navbar-brand img {
  max-width: 280px;
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-width: 200px;
  }
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    min-width: 200px;
    /* Ensure it fits the content without awkward wrapping */
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: auto;
    right: 100%;
    /* Open to the left to avoid screen overflow on the right side */
    margin-top: -1px;
  }

  :dir(rtl) .dropdown-submenu > .dropdown-menu {
    left: 100%;
    right: auto;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    padding-left: 15px;
    display: none;
  }

  .dropdown-submenu .dropdown-menu.show {
    display: block;
  }

  :dir(rtl) .dropdown-submenu .dropdown-menu {
    padding-left: 0;
    padding-right: 15px;
  }
}

.dropdown-submenu > a > i {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

@media (min-width: 992px) {
  .dropdown-menu .dropdown-item {
    transition: 0.2s all ease;
  }

  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus {
    background-color: #6fbe44;
    color: #fff !important;
  }
}

.nav-link,
.dropdown-toggle {
  color: #fff !important;
  font-weight: 500;
  padding: 10px 15px !important;
  border-radius: 5px !important;
}

.nav-link:hover,
.nav-item.dropdown:hover {
  background-color: rgba(74, 76, 81, 0.6) !important;
}

.dropdown-toggle::after {
  display: none;
}

button:focus:not(:focus-visible) {
  box-shadow: none;
  border: 0;
}

@media (max-width: 991px) {
  .navbar-nav {
    background-color: transparent !important;
  }

  .nav-link:hover,
  .nav-item.dropdown:hover {
    background-color: transparent !important;
  }
}

/* RTL navbar justify: logo right, menu left */
:dir(rtl) .navbar .container-fluid {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

:dir(rtl) .navbar-nav {
  margin-right: auto !important;
  margin-left: 0 !important;
}

@media (max-width: 991px) {
  /* ===== MOBILE SIDEBAR (White Theme) ===== */
  .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 75% !important;
    max-width: 380px !important;
    height: 100vh !important;
    max-height: none !important;
    background-color: #fff !important;
    z-index: 10000 !important;
    padding: 25px 0 30px !important;
    display: block !important;
    visibility: hidden !important;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
  }

  .navbar-collapse.collapse:not(.show) {
    display: block !important;
  }

  .navbar-collapse.collapsing {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 75% !important;
    max-width: 380px !important;
    height: 100vh !important;
    max-height: none !important;
    background-color: #fff !important;
    z-index: 10000 !important;
    padding: 25px 0 30px !important;
    display: block !important;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
  }

  .navbar-collapse.show {
    right: 0 !important;
    visibility: visible !important;
  }

  /* RTL sidebar: slide from left */
  :dir(rtl) .navbar-collapse {
    right: auto !important;
    left: -100% !important;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15) !important;
  }

  :dir(rtl) .navbar-collapse.collapse:not(.show) {
    display: block !important;
  }

  :dir(rtl) .navbar-collapse.collapsing {
    right: auto !important;
    left: -100% !important;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15) !important;
  }

  :dir(rtl) .navbar-collapse.show {
    left: 0 !important;
    visibility: visible !important;
  }

  /* Close button - boxed X */
  .mobile-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border: 1.5px solid #999;
    color: #555;
    font-size: 14px;
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.2s ease;
  }

  .mobile-close-btn:hover {
    border-color: #333;
    color: #333;
  }

  :dir(rtl) .mobile-close-btn {
    right: auto;
    left: 12px;
  }

  /* Nav list padding */
  .navbar-nav {
    padding: 50px 30px 20px !important;
  }

  /* Nav links - black text */
  .nav-link {
    color: #222 !important;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    padding: 14px 0 !important;
    border-bottom: none;
    transition: color 0.2s ease !important;
  }

  /* Home link blue */
  .nav-item:first-child .nav-link {
    color: #0a2e2a !important;
  }

  /* Contact Us link in black */
  .nav-item:nth-last-child(2) .nav-link {
    color: #222 !important;
  }

  .nav-link:hover {
    color: #0a2e2a !important;
    background-color: transparent !important;
  }

  .nav-item.dropdown:hover {
    background-color: transparent !important;
  }

  .nav-link i.fa-chevron-down {
    font-size: 0.65em;
    color: #555;
    margin-left: 4px;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .nav-item.dropdown.show > .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
  }

  :dir(rtl) .nav-link i.fa-chevron-down {
    margin-left: 0;
    margin-right: 4px;
  }

  /* Dropdown items */
  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    position: static !important;
    width: 100% !important;
    float: none !important;
  }

  .dropdown-menu .dropdown-item {
    color: #333 !important;
    font-weight: 500;
    padding: 10px 20px !important;
    font-size: 15px;
    background-color: transparent !important;
    transition: color 0.2s ease !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus {
    color: #0a2e2a !important;
    background-color: rgba(5, 38, 153, 0.05) !important;
  }

  /* Sub-dropdown */
  .dropdown-submenu .dropdown-menu {
    padding-left: 10px !important;
    display: none;
  }

  .dropdown-submenu .dropdown-menu.show {
    display: block;
  }

  .dropdown-submenu.show > a i.fa-chevron-right {
    transform: rotate(90deg);
  }

  .dropdown-submenu.show > a i.fa-chevron-left {
    transform: rotate(-90deg);
  }

  .dropdown-submenu > a i {
    transition: transform 0.3s ease;
  }

  :dir(rtl) .dropdown-submenu .dropdown-menu {
    padding-left: 0 !important;
    padding-right: 10px !important;
  }

  /* Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
}

.navbar {
  transition: all 0.3s ease;
  width: 100%;
  z-index: 999;
  padding: 3rem 0;
  z-index: 999999999;
}

.navbar .container-fluid {
  transition: all 0.3s ease;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

.navbar.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0a2e2a !important;
  padding: 1rem 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-scrolled .navbar-brand img {
  max-width: 180px !important;
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler i {
  font-size: 22px;
}

.navbar .dropdown-item {
  font-weight: 500;
}

/* start about */
.about {
  padding: 80px 0;
}

.about h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 40px;
  color: #002538;
  font-weight: 800;
}

/* .about h2::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 170px;
  position: absolute;
  left: 50%;
  background-image: url(../images/slab-aqua.svg);
  z-index: -1;
  top: 60%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
} */
.about .content {
  width: 70%;
  margin: auto;
}

.about .content .desc1 {
  font-size: 20px;
  color: #002438;
  font-weight: 400;
}

.about .content .desc2 {
  font-size: 17px;
}

.about .content a {
  width: fit-content;
  margin: auto;

  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 10px 20px;
  text-decoration: none;
  color: #002438;
  border: 1px solid #f7f7f7;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s all ease;
}

.about .content a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 991px) {
  .about .content {
    width: 100%;
  }

  .about .content .desc1,
  .desc2 {
    font-size: 16px;
  }
}

/* start solutions */
.solutions {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/home/vision_and_mission.jpeg");
  background-size: cover;
  min-height: 80vh;
  background-position: center center;
}

.overlay {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 44%,
    rgba(0, 0, 0, 0.4)
  );
}

.solutions .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  margin: auto;
}

.solutions .content h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
}

.solutions .content a {
  border: 0;
  padding: 15px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #6fbe44;
  color: #fff;
  font-weight: 500;
  transition: 0.3s all ease;
  width: fit-content;
  text-decoration: none;
}

.solutions .content button i {
  color: #000;
}

.solutions .content button:hover {
  background-color: rgba(111, 190, 68, 0.6);
}

/* start latest projects */
/* .latest-projects {
  min-height: 120vh;
}
.latest-projects > .row {
  min-height: 120vh;
}
@media (max-width: 991px) {
  .latest-projects {
    min-height: 220vh;
  }
  .latest-projects > .row {
    min-height: 220vh;
  }
} */
.latest-projects .left {
  background-color: #0a2e2a;
  padding-left: calc(100% - 300px);
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  height: 100%;
}

.latest-projects .left img {
  width: 150px;
  height: 150px;
}

.latest-projects .left h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.latest-projects .left a {
  width: fit-content;
  color: #263846;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 17px;
}

.latest-projects .right {
  padding: 100px 100px;
}

.latest-projects .top-img {
  width: 60%;
}

@media (max-width: 1500px) {
  .latest-projects .right {
    padding: 100px 50px;
  }

  .latest-projects .top-img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .latest-projects .right {
    padding: 50px 10px;
  }
}

.latest-projects .top-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.latest-projects .top-img h3 {
  text-transform: capitalize;
  font-weight: 800;
}

.latest-projects span {
  text-transform: uppercase;
}

.latest-projects .read-more {
  font-size: 17px;
  text-transform: capitalize;
  text-decoration: none;
  color: #263846;
  font-weight: 600;
}

.latest-projects .img-container .overlay {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 0.3s all ease;
  border-radius: 22px;
}

.latest-projects .img-container:hover .overlay {
  opacity: 1;
}

/* start solutions */
.sustainability {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  min-height: 80vh;
  background-position: center center;
}

.sustainability .overlay {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 44%,
    rgba(0, 0, 0, 0.4)
  );
}

.sustainability .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  margin: auto;
}

.sustainability .content h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
}

.sustainability .content a {
  border: 0;
  padding: 15px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #6fbe44;
  color: #fff;
  font-weight: 500;
  transition: 0.3s all ease;
  width: fit-content;
}

.sustainability .content a i {
  color: #000;
}

.sustainability .content a:hover {
  background-color: rgba(111, 190, 68, 0.6);
}

/* start latest news  */
.latest-news {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .latest-news {
    padding: 40px 0;
  }
}

.latest-news h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 40px;
  color: #002538;
  font-weight: 800;
}

/* .latest-news h2::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 170px;
  position: absolute;
  left: 50%;
  background-image: url(../images/slab-aqua.svg);
  z-index: -1;
  top: 60%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
} */
.latest-news .img-container {
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
}

.latest-news .img-container img {
  width: 100%;
  cursor: pointer;
  height: 100%;
}

.img-container .overlay {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  opacity: 0;
  transition: 0.3s all ease;
}

.latest-news .img-container:hover .overlay {
  opacity: 1;
}

.latest-news .img-container p {
  color: #fff;
  text-decoration: none;
  left: 20px;
  z-index: 9999;
  background-color: #002538;
  padding: 2px 15px;
  border-radius: 15px;
  bottom: 15px;
}

.latest-news .left h6 a {
  color: #002538;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s all ease;
  font-size: 18px;
}

.latest-news .img-container:hover + h6 a {
  color: #6fbe44 !important;
}

.latest-news .right h6 a {
  color: #002538;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s all ease;
  font-size: 18px;
}

.latest-news .link {
  width: fit-content;
  margin: auto;

  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 10px 20px;
  text-decoration: none;
  color: #002438;
  border: 1px solid #f7f7f7;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s all ease;
}

.latest-news .link i {
  color: #6fbe44;
}

.latest-news .link:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* start careers */
.careers {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/aboutus/bottom.png");
  background-size: cover;
  min-height: 80vh;
  background-position: center center;
}

.careers .overlay {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 44%,
    rgba(0, 0, 0, 0.4)
  );
}

.careers .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  margin: auto;
}

.careers .content h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
}

.careers .content a {
  border: 0;
  padding: 15px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #6fbe44;
  color: #fff;
  font-weight: 500;
  transition: 0.3s all ease;
  width: fit-content;
}

.careers .content button i {
  color: #000;
}

.careers .content button:hover {
  background-color: #6fbe44;
}

/* start footer */
footer {
  padding: 20px 0 50px;
  background-color: #0a2e2a;
  color: #fff;
}

.footer-top {
  width: 200px;
}

.footer-top img {
  width: 100%;
  height: 100%;
}

.footer-left img {
  width: 200px;
}

footer a {
  text-decoration: none;
  color: #fff;
}

footer ul {
  list-style: none;
  border-left: 3px solid #6fbe44;
  padding-left: 1em;
}

footer ul li {
  margin-bottom: 1em;
  text-transform: uppercase;
  font-weight: 600;
}

footer .contacts ul {
  font-size: 13px;
  margin-bottom: 20px;
}

footer .contacts ul a {
  color: #6fbe44;
  font-size: 14px;
}

footer .contact-us ul a {
  font-size: 15px;
  font-weight: normal;
  font-size: 15px;
  text-transform: capitalize;
}

footer .contact-us ul.social {
  border: 0;
}

footer .contact-us ul.social a {
  width: 40px;
  height: 40px;
  background-color: #6fbe44;
  display: block;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: 0.3s all ease;
}

footer .contact-us ul.social a i {
  font-size: 16px;
}

footer .contact-us ul.social a:hover {
  background: rgba(111, 190, 68, 0.6);
  color: #fff;
}

footer hr {
  background-color: #6fbe44;
  border: 1px solid #6fbe44;
  height: 2px;

  border: none;
  height: 3px;
}

footer hr + p {
  font-size: 14px;
}

/* end footer */

/* ===== RESPONSIVE FIXES ===== */

/* Large tablet: 992px–1199px */
@media (max-width: 1199px) {
  .latest-projects .left {
    padding-left: 40px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .latest-projects .right {
    padding: 80px 60px;
  }
}

/* Tablet: ≤991px */
@media (max-width: 991px) {
  .banner {
    min-height: 70vh;
  }

  .about h2,
  .latest-news h2 {
    font-size: 30px;
  }

  .solutions .content h2,
  .sustainability .content h2,
  .careers .content h2,
  .latest-projects .left h2 {
    font-size: 30px;
  }

  .latest-projects .left {
    padding: 60px 30px;
  }

  .latest-projects .right {
    padding: 60px 30px;
  }

  /* Fix absolutely-positioned sections on mobile */
  .solutions,
  .sustainability,
  .careers {
    min-height: auto;
    padding: 0;
  }

  .solutions > .overlay,
  .sustainability > .overlay,
  .careers > .overlay {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 60px 0;
  }

  .solutions .content,
  .sustainability .content,
  .careers .content {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin: 0;
  }

  .latest-news .img-container {
    height: 300px;
  }
}

/* Mobile: ≤767px */
@media (max-width: 767px) {
  .latest-news .img-container {
    height: 240px;
  }

  .about h2,
  .latest-news h2,
  .solutions .content h2,
  .sustainability .content h2,
  .careers .content h2,
  .latest-projects .left h2 {
    font-size: 26px;
  }

  .solutions,
  .sustainability,
  .careers {
    padding: 60px 0;
  }
}

/* Small mobile: ≤575px */
@media (max-width: 575px) {
  .navbar-brand img {
    max-width: 150px;
  }

  .navbar.navbar-scrolled .navbar-brand img {
    max-width: 130px !important;
  }

  .banner {
    min-height: 60vh;
  }

  .banner .content h2 {
    font-size: 22px;
  }

  .about h2,
  .latest-news h2,
  .solutions .content h2,
  .sustainability .content h2,
  .careers .content h2,
  .latest-projects .left h2 {
    font-size: 22px;
  }

  .about {
    padding: 50px 0;
  }

  .latest-news .img-container {
    height: 200px;
  }

  .latest-projects .left {
    padding: 40px 20px;
    gap: 2rem;
  }

  .latest-projects .left img {
    width: 100px;
    height: 100px;
  }

  .solutions,
  .sustainability,
  .careers {
    padding: 50px 0;
  }

  footer {
    padding: 20px 0 30px;
  }

  .footer-left img {
    width: 150px;
  }
}

/* RTL responsive overrides */
@media (max-width: 1199px) {
  :dir(rtl) .latest-projects .left {
    padding-left: 20px;
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  :dir(rtl) .latest-projects .left {
    padding: 60px 30px;
  }
}

@media (max-width: 575px) {
  :dir(rtl) .latest-projects .left {
    padding: 40px 20px;
  }
}

:dir(rtl) {
  .banner .content h2 {
    margin-bottom: 12px;
    line-height: 1.2em;
    font-weight: 800;
  }

  .about .content .desc1 {
    font-size: 18px;
    font-weight: lighter;
  }

  .about .content .desc2 {
    font-size: 15px;
    font-weight: lighter;
  }

  .about .content a {
    font-size: 15px;
  }

  .solutions .overlay .content p {
    font-size: 15px;
    font-weight: lighter;
  }

  .latest-projects .left {
    background-color: rgb(38, 56, 70);
    padding-left: 2em;
    padding-right: calc(100% - 350px);
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
  }

  .latest-projects .left button {
    font-size: 15px;
  }

  .latest-projects .left button i {
    color: #6fbe44;
  }

  .latest-projects .right .top-img h5 {
    font-size: 14px;
    font-weight: lighter;
  }

  .latest-projects span {
    font-size: 13px;
    font-weight: lighter;
  }

  .latest-projects h6 {
    font-size: 15px;
  }

  .latest-projects .read-more {
    font-size: 15px;
    font-weight: 400;
  }

  .sustainability .content p {
    font-size: 15px;
    font-weight: lighter;
  }

  .latest-news .left h6 a {
    font-size: 16px;
  }

  .latest-news .link {
    font-size: 15px;
  }

  .latest-news .img-container p {
    right: 20px;
    font-size: 12px;
    width: fit-content;
    bottom: 30px;
  }

  .careers .content p {
    font-weight: lighter;
  }

  footer ul {
    border-left: 0;
    border-right: 3px solid #6fbe44;
    padding-right: 0;
    padding-right: 2em;
  }

  footer a {
    font-size: 12.5px;
    font-weight: 400;
  }

  footer .contact-us ul a {
    font-size: 12px;
  }

  footer hr + p {
    font-size: 13px;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    text-align: right;
  }

  .navbar .dropdown-item {
    font-size: 14px;
  }
}
