@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none !important;
}

@font-face {
  font-family: jf-flat;
  src: url(../font/ArbFONTS-JF-Flat-regular.ttf);
}

@font-face {
  font-family: jf-flat-bold;
  src: url(../font/alfont_com_خط-جذور-فلات-عريض-1.ttf);
}
:root {
  --main-color: #006655;
  --white: #fff;
  --grey-background: #e6e8ea;
  --lighter-gray: #f0f1f1;
  --text: #5c5b5b;
  --darker-main: #815822;
}

body {
  font-family: jf-flat !important;
}
/* ------ base--------- */
p {
  margin-bottom: 0px !important;
}
.mb-6 {
  margin-bottom: 65px;
}

/* Dropdown menu styles */
.dropdown a {
  cursor: context-menu;
}
.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--main-color) !important;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 150px;
  z-index: 10;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
}

.dropdown-menu a:hover {
  color: var(--text);
  background: var(--white);
}

/* Show dropdown menu on hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

.main-btn {
  background: var(--main-color);
  padding: 5px 20px;
  border-radius: 12px;
  outline: none;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.main-btn:hover {
  background: transparent !important;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.main-btn a {
  color: var(--main-color);
  font-size: 25px;
}
.section-title {
  text-align: right;
  margin-bottom: 50px;
}
.main-title {
  color: var(--main-color);
  font-weight: bold;
}
.main-para {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
}

.section-title p {
  color: var(--text);
  font-size: 22px;
}

/* scrolled icons */
.call-us-icons {
  position: fixed;
  bottom: 50%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  visibility: hidden;
  pointer-events: none;
}
.call-us-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-us-icons img {
  width: 55px;
}
.call-us-icons .hover-number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 115%;
  background-color: var(--white);
  color: var(--main-color);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.call-us-icons.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}
.call-us-icons a:hover .hover-number {
  opacity: 1;
  visibility: visible;
  transition: 0.5s ease;
}

/* RTL layout */
.arabic {
  direction: rtl;
  text-align: right;
}

.arabic .text-start {
  text-align: right !important;
}

.arabic .text-end {
  text-align: left !important;
}

/* header */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}
/* .navbar > .container {
  align-items: end;
} */
.navbar-brand img {
  width: 15rem;
}

.navbar-nav .nav-link {
  position: relative;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  margin: 0 5px;
  font-size: 18px;
  overflow: hidden;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--darker-main);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-item .main-btn {
  background: var(--white);
  color: var(--darker-main) !important;
  border: 1px solid var(--darker-main);
  font-weight: bold;
  margin-top: 5px;
}

.nav-item .main-btn img {
  width: 15px;
  margin-right: 15px;
}
.last-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -30px;
}

.last-item .nav-link {
  letter-spacing: 5px;
  font-weight: bold;
}
.nav-link:hover {
  color: var(--white) !important;
}
.mobile-header,
.side-menu {
  display: none;
}

/* hero section */
.hero-section {
  position: relative;
  background-image: url("/images/backgrounds/main-header.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  height: 100vh;
  text-align: center; /* keep text centered inside block */
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  padding-top: 15rem;
}

.hero-content h2 {
  font-size: 58px;
  margin-bottom: 5px;
  color: var(--white);
  font-weight: 800;
  font-family: "Tajawal", sans-serif;
}

.hero-content p {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 2rem;
  font-family: "Tajawal", sans-serif;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  justify-content: center;
}
.hero-buttons .main-btn {
  width: 180px;
  background: var(--main-color);
  border: 2px solid var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
}
.hero-buttons .main-btn:hover {
  color: var(--white);
}

/* breadcrumb section */
.breadcrumb-section {
  height: 40vh;
  position: relative;
  top: -6px;
}
.breadcrumb-section img {
  display: none;
}

.about-breadcrumb {
  background: url("/images/backgrounds/Header-02.png") no-repeat;
  background-size: cover;
}
.contact-breadcrumb {
  background: url("/images/banner/banner2.jpeg");
  background-size: cover;
}
.recruitment-breadcrumb {
  background: url("/images/backgrounds/Header-03.png") no-repeat;
}
.career-breadcrumb {
  background: url("/images/breadcrumb/career.jpg");
  background-size: cover;
}
.breadcrumb-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.breadcrumb-title {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 40px;
}
.breadcrumb-buttons {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  justify-content: center;
}

.breadcrumb-buttons .main-btn {
  background-color: var(--main-color) !important;
  color: var(--white) !important;
  border: 1px solid var(--white);
  padding: 15px 20px;
}
.breadcrumb-buttons .main-btn:hover {
  background-color: rgba(83, 83, 83, 0.7) !important;
}

.breadcrumb-buttons a {
  font-size: 22px;
  width: 200px;
  color: var(--white);
}

/* about section */
.about-section {
  position: relative;
}

.about-content {
  z-index: 2;
  color: var(--main-color);
}
.about-content h2 {
  font-weight: bold;
}
.about-content p {
  color: var(--text);
  font-size: 20px;
}

/* Features */
.feature-card {
  position: relative;
  background: #e9ecef;
  border-radius: 22px;
  padding: 55px 30px 30px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.check-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--main-color);
  display: grid;
  place-items: center;
}
.check-badge i {
  color: #fff;
  font-size: 22px;
}

