* {
  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 {
  --light-green: #61a0a1;
  --orange: #f57b00;
  --grey-background: #e6e7e8;
  --titles: #325454;
}

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(--light-green) !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 !important;
  cursor: pointer;
}

.dropdown-menu a:hover {
  background-color: var(--orange);
  color: #000;
}

/* Show dropdown menu on hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

.main-btn {
  background: var(--orange);
  padding: 10px 20px;
  border-radius: 42px;
  outline: none;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.main-btn:hover {
  background-color: var(--titles);
  transition: 0.3s;
  border: 1px solid var(--light-green);
}

.main-btn a {
  color: #fff;
  font-size: 25px;
}
.main-title {
  color: var(--orange);
  font-weight: bold;
  font-family: jf-flat-bold;
}
.main-para {
  color: var(--titles);
  font-weight: bold;
  font-size: 18px;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

/* 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(--orange);
  color: #fff;
  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-homepage {
  background: #fff;
}
.navbar-brand img {
  width: 108px;
}
.transparent-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 12;
  padding: 10px 0;
}
.transparent-header .navbar-nav .nav-link {
  color: #fff;
}
.transparent-header .nav-link:focus,
.transparent-header .nav-link:hover {
  color: var(--light-green) !important;
}
.transparent-header .navbar-nav .nav-link::after {
  background-color: var(--light-green);
}
.nav-link:focus,
.nav-link:hover {
  color: var(--titles) !important;
}
.navbar-nav .nav-link {
  position: relative;
  color: var(--light-green);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  margin: 0 30px;
  font-size: 20px;
  overflow: hidden;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--titles);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.mobile-header,
.side-menu {
  display: none;
}

/* breadcrumb section */
.breadcrumb-section {
  height: 45vh;
  position: relative;
}
.breadcrumb-section img {
  display: none;
}

.about-breadcrumb {
  background: url("/assets/images/breadcrumb/aboutPage.jpg");
  background-size: cover;
}
.contact-breadcrumb {
  background: url("/assets/images/banner/banner2.jpeg");
  background-size: cover;
}
.recruitment-breadcrumb {
  background: url("/assets/images/breadcrumb/recruitmentCountries.jpg");
  background-size: cover;
}
.career-breadcrumb {
  background: url("/assets/images/breadcrumb/careerPage.jpg");
  background-size: cover;
}
.breadcrumb-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -30%);
}
.breadcrumb-title {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 40px;
}
.breadcrumb-buttons {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.career-breadcrumb .breadcrumb-buttons .main-btn {
  width: 250px;
}
.breadcrumb-buttons a {
  font-size: 22px;
  width: 200px;
}

/* Custom Modal Styling */
.career-modal-content {
  position: relative;
  border-radius: 25px !important;
  margin-top: 270px;
}

/* Close Button (Top Left) */
.custom-close {
  position: absolute;
  top: -30px;
  left: 10px;
  background: none;
  border: none;
  color: #fff !important;
  z-index: 1;
}
.career-modal-content .custom-close i {
  font-size: 40px;
  padding: 5px 15px;
  border: 1px solid #fff;
}

/* Modal Body */
.modal-body.career-modal {
  display: flex;
  gap: 20px;
  padding: 70px 50px !important;
  border-radius: 25px;
}

/* Left Side (Image) */
.career-modal img {
  width: 350px;
  height: auto;
}
.career-modal-right img {
  width: 25px;
  margin-left: 0px;
}
.career-modal-right label {
  color: var(--titles);
  margin-bottom: 10px;
  display: flex;
  font-weight: 600;
}
.career-modal-right input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Track Button */
.track-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--orange) !important;
  border: none;
  color: white !important;
  font-size: 16px;
  border-radius: 10px !important;
  cursor: pointer;
}

.track-btn:hover {
  background-color: #e66f00;
}

