

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/_Arabic/IBMPlexSansArabic/PPNeueMontreal-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/_Arabic/IBMPlexSansArabic/PPNeueMontreal-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/_Arabic/IBMPlexSansArabic/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/_Arabic/IBMPlexSansArabic/PPNeueMontreal-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/_Arabic/IBMPlexSansArabic/PPNeueMontreal-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('../fonts/PPNeueMontreal-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Orelo';
  src: url('../fonts/Orelo-Standard-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Orelo';
  src: url('../fonts/Orelo-Standard-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: 'RecklessNeue-Book';
  src: url('../fonts/RecklessNeue-Book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'IBMPlexSansArabic';
  src: url('../fonts/IBMPlexSansArabic-Regular.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'IBMPlexSansArabic';
  src: url('../fonts/IBMPlexSansArabic-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}


@font-face {
  font-family: 'IBMPlexSansArabic';
  src: url('../fonts/IBMPlexSansArabic-Light.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}


@font-face {
  font-family: 'IBMPlexSansArabic';
  src: url('../fonts/IBMPlexSansArabic-SemiBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


/* Fonts */
:root {
  --default-font: "PPNeueMontreal",  system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "PPNeueMontreal",  sans-serif;
  --heading-large-font: "RecklessNeue-Book", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nav-font: "PPNeueMontreal",  sans-serif;
  --number-font: "Orelo", sans-serif;

  --default--arabic-font: "IBMPlexSansArabic", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #edede8; /* Background color for the entire website, including individual sections */
  --default-color: #231f20; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f16448; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f16448; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #231f20;  /* The default color of the main navmenu links */
  --nav-hover-color: #f16448; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #edede8; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f16448; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
  --swiper-navigation-size: 32;
  --swiper-navigation-sides-offset: 0;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

body.rtl {
  font-family: var(--default--arabic-font) ;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6 {
  font-family: var(--default--arabic-font);
}


.form-select {
  appearance: none;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  /* Add space for arrow */
  background-image: url('../img/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  color: var(--accent-color);
}
.form-control,
.form-select {
  border: 1px solid var(--accent-color);
  border-radius: 0;
  background-color: var(--background-color);
  color: var(--accent-color);
}

.form-control::placeholder {
  color: var(--accent-color);
  /* Use your desired orange color */
  opacity: 1;
  /* Fully visible */
}

/* For better browser compatibility: */
.form-control::placeholder {
  color: var(--accent-color);
}

.form-control::-webkit-input-placeholder {
  color: var(--accent-color);
}

.form-control::-moz-placeholder {
  color: var(--accent-color);
}

.form-control:-ms-input-placeholder {
  color: var(--accent-color);
}

.form-control:-moz-placeholder {
  color: var(--accent-color);
}

.wpcf7-form {
  width: 560px;
  max-width: 100%;
  margin: 0 auto;
}

.wpcf7-form input,
.wpcf7-form textarea {
  border: 1px solid var(--accent-color);
  border-radius: 0;
  background-color: var(--background-color);
  color: var(--accent-color);
  margin-bottom: 30px;
  padding: 12px;
  width: 100%;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
   border: 2px solid #3d3d3d;
}

.wpcf7-form input.wpcf7-submit {
  background-color: var(--accent-color);
  color: #FFFFFF;
  text-transform: uppercase;
}


/* Container
------------------------------*/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  min-height: 105px;
}

.header .logo {
  line-height: 1;
}

.header .logo img,
.header .custom-logo-link img {
  height: 64px;
  width: auto;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .site-languages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .site-languages li {
  display: inline-block;
}

.header .site-languages li:not(:first-child)::before {
  content: "/";
  color: #ccc;
  margin: 0 5px;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-color);
}

.header .site-languages li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.header .secondary-menu a {
  text-transform: uppercase;
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}


/* Index Page Header
------------------------------*/
.index-page .header {
  background-color: var(--background-color);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--accent-color);
}


.header .social-links {
  margin-top: 40px;
}

.header .social-links a {
  margin: 0;
  padding: 0;
}

.header .social-links a i,
.header .social-links a:focus i {
  font-size: 24px;
  line-height: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  color: var(--accent-color);
  background-color: transparent;
}


.header .search-form {
  border: 1px solid var(--accent-color);
  width: 50%;
}


@media (max-width: 576px) {

  .header .social-links {

   }

  .header .search-form {
    width: 100%;
    margin-bottom: 20px;
  }
  .download-link {
    justify-content: center;
  }
  .services-list {
      justify-content: center;
  }
}


.header .search-form i {
  color: var(--accent-color);
}

.services-list a {
  color: var(--default-color);
}

.services-list a:hover {
  color: var(--accent-color)
}

.download-link {
  color: var(--default-color);
}
.download-link i {
  color: var(--accent-color)
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--accent-color);
  white-space: nowrap;
  box-sizing: border-box;
  height: 26px;
  line-height: 26px;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 40s linear infinite;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.marquee-wrapper:hover .marquee-text {
  animation-play-state: paused;
}
main {
  padding-top: 105px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Navmenu - Mobile */


    .mobile-nav-toggle {
      display: block;
      width: 45px;
      display: block;
      height: 45px;
      position: relative;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      cursor: pointer;
    }
  
    .mobile-nav-toggle span {
      display: block;
      position: absolute;
      height: 4px;
      width: 100%;
      background: var(--accent-color);
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out;
    }
  
  
  
    .mobile-nav-toggle span:nth-child(1) {
      top: 0px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center;
    }
  
    .mobile-nav-toggle span:nth-child(2) {
      top: 15px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center;
    }
  
    .mobile-nav-toggle span:nth-child(3) {
      top: 30px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center;
    }
  
    .mobile-nav-toggle.open span:nth-child(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 5px;
      left: 8px;
    }
  
    .mobile-nav-toggle.open span:nth-child(2) {
      width: 0%;
      opacity: 0;
    }
  
    .mobile-nav-toggle.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      top: 39px;
      left: 8px; }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

   .navmenu .navmenu-inner {
      display: none;
      list-style: none;
      position: absolute;
      top: 84px;
      left: 0;
      right: 0;
      width: 100%;
      min-height: calc(100vh - 105px);
      padding: 40px 0;
      margin: 0;
      background: rgba(237, 237, 232, 0.9);
      overflow-x: auto;
      border-top: 1px solid var(--accent-color);
    }


  .navmenu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;

  }

  .navmenu .primary-menu .menu-item a,
  .navmenu .primary-menu .menu-item a:focus {
    color: var(--nav-dropdown-color);
    padding: 4px 0;
    font-family: var(--nav-font);
    font-size: 20px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

    body.rtl .navmenu .primary-menu .menu-item a,
    body.rt .navmenu .primary-menu .menu-item a:focus {
      font-family: var(--default--arabic-font)
    }

  .navmenu .primary-menu .menu-item a i,
  .navmenu .primary-menu  .menu-item a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu  .primary-menu .menu-item a i:hover,
  .navmenu  .primary-menu .menu-item a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .primary-menu  .menu-item a:hover,
  .navmenu .primary-menu .menu-item .active,
  .navmenu .primary-menu .menu-item .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .primary-menu .menu-item .active i,
  .navmenu .primary-menu .menu-item .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu.primary-menu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu  .primary-menu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    margin: 0;
    position: absolute;
    right: 50%;
    top: 1rem;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    overflow-y: auto;
    background-color: transparent;
    inset: 0;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu-inner {
    display: block;

  }


/* Listing Dropdown */

  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
  }


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--surface-color);
  background-color: var(--accent-color);
  font-size: 14px;
  position: relative;
}

.footer-logo {
  fill: #FFFFFF;
}

.footer .search-form {
  border: 1px solid #FFFFFF;
}

.footer .search-form .form-control {
  color: #FFFFFF;
}

.footer ::placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.footer input::placeholder,
.footer input::-webkit-input-placeholder,
.footer input::-moz-placeholder,
.footerinput:-ms-input-placeholder,
.footer input:-moz-placeholder  {
  color: #FFFFFF;
}

.footer .search-form button i {
  color: #FFFFFF;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--surface-color);
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer .widget {
  margin-bottom: 48px;
}
.footer h4.widget-title {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.footer .widget p {
  margin: 0;
}

.footer a {
  color: #FFFFFF;
}

.footer a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}


.footer .menu {
  margin-bottom: 30px;
  list-style: none;
  font-size: 16px;
  text-transform: uppercase;
}

.footer .menu ,
.footer .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .menu ul {
  padding: 0 10px;
}

.footer .menu a {
  color: #FFFFFF;
  font-size: 14px;
}

.footer .menu a:hover {
  color: #FFFFFF;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.floating-button i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.floating-button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.floating-button.active {
  visibility: visible;
  opacity: 1;
}

body.rtl .floating-button {
  left: 15px;
  right: auto;

}

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/
.whatsapp {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 60px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}


/*--------------------------------------------------------------
# Project request  Button
--------------------------------------------------------------*/
.service-request {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 105px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  border-bottom: 1px solid var(--accent-color);
}
.page-template-page-project-sectors .page-title {
  border-bottom-width: 0;
}
.page-title .heading {
  padding: 40px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.page-title .heading h1 {
  font-size: 172px;
  font-weight: 500;
  font-family: var(--heading-large-font);
}
.single-media_item .page-title .heading h1 {
  font-size: 44px;
}

body.rtl .page-title .heading h1 {
  font-family: var(--default--arabic-font);
}

.page-title .breadcrumb  {
  font-weight: bold;
  margin-top: 24px;
}

.page-title .breadcrumb a {
  color: #3d3d3d;
}

.page-title .breadcrumb a:hover {
  color: var(--accent-color)
}
.page-title .breadcrumb-item+.breadcrumb-item::before {
  content: '>';
}

.page-title .breadcrumb-item.active {
  color: #3d3d3d;
}

.page-content {
  min-height: 300px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 40px;
}

.page-thumbnail-container {
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.page-thumbnail {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 5px;
}

.project-content {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 0;
}

.project-content figure.wp-block-image  {
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 10px;
  display: block;
  text-align: center;
  margin: 0;
}

.project-content .wp-block-group {
  padding: 40px;
}

.project-content .wp-block-group p:last-child {
  margin-bottom: 0;
}

.project-bottom {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  height: 20px;
}


@media (max-width: 640px) {

  .page-title .heading h1 {
      font-size: 56px;
      text-align: center;
  }

  .page-title .breadcrumb {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }

}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  color: #000100;
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.section-title h2 a,
.section-title h2 a:hover,
.section-title h2 a:focus,
.section-title h2 a:active {
  color: #000100;
}

.section-title h2::after {
  content: ' ';
  display: block;
  height: 2px;
  width: 40px;
  background-color: var(--default-color);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
  padding: 0;
  border-bottom: 1px solid var(--accent-color);
  object-fit: cover;
}

.hero-heading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px;

}
.hero h1 {
  margin: 0;
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
}

.hero .swiper {
  height: 100%;
  width: 100%;
}

.fullwidth-video {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block;
  object-fit: cover;
}

.fullwidth-video.mobile {
  border-bottom: 1px solid var(--accent-color);
}

.hero img.hero-img {
  height: calc(100vh - 94px);
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero ul {
 margin-top: 80px;
}

.hero ul li  {
  font-size: 32px;
  font-weight: bold;
  font-size: 15px;
}

.hero-sectors {
  font-weight: bold;
  margin-bottom: 4px;
  color: #3d3d3d;
}

.dot-separator {
  color: #3d3d3d;
  margin: 0 4px;
  font-size: 10px;
  vertical-align: bottom;
}

.hero .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 64px;
  margin-right: 50%;
  width: 50%;
  height: 32px;
}

.hero .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  background: #edede8;
}

.hero .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}



.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {

  .hero  {
      height: auto;
      width: 100%;
    }

  .hero img.hero-img {
    height: calc(50vh + 26px) ;
    width: 100%;
    }
  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }


  .hero .swiper-pagination {
    margin-right: 0;
    width: 100%;
  }

}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  border-bottom: 1px solid var(--accent-color);
  padding: 0 0 40px;
  font-size: 15px;
  color: #3d3d3d;
}

.about .section-title h2 {
  font-weight: normal;
  margin-bottom: 10px;
}

.about .stat-item {
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: 0.3s;
  overflow: hidden;
  min-height: 452px;
  border: 1px solid var(--accent-color);
}

.about .stat-item-1,
.about .stat-item-3 {
  border-right-width: 0;
}

.about .stat-item-1,
.about .stat-item-2 {
  border-bottom-width: 0;
}

.stat-value {
  font-weight: bold;
  color: var(--accent-color);
  line-height: 1;
}

.about .stat-item-1 {
   background-color:var(--accent-color);
}

.about .stat-item-1 .stat-value,
.about .stat-item-1 .stat-title {
  color: #FFFFFF;
}

.about-left {
  position: relative;
}

.about-right {
  border: 1px solid var(--accent-color);
  position: relative;
}

.about-left::before,
.about-left::after,
.about-right::before,
.about-right::after {
  content: '';
  width: 1px;
  height: 40px;
  display: block;
  background-color: var(--accent-color);
  position: absolute;
  bottom: -40px;
}

.about-left::after {
  left: 0;
}

.about-left::before {
  right: -0;
}

.about-right::after {
  left: -1px;
}

.about-right::before {
  right: -1px;
}

.about-top {
  height: 40px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.lead {
  color: var(--accent-color);
  line-height: 1;
  text-align: center;
  font-family: var(--heading-large-font);
}

.about .lead {
  font-size: 13vw;
}

body.rtl .lead {
  font-family: var(--default--arabic-font);
}

body.rtl .about .lead {
  font-size: 14vw;
}

/*--------------------------------------------------------------
# awards Section
--------------------------------------------------------------*/
.awards {
  padding: 0;
}

.awards-inner {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 40px 0;;
}
.award-circle {
  background-color: var(--accent-color);
  height: 80px;
  width: 80px;
  color: #FFFFFF;
  font-size: 24px;
}

.award-item {
   padding: 0 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: #f16448;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;

}
.stat-value {
  font-family: var(--number-font);
}
.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Sectors Section
--------------------------------------------------------------*/

.sectors {
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 0;
}

.sectors .section-title {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  margin: 0;
  padding: 40px;
}

.sectors .sector-item {
  display: flex;
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  border-left: 1px solid var(--accent-color);
}

.sectors .sector-item h4 {
  font-family: var(--heading-large-font);
  font-size: 42px;
  margin-bottom: 6px;
}
body.rtl .sectors .sector-item h4 {
  font-family: var(--default--arabic-font);
}
.sectors .sector-excerpt {
  font-size: 13px;
  max-width: 75%;
  line-height: 20px;
}
.sectors .icon-box img {
  height: 80px;
  width: 80px;
}

.sector-left {
  border-right: 1px solid var(--accent-color)
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 0 0 40px;
}
.services .service-item {
  width: 100%;
  padding: 0;
  transition: 0.3s;
  overflow: hidden;
}

.services .service-item  img {
  border: 1px solid var(--accent-color);
  width: 100%;
  transition: transform 0.4s ease;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  word-spacing: 100vw;
}

.services .service-item:hover img {
  transform: scale(1.1);
}

.services-left {
  position: relative;
}
.services-right {
  border: 1px solid var(--accent-color);
  position: relative;
}

.services-left::before,
.services-left::after,
.services-right::before,
.services-right::after {
  content: '';
  width: 1px;
  height: 40px;
  display: block;
  background-color: var(--accent-color);
  position: absolute;
  bottom: -40px;
}

.services-left::after {
  left: 0;
}

.services-left::before {
  right: -0;
}

.services-right::after {
  left: -1px;
}

.services-right::before {
  right: -1px;
}

.services a.circle-link {
  width: 160px;
  height: 160px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-weight: normal;
  color: #333;
  text-align: center;
  align-self: center;
  text-transform: uppercase;
}

.services a.circle-link:hover {
  color: var(--accent-color);
}

.services .circle-link img {
  display: block;
  width: 48px;
  margin-top: 10px;
}

.services-top {
  height: 40px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.services .lead {
  color: var(--accent-color);
  font-size: 135px;
}

body.rtl .services .lead {
  font-size: 65px;
  padding: 110px;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services ul li a {
  color: var(--default-color);
  text-transform: uppercase;
}

.services ul li a:hover {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 0;
}

.faq-category {
  background-color: var(--accent-color);
  padding: 16px 40px;
}
.faq-category h2 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 40px;
  border-bottom: 1px solid var(--accent-color);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #3d3d3d;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: none;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  display: block;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(180deg);
  color: var(--default-color);
}

.faq-bottom {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  height: 40px;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/

.projects {
  background-color: #3d3d3d;
  padding-bottom: 0;
  padding-top: 2.5rem;
  background-image: url(../img/projects-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}


.projects-inner {
  border:  1px solid #eeeee9;
  padding-top: 40px;
}

.projects-bottom {
  border-left: 1px solid #eeeee9;
  border-right: 1px solid #eeeee9;
  height: 40px;
}

.projects .section-title {
  padding: 0 40px 40px;
  text-align: center;
}

.projects .section-title h2 {
  color: #eeeee9;
  font-size: 117px;
  font-family: var(--heading-large-font);
  display: block;
  text-transform: capitalize;
}

body.rtl .projects .section-title h2 {
  font-family: var(--default--arabic-font);
  font-weight: 100;
}


.projects .section-title h2 a,
.projects .section-title h2 a:hover,
.projects .section-title h2 a:focus,
.projects .section-title h2 a:active {
  color: #eeeee9;
}

.projects .section-title h2::after {
  display: none;
}
.projects .filters {
  display: flex;
  justify-content: center;
  padding: 0 40px 40px;
  flex-wrap:wrap;
}
.projects .filter-button {
  padding: 0;
  margin-right: 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #eeeee9;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  line-height: 24px;
}

.projects .filter-button::after {
  content: '-';
}

.projects .filter-button:last-child::after {
  display: none;
}

.projects .filter-button.active span {
  text-decoration: underline;
}

.projects .swiper-slide {
  text-align: center;
}

.projects .img-container {
  padding: 6px;
  border: 1px solid #eeeee9;
  margin-bottom: 20px;
}
.projects .img-container img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.projects .swiper-slide h4 {
  color: #eeeee9;
  text-transform: uppercase;
}

.projects .swiper-slide h4 a {
  color: #eeeee9;
}

.projects .swiper-slide h4 a:hover {
  color: var(--accent-color);
}

.projects .swiper-button-prev,
.projects .swiper-button-next {
  color: #eeeee9;;
  width: 100px;
  height: 100px;
  position: static;
}

.swiper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper {
  position: relative;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio {
  background-color: var(--default-color);
}

.portfolio .section-title h2 {
  color: #F5F5F4;
}

.portfolio .section-title h2::after {
 background-color: #F5F5F4;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  color: #F5F5F4;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #F5F5F4;
}

.portfolio .portfolio-filters li.filter-active::after {
  content: ' ';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #F5F5F4;
  margin-top: 10PX;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}




/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients {
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 0;
}

.clients-top {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  height: 40px;
}

.clients-inner {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 40px;
}

.clients .swiper-slide  {
  text-align: center;
}

.clients .swiper-slide img {
  transition: 0.3s;
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent-color)
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-button-prev,
.clients .swiper-button-next {
   color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  font-size: 14px;
}

.contact-bottom {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  border-top: 1px solid var(--accent-color);
  height: 40px;
}

.contact .info-item {
  width: 100%;
  max-width: 75%;
  margin-bottom: 40px;
}
.contact .info-item h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
  color: #3d3d3d;
}
.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .highlighted .info-item h4 {
  color: #FFFFFF;
}
.contact .head-office {
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}
.contact .map {
  border-top: 1px solid var(--accent-color);
}
.contact .map iframe {
  width: 100%;
}
.contact .social-links {
  display: flex;
  gap: 24px;
}
.contact .social-links {
  font-size: 24px;
}

.contact a {
  color: #3d3d3d;
}

.contact  a:hover {
  color: var(--accent-color);
}

.contact .highlighted {
  background-color: var(--accent-color);
  padding: 40px;
  color: #FFFFFF;
}

.contact .highlighted a,
.contact .highlighted a:hover {
  color: #FFFFFF;
}

body.rtl .arrow-right {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
#  Pagination
--------------------------------------------------------------*/

.pagination-container {
  margin: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.rtl .pagination-container {
  flex-direction: row-reverse;
}

.pagination-numbers {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex: 1;
}

.pagination-numbers .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #f25d3b;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.pagination-numbers .current {
  background-color: #f25d3b;
  color: white;
  font-weight: bold;
  border-color: #f25d3b;
}

.pagination-numbers .page-numbers:not(.current):hover {
  background-color: #f25d3b;
  color: white;
}

.next.page-numbers,
.prev.page-numbers  {
  display: none;
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# Awards Archive
--------------------------------------------------------------*/
.award-row {
  border-bottom: 1px solid var(--accent-color);
}

.award-row .container-fluid .row:last-child {
  border-right: 1px solid var(--accent-color);
}

.award-right {
  padding: 40px;
  border-left: 1px solid var(--accent-color);
}

.award-left {
  border-left: 1px solid var(--accent-color);
}

.award-row h2 {
  font-size: 48px;
  font-family: var(--heading-large-font);
  margin-right: 100px;
}
.award-bottom {
  border-right: 1px solid var(--accent-color);
  border-left: 1px solid var(--accent-color);
  height: 40px;
}

/*--------------------------------------------------------------
# Services Archive
--------------------------------------------------------------*/

.service-row {
  border-bottom: 1px solid var(--accent-color);
}
.service-heading {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}
.service-heading .service-order {
  font-size: 56px;
  font-family: var(--number-font);
  font-weight: bold;
  color: var(--accent-color);
  padding: 40px;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
}
.service-heading .service-title {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--accent-color);
}
.service-heading h2 {
  color: var(--accent-color);
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 56px;
}
.service-content {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 40px;
}

/*--------------------------------------------------------------
# Project Archive
--------------------------------------------------------------*/


.projects-container {
  padding: 0 0 40px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

a.project-img {
  display: block;
  padding: 5px;
  border: 1px solid var(--accent-color);
  margin-bottom: 20px;
}

.project-odd a.project-img {
  border-left-width: 0;
}

.project-even a.project-img {
  border-right-width: 0;
}


body.rtl .project-odd a.project-img {
  border-left-width: 1px;
  border-right-width: 0;
}

body.rtl .project-even a.project-img {
  border-right-width: 1px;
  border-left-width: 0;
}


a.project-img img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}




.project-excerpt {
  font-size: 15px;
  text-align: center;
}
.project-sectors {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
  border-bottom: 1px solid var(--accent-color);
   margin-bottom: 60px;
   position: relative;
}

.project-sectors a {
  display: flex;
  flex: 1;
  padding: 20px;
  border-right: 1px solid  var(--accent-color);
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

body.rtl .project-sectors a {
  border-right-width: 0;
  border-left: 1px solid var(--accent-color);
}

.project-sectors .links {
  display: flex;
  flex: 1;
}

.project-sectors .arrow {
   color: var(--accent-color);
   justify-content: center;
   align-items: center;
   width: 20px;
   display: none;
}

.project-sectors a:last-child {
  border-right-width: 0;
}

body.rtl .project-sectors a:last-child {
  border-left-width: 0;
}


.project-sectors a:hover,
.project-sectors a.active {
  background-color: var(--accent-color);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .project-sectors a {
      padding: 10px;
      font-size: 12px;
      white-space: nowrap;
    }
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

/* Pagination nav container */
.navigation.pagination {
  display: flex;
  justify-content: center;
}

/* Inner pagination links */
.nav-links {
  display: inline-flex;
  flex-wrap: wrap;
}

/* Individual page link */
.page-numbers {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.page-numbers:hover {
  background-color: #f0f0f0;
}

.page-numbers.current {
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Sectors Archive
--------------------------------------------------------------*/
.sectors-top {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  height: 40px;

}
.sector-row {
  border-top: 1px solid var(--accent-color);
}

.sector-heading {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}
.sector-icon-grid {
  border-right: 1px solid var(--accent-color);
  color: var(--accent-color);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 50px;
}

.sector-icon-grid .icon-item {
  flex: 0 0 calc(25% - 10px);
  text-align: center;
  font-size: 8px;
}



.sector-heading h2 {
  color: var(--accent-color);
  text-transform: uppercase;
  padding: 40px;
  margin: 0;
  font-size: 94px;
}

.sector-content {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 0px 0 20px;
}

.sector-details {
  padding: 40px;
}

.divider {
  height: 1px;
  background-color: var(--accent-color);
  margin: 40px 0;
}

a.sector-link {
  display: block;
  padding: 20px;
  text-align: center;
  background-color: var(--accent-color);
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 20px;
}

a.sector-link:hover {
  color: #FFFFFF;
  background-color: var(--accent-color) !important;
}


.single-sector-icons .icon-grid {
  border-right: 1px solid var(--accent-color);
  color: var(--accent-color);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
}

.single-sector-icons .icon-item {
  flex: 0 0 calc(15% - 10px);
  text-align: center;
  font-size: 8px;
}

.sector-icons {
  border-bottom: 1px solid var(--accent-color);
}

.sector-icons-container {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 40px;
}

.sector-icons-container .pattern {
  height: 205px;
  background-repeat: space;
  background-position: top left;
  background-size: 17%;
}

/* Optional: Adjust size for smaller devices */
@media (max-width: 768px) {
  .sector-icons-container .pattern {
      height: 79px;
    }
}

.sector-section {
  padding: 40px 0;
  margin: 0 40px;
  border-bottom: 1px solid var(--accent-color);
} 

.sector-content {
  min-height: 300px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 0 0 40px;
}

.no-borders {
  border: 0;
}

.sector-projects .img-container {
  padding: 10px;
  border: 1px solid var(--accent-color);

}

.sector-projects img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .sector-icon-grid .icon-item {
      flex: 0 0 calc(50% - 10px);
    }
}


/*--------------------------------------------------------------
# Media Center
--------------------------------------------------------------*/

.media-item {
  padding: 5px;
  border: 1px solid var(--accent-color);
  position: relative;
}
.media-heading {
  padding: 16px 40px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.media-heading h3 {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.media-heading h3 a {
  color: #FFFFFF;
}

.results-count {
  background-color: var(--accent-color);
  color: #FFFFFF;
  font-size: 16px;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 40px;
}

.media-thumbnail img {
  width: 100%;
  height: 225px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog-post {
  background-color: #dededb;
  display: block;;
}

.post-heading {
  background-color: #3d3d3d;
}

.post-heading h2 {
   margin: 0;
   color: #FFFFFF;
}

.post-heading h2 {
  display: block;
  color: #FFFFFF;
  padding: 20px;
  font-size: 16px;
}

.post-heading h2 a:hover {
  background-color: var(--accent-color);
}

.post-excerpt {
  padding: 20px;
  color: #3d3d3d;
}

.related-news h3 {
  color: var(--default-color);
}


/*--------------------------------------------------------------
# About Details
--------------------------------------------------------------*/

.about-details {
  border-bottom: 1px solid var(--accent-color);
  padding: 0;
}

.about-details .about-content {
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}
.about-details .overview {
    padding: 64px;
}
.about-details .vision {
  background-color: var(--accent-color);
  color: #FFFFFF;
  padding: 40px;
}
.about-details h3 {
  color: var(--default-color);
  font-size: 16px;
  font-weight: bold;
}
.about-details .vision h2 {
  color: #FFFFFF;
}
.about-inner {
  padding: 40px;
}


.founder-message {
  background-color: #cececc;
  padding: 64px;
  text-align: center;
  position: relative;

}
.founder-message-title {
  margin-bottom: 40px;
  font-family: var(--heading-large-font);
  font-size: 40px;
}
.quote-left {
  width: 70px;
  height: 60px;
  position: absolute;
  top: -30px;
  left: 40px;
}
.quote-right {
  width: 70px;
  height: 60px;
  position: absolute;
  bottom: -30px;
  right: 40px;
}


input.flatpickr {
  position: relative;
  padding-right: 40px;
  background-image: url('../img/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

input.flatpickr::after {
  content: '--';
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
  top: 0;
  right: 0;
  z-index: 999999;
}


.project-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 10px;
}

.projects .swiper-nav,
.project-sectors .swiper-nav {
  position: static;
}


.sector-projects .swiper-nav {
  padding: 20px 40px;
}

.sector-projects .swiper-button-prev,
.sector-projects .swiper-button-next {
  position: static;
}


@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

@media (max-width: 769px) {


  .hero-heading {
      position: static;
      top: auto;
      left: auto;
      right: auto;
  }

  .mobile-nav-active .mobile-nav-toggle {
      right: 1.5rem;
      top: 30px;
    }

    body.rtl .mobile-nav-active .mobile-nav-toggle {
      right: auto;
      left: -21px;
  
    }

  .header-bottom {
    position: absolute;
    bottom: 40px;   
  }

}

@media (max-width: 640px) {


  .hero-heading {
     padding-bottom: 0;
  }

  .about-details .vision {
    padding: 80px 40px;
  }

  .service-heading .service-order {
    font-size: 32px;
    font-weight: normal;
    padding: 20px;
  }

  .service-heading h2 {
    font-weight: bold;
    font-size: 28px;
  }

  .sectors .sector-excerpt {
    max-width: none;   
  }

  .sector-heading h2 {
    font-size: 35px;
    font-weight: bold;
  }

  .sector-icon-grid {
    padding: 30px;
  }

}

@media (max-width: 480px) {

  .download-link {
    color: var(--accent-color);
  }

  .page-title .breadcrumb {
    font-size: 12px;
  }

  .about {
    padding-bottom: 0;
  }

  .about-top,
  .about-left::before,
  .about-left::after,
  .about-right::before,
  .about-right::after {
      display: none;
    }


  .about-bottom {
    border-left: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
    height: 40px;   
  }

  .award-title {
    font-size: 11px;
  }

  .projects .section-title h2 {
    font-size: 40px;
  }

  .projects .filter-button {
    font-size: 10px;
  }

  .projects .swiper-slide h4 {
    display: none;
  }

  .projects .img-container {
    margin-bottom: 30px;
  }

  a.project-img img,
  .projects .img-container img {
    width: 100%;
    height: 265px;
  }


  .projects .swiper-nav {
    margin-bottom: 20px;
  }
  .projects .img-container:last-child {
    margin-bottom: 0;
  }


  .projects .swiper-button-prev,
  .projects .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  a.project-archive-link {
    font-size: 13px;
  }

  .about .stat-item {
    min-height: 226px
  }

  .stat-title {
    font-size: 8px;
  }

  .about .section-title {
    padding-bottom: 80px;
  }

  .about .lead {
    font-size: 23vw;
  }


  .about .about-right {
    border-top-width: 0px;
    border-bottom-width: 0px;
  }
  
  .about .stat-item-3,
  .about .stat-item-4 {
    border-bottom-width: 0px;
  }
  .services .lead {
    font-size: 16vw; 
  }

  .services ul li {
    line-height: 1; 
  }

  .services ul li a {
    font-size: 11px;
  }

  .services .service-item h3 {
    font-size: 16px;
  }

  .services a.circle-link {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }

    .services .service-item img {
      height: auto;
    }

  .about-details .overview {
    padding: 40px;
  }

  .founder-message {
    font-size: 14px;
    padding: 32px 16px;
  }

  .quote-left {
    width: 35px;
    height: 30px;
    top: -14px;
  }
  .quote-right {
    width: 35px;
    height: 30px;
    bottom: -14px;
  }

  .services {
      border-bottom: 0px;
      border-top: 1px solid var(--accent-color);
      padding: 0;
  }

  .services-top {
    height: 40px;
    border-left: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
  }

  .service-heading h2 {
    font-weight: bold;
    font-size: 23px;
  }
  
  .service-heading .service-title {
    padding: 20px 30px;
  }

  .services-right {
    border-top-width: 0px;
  }

  .services .service-item-3 img,
  .services .service-item-4 img {
    border-bottom: 0px;
  }

  .page-title .heading {
    padding: 20px 40px;
    }
  
  .page-title .heading h1 {
      font-size: 44px;
  }

  .project-sectors {
    margin-bottom: 20px;
  }


  .project-sectors .links {
    display: flex;
    overflow-x: auto;
    width: 100%;
    justify-content: start;
  }

  .project-sectors .arrow {
    display: flex;
  }

  a.sector-link {
    padding: 10px;
    margin-bottom: 0;
  }


.sector-projects img {
  width: 100%;
  height: 265px;
}

  
    .sector-projects .swiper-rtl .swiper-button-next,
    .sector-projects .swiper-button-next,
    .sector-projects .swiper-button-prev {
      font-size: 16px;
    }

  .faq .faq-container .faq-item {
      padding: 8px 40px;

    }

  .faq .faq-container .faq-item h3 {
    font-size: 13px;
  }

  .faq-category h2 {
    font-size: 14px;
  }

    .faq .faq-container .faq-item .faq-toggle {
      top: 10px
    }

    .award-row h2 {
      margin-right: 60px;
    }

    .sectors .icon-box img {
      height: 40px;
      width: 40px;       
    }


    .sector-icon-grid {
      padding: 30px;
    }

    .sector-heading h2 {
      font-size: 22px;
      font-weight: bold; 
    }

    body.rtl .sectors .sector-item h4 {
      font-size: 20px;
      }

    body.rtl .services .lead {
      font-size: 42px;
      padding: 0;   
    }

  .project-even a.project-img,
  .project-odd a.project-img {
     border-left: 0;
     border-right: 0;

  }


}


@media (max-width: 320px) {
  .stat-title {
      font-size: 8px;
  }

  .service-heading .service-title {
    padding: 20px;
  }

    .sector-icon-grid {
      padding: 10px;
    }
}