.feature-text {
  margin: 0;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--main-color);
  text-align: center;
}
.feature-text span {
  font-weight: 800;
  color: var(--main-color);
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .features {
    margin-top: 30px;
  }
  .feature-card {
    padding: 50px 20px;
    border-radius: 18px;
  }
  .check-badge {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
  }
  .feature-text {
    font-size: 1.15rem;
  }
}

/* Service Section */
.service-section {
  background-color: var(--lighter-gray); /* solid base color */
  background-image: url(../images/Vectors/service-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 0 60px;
}
.service-cards {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  margin-top: 70px;
  perspective: 1000px;
}

.service-content {
  position: relative;
  background-color: var(--main-color);
  padding: 40px;
  height: 280px;
  border-radius: 22px;
  text-align: center;
  border: 2px solid var(--main-color);
  margin-top: 50px;
}

.service-title {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

/* 3D engine */
.service-card-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

/* Flip on hover */
.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

/* Faces */
.service-front {
  position: relative; /* keeps layout height from your .service-content */
  transform: rotateY(0deg);
  backface-visibility: hidden;
}

.service-back {
  position: absolute; /* sits on top of the front */
  inset: 0; /* fill the same box as the front */
  transform: rotateY(180deg);
  backface-visibility: hidden;
  border-radius: 22px; /* match your front radius */
  overflow: hidden;
}

/* Back face styling (gray background, centered text) */
.service-back-content {
  background: #e6e6e6; /* gray */
  color: #222;
  height: 100%;
  width: 100%;
  border: 2px solid #e6e6e6; /* subtle border; or match var(--main-color) if you prefer */
  border-radius: 22px;
  padding: 20px; /* match front padding */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-icon img {
  height: 120px;
  width: max-content;
}

/* banner section */
.banner-section {
  position: relative;
  background-image: url("/images/backgrounds/homepage_banner.jpg");
  background-size: cover;
  background-position: top;
  height: 60vh;
}
.banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  color: white;
  font-size: 28px;
  font-weight: 400;
  text-align: right;
  width: 40%;
  line-height: 1.6;
}

/* inquiries-section */
.inquiries-mobile {
  display: none;
}
.inquiries-section {
  padding-top: 50px;
}
.inquiries-info {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
}
.inquiries-content {
  background-color: var(--grey-background);
  padding: 50px;
}
.step {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 15px;
  margin-bottom: 5px;
  position: relative;
  width: 95%;
  border-radius: 12px;
}
.inquiries-info h4 {
  margin-bottom: 25px;
  color: var(--main-color);
  font-weight: bold;
}
.step p {
  padding-right: 10px;
}
.step a {
  color: var(--main-color);
  font-weight: bold;
}

.step-icon img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.callcenter .callcenter-swiper {
  width: 90%;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.callcenter-swiper .swiper-wrapper {
  /* overflow: hidden; */
  width: 100%;
}
.callcenter {
  position: relative;
  background: #f4f6f7;
  padding: 28px 0 60px;
  overflow: hidden;
  --cc-brand: #0e5b50;
  --cc-accent: #b5793e;
  --cc-card: #ffffff;
}

.callcenter-head {
  text-align: right;
  margin-bottom: 24px;
}
.callcenter-head h2 {
  margin: 0 0 6px;
  color: var(--cc-brand);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 36px);
}
.callcenter-head p {
  margin: 0;
  color: #8fa1a3;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 22px);
}

/* Swiper slides */
.callcenter-swiper {
  padding: 24px 56px;
}

/* Card */
.cc-card {
  position: relative;
  background: var(--cc-card);
  border: 2px solid var(--cc-accent);
  border-radius: 24px;
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 55px;
  margin-top: 95px;
  transition: transform 0.2s ease;
}
.cc-card:hover {
  transform: translateY(-3px);
}

/* Avatar overlapping the top edge */
.cc-avatar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  border: 4px solid var(--cc-accent);
}
.cc-avatar img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
}

/* Body */
.cc-body {
  width: 100%;
  text-align: center;
  padding: 0 20px 22px;
}
.cc-name {
  color: var(--cc-brand);
  font-weight: 900;
  font-size: 28px;
  margin: 8px 0 12px;
}

/* Actions */
.cc-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cc-action {
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-size: 22px;
}
.cc-action img {
  width: 50px;
}

/* Nav arrows */
.callcenter-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
}
.callcenter-nav img {
  width: 70%;
}
.callcenter-prev {
  right: 6%;
}
.callcenter-next {
  left: 8%;
}
.desktop-none {
  display: none;
}
/* recruitment-countries */
.recruitment-countries-section {
  position: relative;
  padding: 80px 0px;
}

.recruitment-countries-swiper {
  width: 100%;
}
.country-hidden {
  display: none !important;
}

.recruitment-country-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
}
.recruitment-country-content {
  margin: 15px 0;
  padding: 20px;
  background-color: transparent;
  position: relative;
  height: 270px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  border: 1px solid var(--darker-main);
  background-color: var(--grey-background);
  text-align: center;
}
.recruitment-page .recruitment-country-content {
  width: 100%;
  height: 100%;
}