/* hero section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper-container {
  width: 100%;
  height: 65vh;
}

.hero-swiper-wrapper {
  display: flex;
}

.hero-slide {
  flex: 1;
  min-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.hero-slide:nth-child(1) {
  background-image: url("/assets/images/breadcrumb/homePage.jpg");
}

.hero-slide:nth-child(2) {
  background-image: url("/assets/images/breadcrumb/homePage.jpg");
}

.hero-slide:nth-child(3) {
  background-image: url("/assets/images/breadcrumb/homePage.jpg");
}

.hero-slide {
  background-size: cover;
  background-position: center;
}

.hero-slide-content {
  text-align: center;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-slide-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero-slide-content p {
  font-size: 22px;
  margin-bottom: 20px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 25px;
}
.hero-buttons .main-btn {
  width: 180px;
}

.hero-swiper-button-prev,
.hero-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--orange);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 28px;
  transition: 0.3s ease !important;
}

.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
  background-color: var(--titles);
  transition: 0.3s ease !important;
}

.hero-swiper-button-prev {
  left: 150px;
}

.hero-swiper-button-next {
  right: 150px;
}

/* about section */
.about-section {
  position: relative;
}
.about-section::after {
  content: "";
  position: absolute;
  height: 150px;
  width: 100%;
  background-color: var(--grey-background);
  top: 50%;
}
.about-content {
  z-index: 2;
  color: var(--light-green);
}
.about-list li {
  color: var(--titles);
  display: flex;
  align-items: center;
  gap: 5px;
}
.about-list i {
  font-weight: bold;
  font-size: 18px;
}

/* service section */
/* Service Section */
.service-card {
  padding-top: 10px;
  padding-bottom: 20px;
  background: var(--grey-background);
  text-align: center;
  position: relative;
  margin-top: 70px;
}

.service-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-photo.cv,
.service-photo.career {
  width: 400px;
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-top: -60px;
}
.service-photo.cv {
  background: url("/assets/images/backgrounds/cv-bg.png") no-repeat center
    center;
  background-size: cover;
}
.service-photo.career {
  background: url("/assets/images/backgrounds/career-bg.png") no-repeat center
    center;
  background-size: cover;
}

.service-icon img {
  width: 50%;
  height: auto;
}

.service-title {
  margin-top: 20px;
  color: var(--titles);
  font-size: 25px;
  font-weight: bold;
  font-family: jf-flat-bold;
}

.row {
  position: relative;
  z-index: 1;
}

/* banner section */
.banner-section {
  position: relative;
  background-image: url("/assets/images/backgrounds/home-banner.webp");
  background-size: cover;
  background-position: center;
  height: 50vh;
}
.banner-content {
  position: absolute;
  top: 75%;
  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;
}

.career-content {
  background-color: var(--light-green);
  padding: 50px;
}
.step {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--orange);
  padding: 10px 15px;
  margin-bottom: 15px;
  position: relative;
  width: 95%;
}
.career-info h4 {
  margin-bottom: 25px;
  color: var(--titles);
}
.step p {
  padding-right: 30px;
}
.step a {
  color: var(--orange);
  font-weight: bold;
}
.step-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  outline: none !important;
  padding: 0 !important;
}
.step-icon img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* recruitment-countries */
.recruitment-mobile,
.recruitment-button-prev,
.recruitment-button-next {
  display: none !important;
}
.recruitment-countries-section {
  position: relative;
  padding: 80px 0;
  background: url("/assets/images/backgrounds/countries.png");
}

.recruitment-countries-swiper {
  width: 100%;
}

.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-top: 70px;
  padding: 20px;
  background-color: #6cb6b6;
  position: relative;
  height: 250px;
  width: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 15px;
}
.recruitment-page .recruitment-country-content {
  width: 300px;
}
.recruitment-country-content .country-flag {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 1px solid var(--orange);
}

.recruitment-page .country-flag {
  width: 130px;
  height: 130px;
}

.recruitment-country-content .country-name {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
  margin-bottom: 20px;
}

.recruitment-country-content .main-btn {
  padding: 12px 35px;
  border-radius: 12px;
  font-size: 18px;
}

/* partners section */
.partners-section {
  text-align: center;
  padding: 120px 0;
}

.partners-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.partners-desktop img {
  max-width: 200px;
  height: auto;
}

.mobile-partners,
.mobile-services {
  display: none;
}

/* map section */
.contact-section {
  overflow-x: hidden;
  background-color: var(--light-green);
  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: 40px;
}
.info-title {
  display: flex;
}
.email-info {
  color: var(--titles);
  font-weight: bold;
  margin-bottom: 20px !important;
}
.map-content i {
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  font-size: 15px;
  margin-left: 5px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-content img {
  width: 30px;
  margin-left: 5px;
}
.map-content p {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px !important;
}

/* testimonial section */
.testimonial-section {
  padding: 50px 0;
}
.testimonial-mobile {
  display: none;
}
.testimonial-content {
  background: var(--grey-background);
  height: 260px;
  padding: 20px;
  margin-top: 80px;
}
.testimonial-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 22px;
  height: 225px;
}
.testimonial-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--titles);
  padding: 10px;
  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(--light-green);
}

.testimonial-name::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--light-green);
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-rates {
  display: flex;
  padding-left: 0px !important;
}
.testimonial-rates i {
  color: gold;
}

/* faqs section */
.faqs-section {
  padding: 50px 0;
}
.faq-page {
  padding: 50px 0;
}
.faq-page img {
  width: 95%;
}
.derayah-faq .accordion-button {
  background-color: var(--grey-background);
  border: none;
  font-weight: bold;
  text-align: right;
  position: relative;
  border-radius: 10px;
  margin-bottom: -10px;
  transition: background-color 0.3s ease-in-out;
}

.derayah-faq .accordion-button::after {
  margin-left: auto;
}

.derayah-faq .accordion-item {
  border: none;
  margin-bottom: 20px;
  background-color: var(--gray-background);
  padding: 10px 0px 10px 0;
}
.accordion-body {
  padding: 15px 20px !important;
  background-color: var(--grey-background) !important;
  margin-top: -2px;
  border-radius: 0 0 10px 10px;
}

.accordion-button:focus {
  box-shadow: none !important;
}
.derayah-faq button:not(.collapsed) {
  box-shadow: none !important;
  background-color: var(--grey-background) !important;
  color: var(--orange) !important;
}
.derayah-faq .accordion-button::after {
  display: none;
}
.derayah-faq .accordion-button .fa {
  position: absolute;
  left: 1rem;
  transition: transform 0.3s ease;
}
.derayah-faq .accordion-button:not(.collapsed) .fa {
  transform: rotate(180deg);
}
.derayah-faq .accordion-header button {
  color: var(--titles);
  font-weight: bold;
  font-size: 18px;
}
.derayah-mobile-faq {
  display: none;
}
/* footer */
.footer {
  padding-top: 80px;
  background: var(--light-green);
  color: #fff;
}

.mobile-footer {
  display: none;
}
.footer-title {
  font-weight: 500;
  font-size: 22px;
  color: var(--titles);
  position: relative;
  margin-bottom: 25px !important;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 40px;
  height: 5px;
  border-radius: 12px;
  background-color: var(--titles);
}