.recruitment-footer-bottom {
  display: flex;
  justify-content: center;
}

.recruitment-country-content .country-flag {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid var(--darker-main);
}
.recruitment-page .main-title {
  color: var(--darker-main);
}
.recruitment-page-img img {
  transform: scale(1.1);
}
.recruitment-page .country-flag {
  width: 130px;
  height: 130px;
}
.recruitment-page .country-info {
  margin: 10px 0 !important;
  color: var(--main-color);
}

.recruitment-country-content .country-name {
  font-size: 25px;
  font-weight: bold;
  color: var(--darker-main);
  margin-bottom: 1px;
}

.recruitment-country-content .main-btn {
  padding: 5px 25px;
  border-radius: 12px;
  font-size: 16px;
  background-color: var(--main-color);
  border: 1px solid var(--darker-main);
}

.recruitment-button-prev,
.recruitment-button-next {
  position: absolute;
  top: 55%;
  /* transform: translateY(-50%); */
  cursor: pointer;
  z-index: 10;
  transition: 0.2s ease !important;
  border: none;
  background-color: transparent;
}
.recruitment-button-prev img,
.recruitment-button-next img {
  width: 35px;
}

.recruitment-button-prev {
  left: 10%;
}
.recruitment-button-next {
  right: 10%;
}

/* partners section */
.partners-section {
  text-align: center;
  padding: 120px 0;
}

.partners-desktop {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.partners-desktop img {
  max-width: 200px;
  height: auto;
}

.mobile-partners,
.mobile-services {
  display: none;
}

/* map section */
.map-section {
  margin-bottom: 50px;
}
.map-container {
  border: 1px solid var(--darker-main);
  border-radius: 12px;
  overflow: hidden;
}

.contact-section {
  overflow-x: hidden;
  color: #fff;
}
.map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info-content {
  margin-bottom: 15px;
  border: 1px solid var(--darker-main);
  width: 100%;
  color: var(--darker-main);
  border-radius: 12px;
  padding: 12px 25px;
  background: var(--lighter-gray);
}
.info-title {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--main-color);
  font-weight: bold;
}
.info-title img,
.info-content img {
  width: 20px;
  height: 20px;
}
.email-info {
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
  color: var(--darker-main);
}

.info-content p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px !important;
}

/* testimonial section */

.testimonial-mobile {
  display: none;
}
.testimonial-content {
  background: var(--grey-background);
  padding: 50px;
  margin-top: 170px;
}
.testimonial-card {
  background: var(--lighter-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 22px;
  height: 225px;
  border: 2px solid var(--darker-main);
  margin-top: 50px;
}
.testimonial-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--darker-main);
  padding: 10px;
  background: var(--lighter-gray);
  margin-top: -50px;
}
.test-description {
  padding: 0 10px;
  margin: 10px 0 !important;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-name {
  position: relative;
  color: var(--main-color);
}

.testimonial-name::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--main-color);
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-rates {
  display: flex;
  padding-left: 0px !important;
  margin-top: 5px;
}
.testimonial-rates i {
  color: gold;
}

/* faqs section */
.faqs-section {
  padding: 50px 0;
}
.faq-page {
  padding: 120px 0;
}
.faq-page img {
  width: 95%;
}
.maharat-faq .accordion-button {
  background-color: var(--lighter-gray);
  border: 2px solid var(--darker-main);
  font-weight: bold;
  text-align: right;
  position: relative;
  border-radius: 10px 10px 10px 10px;
  margin-bottom: -10px;
  transition: background-color 0.3s ease-in-out;
}

.maharat-faq .accordion-button::after {
  margin-left: auto;
}

.maharat-faq .accordion-item {
  border: none;
  margin-bottom: 20px;
  background-color: var(--gray-background);
  padding: 10px 0px 10px 0;
  color: var(--main-color);
}
.accordion-body {
  padding: 15px 20px !important;
  background-color: var(--white) !important;
  margin: 0px;
  border-radius: 0 0 10px 10px;
  border: 2px solid var(--darker-main);
  border-top: 0;
  transition: border 0.5s ease-in-out;
}
.faq-page .main-title {
  color: var(--darker-main);
}
.accordion-button:focus {
  box-shadow: none !important;
}
.maharat-faq button:not(.collapsed) {
  box-shadow: none !important;
  background-color: var(--white) !important;
  color: var(--darker-main) !important;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  margin: 0;
  transition: border 0.3s ease-in-out;
}
.maharat-faq .accordion-button::after {
  display: none;
}
.maharat-faq .accordion-button .fa {
  position: absolute;
  left: 1rem;
  transition: transform 0.3s ease;
  color: var(--main-color);
}
.maharat-faq .accordion-button:not(.collapsed) .fa {
  transform: rotate(-90deg);
}
.maharat-faq .accordion-header button {
  color: var(--titles);
  font-weight: bold;
  font-size: 18px;
}

.maharat-mobile-faq {
  display: none;
}

/* footer */
.site-footer {
  color: var(--white);
  padding-top: 56px;
  background: url("/images/backgrounds/footer.jpg") no-repeat;
  background-size: cover;
}