.footer li a {
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
.footer-logo {
  width: 170px;
  margin-right: 25px;
}
.footer-social-icons {
  display: flex;
  gap: 8px;
}
.footer-social-icons img {
  width: 50px;
}
.footer-number {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  margin-top: -10px;
  margin-bottom: 5px;
}

.footer-copyrights {
  background-color: var(--orange);
  text-align: center;
  padding: 20px 0;
}
.footer-copyrights p {
  font-size: 18px;
}

/* ************************** about page ************************** */
.about-derayah {
  padding: 50px 0;
}
.derayah-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.derayah-content p {
  color: var(--titles);
}
.derayah-services {
  padding: 50px 0;
}
.derayah-services-info {
  background: var(--light-green);
  border-radius: 45px;
  position: relative;
  padding: 60px 20px;
  height: 100%;
}
.derayah-services-info img {
  position: absolute;
  width: 130px;
  top: -80px;
}
.derayah-services-info h5 {
  color: #fff;
  font-weight: bold;
}

.derayah-services-info p {
  color: var(--titles);
}

.about-banner {
  background: url("/assets/images/backgrounds/banner.webp") no-repeat center
    center;
  background-size: cover;
  padding: 50px 0;
  color: #fff;
}
.about-banner .banner-logo {
  width: 110px;
  margin-bottom: 20px;
}
.about-banner .banner-info {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.about-banner .banner-info h6 {
  font-size: 22px;
  font-weight: 200 !important;
}
.about-banner .banner-info img {
  width: 25px;
}

/*  ************************** employment page ************************** */
.employments-cv {
  padding: 50px 0;
}
.cv-filter {
  margin-top: 50px;
  padding: 20px;
  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: #333;
}
.cv-filter h3 {
  position: relative;
  color: var(--titles);
  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(--titles);
}
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--titles);
  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(--titles);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.confirm-btn {
  background-color: var(--titles);
  color: #fff;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 16px;
}

.confirm-btn:hover {
  background-color: var(--light-green);
}
.employment-card {
  background-color: var(--grey-background);
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: var(--titles);
  border-radius: 22px;
  margin-bottom: 30px;
}
.employment-card .name {
  margin-bottom: 15px;
}
.employment-card span {
  color: var(--titles);
  font-weight: bold;
}
.employment-main-info {
  display: flex;
  justify-content: space-between;
}
.employments-cv .age {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
}
.employments-cv .age span {
  color: var(--orange);
  font-weight: bold;
}
.employment-main-info img {
  width: 120px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  height: 150px;
}
.employment-details .info {
  margin: 10px 0 !important;
}
.employment-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.employment-buttons button {
  width: 140px;
  border: 1px solid #fff;
}
.modal-header {
  display: flex;
  justify-content: space-between;
}
.modal {
  border: none;
  background: transparent;
  position: relative;
  padding: 50px 0;
}
.modal-content {
  position: relative;
}
.modal-content .close-modal {
  position: absolute;
  top: -31px;
  left: 20px;
  z-index: 1;
  background: transparent;
  border: none;
}

.modal i {
  background: var(--orange);
  color: #fff !important;
  font-size: 50px;
  padding: 5px 20px;
  border-radius: 50%;
  cursor: pointer;
}
.modal-logo {
  width: 80px;
  margin-bottom: 10px;
}
.employments-cv .modal-body {
  padding: 5px 20px !important;
  padding-top: 50px !important;
}
.modal-body .modal-section p {
  background: var(--grey-background);
  margin-bottom: 3px !important;
  display: flex;
  align-items: center;
  color: var(--titles);
  font-weight: bold;
}
.modal-body .modal-section span {
  display: block;
  background: var(--light-green);
  width: 50% !important;
  color: #fff;
  padding: 5px;
  font-weight: normal;
  margin-left: 10px;
}
.modal-main-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal-main-info p {
  font-weight: bold;
  color: var(--titles);
}
.modal-main-info p span {
  font-weight: normal;
  color: #000;
}
.modal-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  background-color: var(--titles);
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}
.modal-img .full-img {
  height: 400px;
  width: 350px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #000;
  border-radius: 12px;
}
.modal-img .profile-img {
  width: 110px;
  object-fit: cover;
  object-position: top;
  height: 110px;
  border-radius: 10px;
}
.modal-section h6 {
  width: 50%;
  background-color: var(--titles);
  color: #fff;
  margin-bottom: 0;
  margin-top: 15px;
  border-radius: 12px 12px 0 0;
  padding: 5px;
  text-align: center;
}
.modal-section i {
  background-color: transparent;
  color: var(--orange) !important;
  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-box {
  background-color: var(--grey-background);
  padding: 40px 20px;
  border-radius: 25px;
  width: 70%;
  margin: auto;
}
.form-control:focus {
  box-shadow: none !important;
  border: 1px solid var(--orange) !important;
}
.career-box input,
.career-box textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.career-box label {
  font-weight: bold;
  margin-top: 10px;
  color: var(--titles);
  margin-bottom: 8px;
}
.career-box .btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}
.career-box .main-btn {
  background-color: var(--orange);
  color: white !important;
  border: none;
  padding: 10px 5px;
  border-radius: 15px;
  width: 170px;
}
.career-box .main-btn:hover {
  background-color: var(--titles);
}
/* ************************** contact page ************************** */

/* Contact Content */
.contact-us {
  padding-bottom: 150px;
  padding-top: 250px;
  position: relative;
}
.contact-us .contact-title {
  top: 20%;
  left: 35%;
  position: absolute;
}
.contact-box {
  background-color: var(--grey-background);
  padding: 40px 20px;
  padding-right: 240px;
  border-radius: 25px;
  width: 70%;
  margin: auto;
  position: relative;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  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 {
  background-color: var(--orange);
  color: white !important;
  border: none;
  padding: 10px 5px;
  border-radius: 15px;
  width: 170px;
}
.contact-box .main-btn:hover {
  background-color: var(--titles);
}

.contact-img {
  position: absolute;
  top: -188px;
  right: -202px;
}
.contact-img img {
  width: 400px;
}

/* ************************** tablet ******************************** */
/* @media (min-width: 1024px) and (max-width: 1180px) {
} */
/* ************************** mobile ******************************** */
@media (max-width: 820px) {
  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;
  }
  .about-derayah {
    display: none;
  }
  .main-btn {
    background: var(--orange);
    padding: 10px 25px;
    border-radius: 12px;
    outline: none;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-btn a {
    color: #fff;
    font-size: 15px;
  }
  .hero-buttons .main-btn {
    width: 150px;
  }
  .modal-body .career-modal {
    padding: 0 !important;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header.transparent-header {
    background-color: transparent;
    box-shadow: none;
  }
  .mobile-header.transparent-header .hamburger-icon {
    color: #fff;
  }
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .mobile-header .logo {
    height: 40px;
  }

  /* 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;
  }

  .dropdown-menu-mobile li a:hover {
    background: var(--light-green);
  }

  .hamburger-icon {
    font-size: 24px;
    color: var(--light-green);
    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;
    margin-top: 80px;
  }

  .side-menu li {
    margin: 20px 0;
    text-align: center;
  }

  .side-menu a {
    text-decoration: none;
    color: var(--light-green);
    font-size: 18px;
    font-weight: 500;
  }
  .mobile-header .fa-times {
    z-index: 15;
  }
  .mobile-header .fa-times {
    z-index: 15;
    color: var(--light-green) !important;
  }

  /* 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;
  }

  .about-section {
    display: none;
  }
  .service-section {
    padding: 50px 0;
  }
  .service-photo.cv,
  .service-photo.career {
    height: 150px;
    width: 150px;
  }
  .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%;
  }

  /* inquiries section */
  .inquiries-desktop {
    display: none !important;
  }
  .inquiries-mobile {
    display: block;
  }
  .inquiry-accordion .accordion-item {
    border: none;
    background: transparent;
  }
  .career-content {
    padding: 50px 20px;
  }

  .inquiry-accordion .accordion-button {
    background-color: white;
    border: 1px solid #ff8100;
    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;
  }

  .inquiry-accordion .accordion-body {
    background-color: white !important;
    margin-top: 15px;
    padding-top: -30px !important;
    border-radius: 12px !important;
    padding: 20px;
    overflow: hidden;
  }

  .inquiries-mobile .fa {
    position: absolute;
    left: 10px;
    background: var(--orange);
    padding: 10px;
    color: #fff;
    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 {
    display: block;
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    background-color: var(--orange);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10 !important;
  }

  .banner-content {
    width: 80%;
    font-size: 20px;
  }

  .desktop-services,
  .desktop-recruitment {
    display: none;
  }

  .recruitment-mobile {
    display: block !important;
  }
  .recruitment-countries-swiper {
    width: 75% !important;
  }
  .recruitment-button-prev,
  .recruitment-button-next {
    display: flex !important;
  }
  .recruitment-button-prev,
  .recruitment-button-next {
    position: absolute;
    top: 65%;
    transform: translateY(-35%);
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
  }
  .recruitment-country-content .country-name {
    font-size: 16px;
  }
  .recruitment-button-prev {
    left: 10px;
  }
  .recruitment-button-next {
    right: 10px;
  }
  .recruitment-country-content,
  .recruitment-page .recruitment-country-content {
    width: 140px;
    height: 180px;
    padding: 20px 0;
  }
  .recruitment-country-content .country-flag,
  .recruitment-page .recruitment-country-content .country-flag {
    width: 95px;
    height: 95px;
  }
  .recruitment-country-content .main-btn {
    padding: 7px 25px;
  }

  .contact-section .row {
    flex-direction: column-reverse;
  }
  /* about page */
  .about-derayah {
    display: none;
  }
  .derayah-mobile-service {
    margin-bottom: 50px !important;
  }
  .derayah-services-info {
    padding: 45px 20px;
  }
  .derayah-services-info img {
    position: absolute;
    width: 90px;
    top: -45px;
  }
  /* ******************* employment page ******************************** */
  .desktop-employment {
    display: none !important;
  }

  .mobile-modal .modal-img {
    flex-direction: row;
    background: transparent;
    justify-content: center;
  }
  .mobile-modal .modal-img .full-img {
    height: 110px;
    object-fit: contain;
    width: 120px;
  }
  .mobile-modal .modal-img .profile-img {
    object-fit: cover;
    border: 1px solid var(--titles);
  }
  .mobile-filter,
  .mobile-employments {
    display: block;
  }
  .mobile-employments {
    padding: 0 5px;
  }
  .mobile-filter h4 {
    color: var(--orange);
    font-weight: bold;
    font-size: 30px;
  }
  .filter-content {
    background-color: var(--grey-background);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    padding: 10px;
  }
  .filter-content h5 {
    color: var(--titles);
  }
  .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;
  }
  .employment-buttons .main-btn {
    width: 120px;
    padding: 10px 0;
    border-radius: 30px;
    border: 2px solid #fff;
  }
  .employment-card {
    margin-top: 100px;
    padding-top: 150px;
  }
  .employment-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .employment-card h5 {
    background: #fff;
    width: 100%;
  }
  .employment-card span {
    background-color: rgb(199, 197, 197) !important;
    padding: 5px;
    width: 70px !important;
    display: inline-block;
  }
  .employment-card p {
    background-color: #fff;
    font-size: 13px;
  }
  .employment-img {
    width: 125px;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: -180px;
    right: 10px;
  }
  .show-image-btn {
    background: #ff8100;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: -70px;
    left: 40px;
  }

  .image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* 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;
  }

  /* testimonials */
  .desktop-testimonial {
    display: none;
  }
  .testimonial-mobile {
    display: block;
    padding: 20px 0;
  }
  .testimonial-wrapper {
    padding: 120px 20px !important;
    background: var(--grey-background);
  }

  .testimonial-card img {
    width: 90px;
    height: 90px;
  }

  .testimonial-card {
    height: 190px;
  }

  .testimonial-next,
  .testimonial-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: var(--orange);
    color: white !important;
    border-radius: 50%;
    font-size: 20px;
    top: 85% !important;
  }

  .mobile-partners-next,
  .mobile-partners-prev {
    top: 90% !important;
  }

  .testimonial-next,
  .mobile-partners-next {
    left: 145px !important;
  }

  .testimonial-prev,
  .mobile-partners-prev {
    right: 145px !important;
  }

  .testimonial-next:hover,
  .testimonial-prev:hover {
    background-color: var(--titles);
  }

  /* career page */
  .career-box {
    width: 100%;
  }

  /* *************************** contact page ********************************** */
  .contact-us .contact-title {
    top: 15%;
    left: 0%;
    padding: 0 20px;
  }
  .contact-box {
    padding-right: 20px;
    width: 100%;
  }
  .contact-img {
    display: none;
  }

  /* faq */
  .derayah-faq .accordion-header button {
    font-size: 15px;
    padding-left: 30px;
  }
  /* *************************** footer ********************************** */
  .mobile-footer {
    display: block;
  }
  .mobile-recruitment {
    display: block;
  }
  .desktop-footer {
    display: none;
  }
  .footer-logo {
    margin-right: 0px;
  }
  .footer-title {
    margin-bottom: 25px !important;
  }
  .footer-title::after {
    bottom: -15px;
  }
  .footer-logo {
    width: 100px;
  }
  .footer-number {
    font-size: 32px;
  }
  .footer-social-icons {
    gap: 2px;
    margin: 10px 5px;
  }
  .footer-social-icons img {
    width: 35px;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: space-evenly;
  }

  .footer-main-content,
  .footer-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .footer-copyrights p {
    font-size: 14px;
  }
}