.footer-brand img {
  width: 15rem;
}

/* Titles + labels */
.footer-title {
  color: #d7b183; /* gold accent from screenshot */
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.footer-title.accent {
  margin-bottom: 14px;
}

.footer-label {
  font-weight: 700;
  margin: 18px 0 6px;
  font-size: 1rem;
}

/* Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin: 10px 0;
}
.footer-list a {
  color: #dfeeea;
  text-decoration: none;
  font-weight: 500;
}
.footer-list a:hover {
  color: #ffffff;
}

.footer-desc {
  margin: 10px 0 10px;
  max-width: 520px;
  line-height: 1.8;
}

/* Contact bits */
.footer-link {
  color: #b67b4b;
  text-decoration: none;
}
.footer-link:hover {
  color: #ffffff;
}
.footer-phone {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
}

/* Big phone left column */
.footer-big-phone {
  display: block;
  color: #e9f7f4;
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Social icons row */
.footer-social {
  display: flex;
  gap: 12px;
  margin: 8px 0 18px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  background: #e9f0ee;
  color: #0f6a5f;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}
.footer-social a:hover {
  transform: translateY(-2px);
}

/* CTA button */
.footer-cta {
  display: inline-block;
  background: #f4efe8;
  color: #0f6a5f;
  border: 2px solid #caa276;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  width: 80%;
  text-align: center;
  font-size: 25px;
}
.footer-cta:hover {
  background: #fff;
}

/* Bottom copper bar */
.footer-bottom {
  position: relative;
  margin-top: 36px;
  background: linear-gradient(180deg, #a96e41 0%, #b67b4b 55%, #966338 100%);
  color: #fff;
  padding: 20px;
  z-index: 1;
}
.footer-bottom small {
  letter-spacing: 0.5px;
}

/* Responsive tweaks */
/* ========== Mobile Footer ========== */
.site-footer-mobile {
  position: relative;
  background: #0f6a5f;
  color: #e9f7f4;
  background: url("/images/backgrounds/footer.jpg") no-repeat;
  background-size: cover;
  padding: 18px 0 0;
  overflow: hidden;
}

.m-footer-title {
  color: #d7b183;
  font-weight: 800;
  font-family: "Tajawal", sans-serif;
  font-size: 1.05rem;
  margin: 8px 0 4px;
  line-height: 1;
}

/* Lists */
.m-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m-footer-list li {
  margin: 0.35rem 0;
}
.m-footer-list a {
  color: #e9f7f4;
  text-decoration: none;
  font-weight: 500;
}
.m-footer-list a:hover {
  color: #fff;
}

/* Info blocks */
.m-footer-label {
  color: #d7b183;
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.m-footer-text {
  margin: 0;
  line-height: 1.8;
}
.m-footer-link {
  color: #e9f7f4;
  text-decoration: none;
}
.m-footer-link:hover {
  color: #fff;
}

/* CTA + phone + socials */
.m-footer-cta {
  display: inline-block;
  background: #f4efe8;
  color: #0f6a5f;
  border: 2px solid #caa276;
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  width: 80%;
  text-align: center;
}
.m-footer-big-phone {
  display: block;
  color: #e9f7f4;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

/* Bottom copper bar */
.m-footer-bottom {
  background: linear-gradient(180deg, #a96e41 0%, #b67b4b 55%, #966338 100%);
  color: #fff;
  padding: 10px 0 8px;
  margin-top: 18px;
}

/* Small refinements for very narrow screens */
@media (max-width: 360px) {
  .m-footer-title {
    font-size: 1rem;
  }
  .m-footer-big-phone {
    letter-spacing: 1px;
  }
  .m-footer-social a {
    width: 34px;
    height: 34px;
  }
}

/* ************************** about page ************************** */
/* ===== About (RTL) ===== */
.about-maharat {
  padding: 60px 0 20px;
}

.about-content .about-eyebrow {
  color: var(--darker-main); /* gold accent */
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 30px;
}

.about-content .about-title {
  color: var(--main-color); /* deep green */
  font-weight: bold;
  font-size: clamp(32px, 3vw, 34px);
  margin-bottom: 40px;
}

.about-content p {
  margin-bottom: 34px !important;
  line-height: 1.9;
  font-size: 22px;
  color: var(--text);
}

/* Feature list */
.about-features {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

/* Card */
.am-card {
  position: relative;
  background: #efefef;
  border: 2px solid var(--darker-main);
  border-radius: 25px;
  padding: 35px 30px;
  width: 80%;
  text-align: center;
  margin-bottom: 40px;
}

.am-image {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  /* border: 1px solid var(--white); */
  border-radius: 50%;
  background-color: var(--white);
}

.am-image img {
  width: 85px;
}

/* Card text */
.am-body h3 {
  margin: 6px 0 6px;
  color: var(--darker-main);
  font-weight: bold;
  font-size: 22px;
}
.am-body p {
  margin: 0;
  color: #6a6f72;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* Responsive spacing */
@media (max-width: 991.98px) {
  .about-maharat {
    padding-top: 24px;
  }
  .about-features {
    gap: 18px;
  }
}
.about-service {
  background: var(--grey-background);
  padding: 10px;
  margin: 50px 0;
}

.about-service-content {
  padding: 20px 0;
}

.about-service-content h5 {
  color: var(--main-color);
  font-size: 26px;
  letter-spacing: 2px;
}
.about-service-content img {
  width: 40px;
  margin-left: 5px;
}
.about-service-img img {
  transform: scale(1.3);
}

/*  ************************** employment page ************************** */
.employments-cv {
  padding: 50px 0;
}
.employments-cv .main-title {
  color: var(--darker-main);
}
.filter-title {
  color: var(--main-color);
  font-weight: 600;
}
.cv-filter {
  padding: 20px 0;
  max-width: 300px;
  border-radius: 5px;
}
.mobile-filter,
.mobile-employments {
  display: none;
}
.cv-filter label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--main-color);
}
.cv-filter h3 {
  position: relative;
  color: var(--darker-main);
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
}
.cv-filter h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 40px;
  height: 5px;
  border-radius: 12px;
  background-color: var(--darker-main);
}
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  margin-left: 10px;
  outline: none;
  cursor: pointer;
  position: relative;
}

input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.confirm-btn {
  background-color: var(--lighter-gray);
  color: var(--main-color);
  font-weight: 600;
  border: 2px solid var(--darker-main);
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 16px;
}

.confirm-btn:hover {
  background-color: var(--main-color);
}
.employment-card {
  background-color: var(--grey-background);
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  color: var(--titles);
  border: 2px solid var(--darker-main);
  border-radius: 22px;
  margin-bottom: 30px;
}
.employment-main-details {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.employment-card span {
  color: var(--main-color);
  font-weight: bold;
}
.employment-main-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.employment-main-info img {
  width: 200px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--darker-main);
}
.employment-details .info {
  margin: 10px 0 !important;
}
.employment-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.employment-buttons .main-btn {
  width: 140px;
  background-color: transparent;
  color: var(--main-color);
  font-weight: 600;
  border: 2px solid var(--darker-main);
}

.modal-header {
  display: flex;
  justify-content: space-between;
}
.modal {
  border: none;
  background: transparent;
  position: relative;
  padding: 50px 0;
}

.employments-cv .modal-body {
  padding: 5px 25px !important;
  background: url("/images/backgrounds/cv-bg.jpg") no-repeat;
  padding-top: 50px !important;
}
.modal-content {
  position: relative;
}
.modal-content .close-modal {
  position: absolute;
  top: -31px;
  left: 20px;
  z-index: 1;
  background: transparent;
  border: none;
}

.modal .fa-times {
  background: var(--darker-main);
  color: #fff !important;
  font-size: 50px;
  padding: 5px 20px;
  border-radius: 50%;
  cursor: pointer;
}
.modal-logo {
  width: 180px;
  margin-bottom: 10px;
}

.modal-body .modal-section span {
  display: block;
  background: var(--main-color);
  width: 50% !important;
  color: #fff;
  padding: 5px;
  font-weight: normal;
  margin-left: 10px;
}
.modal-main-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
.modal-main-info p {
  font-weight: bold;
  color: var(--main-color);
}
.modal-main-info p span {
  font-weight: normal;
  color: #000;
}
.modal-section {
  text-align: center;
}

.modal-details {
  display: flex;
  gap: 10px;
}
.right-modal {
  width: 50%;
}
.left-modal {
  width: 50%;
}
.modal-details .info-value {
  width: 50px;
}
.modal-section h6 {
  width: 40%;
  background: linear-gradient(180deg, #a96e41 0%, #b67b4b 55%, #966338 100%);
  color: var(--white);
  margin-bottom: 0;
  margin-top: 15px;
  border-radius: 12px 12px 0 0;
  padding: 10px;
  position: relative;
  text-align: right;
}
.info-row {
  display: flex;
  gap: 5px;
  margin-bottom: 3px;
}
.info-label {
  border: 1px solid var(--darker-main);
  color: var(--text);
  padding: 10px;
  width: 150px;
  text-align: right;
  font-weight: bold;
  margin: 0;
  font-size: 14px;
  border-radius: 8px;
}
.info-value {
  border: 1px solid var(--darker-main);
  border-radius: 8px;
  background-color: #eaeaea;
  padding: 10px;
  width: 200px;
  font-size: 13px;
  text-align: center;
  margin: 0;
  color: var(--main-color);
  font-weight: 600;
}
.modal-section .profile-img {
  width: 210px;
  object-fit: cover;
  object-position: center;
  height: 210px;
  border-radius: 50%;
}
.modal-section .full-img {
  height: 400px;
  width: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin-top: 20px;
}

.modal-section i {
  background-color: transparent;
  color: var(--main-color);
  font-size: 20px;
  cursor: auto;
  padding: 0;
}
.modal-footer {
  justify-content: center !important;
  padding: 15px 50px !important;
  flex-direction: column;
  margin: auto;
  border-top: 20px solid var(--titles) !important;
}
.modal-footer p {
  color: red;
  width: 80%;
  text-align: center;
  margin-bottom: 12px !important;
}
/* ************************** career page ************************** */
.career-section {
  padding: 80px 0;
}
.career-section .contact-title {
  margin-bottom: 30px;
}
.career-box {
  background-color: var(--lighter-gray);
  padding: 40px 20px;
  border-radius: 25px;
  margin: auto;
  border: 2px solid var(--darker-main);
}
.form-control:focus {
  box-shadow: none !important;
  border: 1px solid var(--main-color) !important;
}
.career-box input,
.career-box textarea {
  background-color: var(--white);
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  resize: none;
}
.career-box label {
  font-weight: bold;
  margin-top: 10px;
  color: var(--titles);
  margin-bottom: 8px;
}
.career-box .btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}
.career-box .main-btn {
  width: 180px;
  height: 60px;
}
.career-box .main-btn img {
  width: 30%;
}
.career-form-img {
  margin-top: 30px;
}
.career-form-img img {
  transform: scale(1.3);
}

.career-modal-content {
  position: relative;
  border-radius: 25px !important;
  margin-top: 150px;
}

.custom-close {
  position: absolute;
  top: -30px;
  left: 10px;
  background: none;
  border: none;
  color: #fff !important;
  z-index: 1;
}
.modal-body.career-modal {
  padding: 90px 30px 40px;
}
.career-modal img {
  width: 250px;
  height: auto;
}
.career-modal-right img {
  width: 25px;
  margin-left: 5px;
}
.career-modal-right label {
  color: var(--main-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.career-modal-right input {
  width: 100%;
  padding: 8px;
  border: 2px solid var(--darker-main);
  border-radius: 10px;
  margin-bottom: 30px;
}
.careerModal-img img {
  transform: scale(1.3);
}

/* Track Button */
.track-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--main-color) !important;
  color: var(--white) !important;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px !important;
  cursor: pointer;
}

.track-btn:hover {
  background-color: #e66f00;
}

/* ************************** contact page ************************** */

/* Contact Content */
.contact-us {
  padding-bottom: 150px;
  padding-top: 50px;
}
.contact-us .contact-title {
  margin-bottom: 20px;
}
.contact-box {
  background-color: var(--lighter-gray);
  border: 2px solid var(--darker-main);
  padding: 40px 20px;
  padding-right: 40px;
  border-radius: 25px;
  margin: auto;
  position: relative;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  background-color: #fff;
  resize: none;
  border-radius: 5px;
}
.contact-box label {
  font-weight: bold;
  margin-top: 10px;
  color: var(--titles);
  margin-bottom: 8px;
}
.contact-box .btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}
.contact-box .main-btn {
  margin-top: 30px;
  padding: 10px 40px;
}
.contact-img {
  position: absolute;
  top: -188px;
  right: -202px;
}
.contact-img img {
  width: 400px;
}

/* partners page */
.partners-content {
  padding: 40px 0;
}
.labour-services-box {
  background: var(--lighter-gray);
  border: 2px solid var(--darker-main);
  border-radius: 12px;
  padding: 60px 40px;
  margin-bottom: 40px;
}
.labour-services-box p {
  color: var(--text);
  font-size: 22px;
}

.partner-page-img img {
  width: 85%;
}

/* ************************** tablet ******************************** */
/* @media (min-width: 1024px) and (max-width: 1180px) {
} */
/* ************************** mobile ******************************** */
@media (max-width: 820px) {
  .container {
    padding: 8px 29px;
  }
  .desktop-none {
    display: block;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .call-us-icons img {
    width: 40px;
  }
  .call-us-icons {
    bottom: 15%;
  }
  .breadcrumb-title {
    font-size: 30px;
  }
  .breadcrumb-buttons {
    gap: 10px;
  }
  .breadcrumb-buttons .main-btn {
    padding: 10px 5px;
  }
  .breadcrumb-buttons .main-btn a {
    width: 170px;
  }
  .am-card {
    width: 100%;
  }

  .hero-content p {
    width: auto !important;
  }
  .main-btn {
    padding: 10px 25px;
    border-radius: 12px;
    outline: none;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-btn a {
    font-size: 15px;
  }

  .modal-body .career-modal {
    padding: 0 !important;
  }
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
  }

  .mobile-header .logo {
    height: 65px;
  }

  /* Dropdown styles */
  .dropdown-menu-mobile {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    color: var(--titles);
    margin-top: 0 !important;
  }

  .dropdown-menu-mobile li {
    padding: 0px;
    margin: 0;
  }

  .dropdown-menu-mobile li a {
    padding: 0px;
    display: block;
    color: var(--titles);
    margin: 0;
  }

  .hamburger-icon {
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
  }

  /* Sidebar Menu */
  .side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding-top: 20px;
    transition: left 0.3s ease;
    z-index: 10;
    display: block;
  }

  .side-menu.active {
    left: 0;
  }

  .side-menu ul {
    list-style: none;
    padding: 0 20px;
    margin-top: 80px;
  }

  .side-menu li {
    margin: 20px 0;
    text-align: center;
  }

  .side-menu a {
    text-decoration: none;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
  }
  .mobile-header .fa-times {
    z-index: 15;
  }
  .mobile-header .fa-times {
    z-index: 15;
    color: var(--main-color) !important;
  }
  .breadcrumb-section {
    background-position: right;
    background-size: cover;
  }
  /* hero-section */
  .hero-slide-content p {
    font-size: 16px;
    padding: 0 20px;
  }
  .hero-swiper-button-prev,
  .hero-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 15px;
    transition: 0.3s ease !important;
  }
  .hero-section .main-btn {
    padding: 10px 5px !important;
  }
  .hero-swiper-button-prev {
    left: 20px;
  }

  .hero-swiper-button-next {
    right: 20px;
  }

  .hero-content h2 {
    font-size: 43px;
  }

  /* Service Section */
  .service-section {
    padding-top: 10px;
  }

  .service-content {
    padding: 10px;
    height: 200px;
  }

  .service-title {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 5;
    display: block;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .banner-content {
    top: 55%;
  }
  /* home page about section */
  .about-content h2 {
    font-size: 20px;
  }
  .about-content p {
    font-size: 16px;
  }
  /* about page mobile */
  .about-service-content {
    z-index: 10;
    position: relative;
  }
  .about-service-img {
    position: relative;
    z-index: 2;
  }
  .about-service-img img {
    transform: scale(2.2);
    margin-bottom: -50px;
  }
  .about-service-content h5 {
    font-size: 16px;
  }
  /* inquiries section */
  .inquiries-desktop {
    display: none !important;
  }
  .inquiries-mobile {
    display: block;
  }
  .inquiry-accordion .accordion-item {
    border: none;
    background: transparent;
  }
  .career-content {
    padding: 50px 20px;
  }

  /* Avatar overlapping the top edge */
  .cc-avatar {
    top: -35%;
    width: 120px;
    height: 120px;
  }
  .cc-avatar img {
    width: 100px;
    height: 100px;
  }

  .inquiry-accordion .accordion-button {
    background-color: white;
    border: 1px solid var(--main-color);
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 12px !important;
    overflow: hidden;
  }

  .inquiry-accordion .accordion-button::after {
    display: none;
  }
  .accordion-button:not(.collapsed) {
    box-shadow: none !important;
    background-color: #fff !important;
    color: var(--darker-main) !important;
  }

  .inquiry-accordion .accordion-body {
    background-color: white !important;
    margin-top: 15px;
    padding-top: -30px !important;
    border-radius: 12px !important;
    padding: 20px;
    overflow: hidden;
    border-top: 2px solid var(--darker-main);
  }

  .inquiries-mobile .fa {
    position: absolute;
    left: 1px;
    padding: 10px;
    color: var(--darker-main);
    border-radius: 50%;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  .inquiries-mobile .accordion-button:not(.collapsed) .fa {
    transform: rotate(0deg);
  }
  /* partners */
  .partners-desktop {
    display: none !important;
  }

  /* Styling for mobile partners section */
  .mobile-partners,
  .mobile-services,
  .mobile-recruitment {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  .partners-section {
    padding: 50px 0;
  }
  .partners-section .section-title {
    margin-bottom: -20px;
  }
  .mobile-partners-wrapper .mobile-partners-slide,
  .mobile-services-wrapper .mobile-services-slide {
    flex: 1 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .mobile-partners-slide img {
    max-width: 90%;
    height: auto;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none !important;
  }

  .mobile-partners-next,
  .mobile-services-next,
  .mobile-partners-prev,
  .mobile-services-prev,
  .testimonial-prev,
  .testimonial-next,
  .callcenter-nav {
    display: block;
    position: absolute;
    top: 90%;
    z-index: 10 !important;
  }
  .testimonial-prev img,
  .testimonial-next img,
  .mobile-partners-next img,
  .mobile-partners-prev img,
  .mobile-partners-next img,
  .mobile-services-next img,
  .mobile-partners-prev img,
  .callcenter-prev img,
  .callcenter-next img {
    width: 40px;
  }

  .desktop-services {
    display: none;
  }

  .recruitment-mobile {
    display: none !important;
  }

  .recruitment-country-content {
    height: 200px;
    width: 140px;
    margin: 75px 0 40px;
  }
  .recruitment-page .recruitment-country-content {
    height: 250px;
    width: 180px;
    padding: 10px 5px;
    margin: 10px 0;
  }
  .country-info {
    font-size: 12px;
  }
  .recruitment-country-content .main-btn {
    padding: 10px 18px;
    font-size: 11px;
  }
  .recruitment-page .recruitment-country-content .main-btn {
    padding: 10px 30px;
  }
  .mobile-none {
    display: none;
  }
  .recruitment-country-card {
    margin-top: -65px;
  }
  .recruitment-countries-swiper {
    width: 100% !important;
  }

  .recruitment-country-content .country-flag {
    width: 80px;
    height: 80px;
  }
  .recruitment-country-content .country-name {
    font-size: 16px;
  }
  .recruitment-button-prev,
  .recruitment-button-next {
    display: flex !important;
  }
  .recruitment-button-prev,
  .recruitment-button-next {
    position: absolute;
    top: 92%;
    transform: translateY(-35%);
    width: 35px;
    height: 35px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    border: none;
    background-color: transparent;
  }

  .recruitment-button-prev {
    left: 40%;
  }
  .recruitment-button-next {
    right: 40%;
  }
  .footer-social {
    margin: 0;
  }
  .contact-section .row {
    flex-direction: column-reverse;
  }

  /* faq page*/

  .faq-page .maharat-faq .accordion-header button {
    height: 80px;
    padding-left: 30px;
    line-height: 25px;
  }

  /* ******************* employment page ******************************** */
  .desktop-employment {
    display: none !important;
  }

  .mobile-filter,
  .mobile-employments {
    display: block;
  }
  .mobile-employments {
    padding: 0 5px;
  }
  .mobile-filter h4 {
    color: var(--main-color);
    font-weight: bold;
    font-size: 25px;
  }
  .filter-content {
    border: 1px solid var(--darker-main);
    background: var(--lighter-gray);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    padding: 15px 20px;
  }
  .filter-content h5 {
    color: var(--main-color);
    margin-bottom: 0px;
  }
  .filter-content img {
    width: 30px;
  }
  .cv-filter {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden */
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    z-index: 1000;
    overflow-y: auto;
  }
  .cv-filter.active {
    right: 0;
  }

  .overlay-filter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .overlay-filter.active {
    display: block;
  }

  .employments-nationality {
    position: relative;
  }

  .filter-close {
    position: absolute;
    left: 0;
    top: 0;
    text-align: end;
  }
  .filter-close img {
    width: 40%;
  }

  .employment-card {
    margin-top: 80px;
    position: relative;
    padding: 70px 30px 30px;
  }
  .employment-header {
    display: flex;
    justify-content: space-around;
    align-items: end;
    margin-bottom: 20px;
  }
  .employment-card h5 {
    background: #fff;
    width: 100%;
  }
  .employment-card span {
    padding: 5px;
    color: var(--text);
    width: 70px !important;
    display: inline-block;
    background: rgb(226, 223, 223);
    margin-left: 5px;
  }
  .employment-card p {
    background-color: #fff;
    font-size: 12px;
  }
  .employment-img {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    border: 1px solid var(--darker-main);
    right: 3%;
    top: -15%;
  }
  .show-image-btn {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 80px;
  }

  .image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .pop-close {
    position: absolute;
    top: -30px;
    left: 0;
  }

  .pop-close img {
    width: 50px;
  }

  .employment-buttons .main-btn {
    padding: 10px 0;
    border: 2px solid var(--darker-main);
    margin: 10px 0;
  }
  .employments-cv .modal-body {
    background: var(--grey-background);
  }
  /* Popup Content */
  .popup-content {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .popup-content img {
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
  }

  .modal-body.career-modal {
    padding: 50px 20px !important;
  }

  .mobile-modal .modal-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .mobile-modal .modal-img .full-img {
    height: 110px;
    object-fit: contain;
    width: 140px;
    height: 140px;
    border: 2px solid var(--darker-main);
    border-radius: 50%;
  }
  .mobile-modal .modal-img .profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 2px solid var(--darker-main);
    border-radius: 50%;
  }
  .modal-section {
    margin: 20px 0;
  }
  .modal-section i {
    font-size: 15px;
  }

  .modal-footer {
    padding: 15px 0 !important;
  }

  /* testimonials */
  .desktop-testimonial {
    display: none;
  }
  .testimonial-mobile {
    display: block;
    padding: 20px 0;
  }
  .testimonial-wrapper {
    padding: 80px 20px !important;
  }

  .testimonial-card img {
    width: 90px;
    height: 90px;
  }

  .testimonial-card {
    height: 190px;
    text-align: center;
  }

  .testimonial-prev,
  .testimonial-next {
    top: 93% !important;
  }

  .mobile-partners-next,
  .mobile-partners-prev {
    top: 90% !important;
  }

  .testimonial-next,
  .mobile-partners-next,
  .callcenter-next {
    left: 145px !important;
  }

  .testimonial-prev,
  .mobile-partners-prev,
  .callcenter-prev {
    right: 145px !important;
  }

  /* career page */
  .career-box {
    width: 100%;
  }
  .careerModal-img {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  .career-form-img {
    margin-bottom: 20px;
  }
  .career-form-img img {
    transform: scale(1);
  }

  /* partners page */
  .partners-page.about-maharat .row {
    flex-direction: column-reverse !important;
  }
  .labour-services-box {
    text-align: center;
  }

  .labour-services-box img {
    margin-bottom: 20px;
  }

  /* *************************** contact page ********************************** */
  .contact-us .contact-title {
    top: 15%;
    left: 0%;
    padding: 0 20px;
  }
  .contact-box {
    padding-right: 20px;
    width: 100%;
    margin-bottom: 30px;
  }
  .contact-img {
    display: none;
  }

  /* faq */
  .faq-page .wosata-faq {
    width: 90%;
  }
  .wosata-faq .accordion-header button {
    font-size: 15px;
    padding-left: 30px;
  }
  .wosata-faq .wosata-faq-img {
    top: 0;
    right: 80px !important;
  }
  .wosata-faq-img img {
    width: 300px;
  }
  /* *************************** footer ********************************** */
  .mobile-footer {
    display: block;
  }
  .mobile-recruitment {
    display: block;
  }
  .site-footer {
    display: none;
  }
}
