/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */

/*   01 - General & Basic Styles   */
/*   02 - Header Styles   		   */
/*   03 - Footer Styles            */
/*   04 - Slider Styles            */
/*   05 - Services Styles          */
/*   06 - Contact Styles           */
/*   07 - Parteners Styles         */

/*   01 - General & Basic Styles   */
@font-face {
  font-family: "DinNextLight";
  src: url("../fonts/din-next/light/DinNextLight.eot");
  src: url("../fonts/din-next/light/DinNextLight.eot")
      format("embedded-opentype"),
    url("fonts/din-next/light/DinNextLight.woff2") format("woff2"),
    url("fonts/din-next/light/DinNextLight.woff") format("woff"),
    url("fonts/din-next/light/DinNextLight.ttf") format("truetype"),
    url("fonts/din-next/light/DinNextLight.svg#DinNextLight") format("svg");
}
@font-face {
  font-family: "DinNextRegular";
  src: url("../fonts/din-next/regular/DinNextRegular.eot");
  src: url("../fonts/din-next/regular/DinNextRegular.eot")
      format("embedded-opentype"),
    url("fonts/din-next/regular/DinNextRegular.woff2") format("woff2"),
    url("fonts/din-next/regular/DinNextRegular.woff") format("woff"),
    url("fonts/din-next/regular/DinNextRegular.ttf") format("truetype"),
    url("fonts/din-next/regular/DinNextRegular.svg#DinNextRegular")
      format("svg");
}
@font-face {
  font-family: "DinNextMedium";
  src: url("../fonts/din-next/medium/DinNextMedium.eot");
  src: url("../fonts/din-next/medium/DinNextMedium.eot")
      format("embedded-opentype"),
    url("fonts/din-next/medium/DinNextMedium.woff2") format("woff2"),
    url("fonts/din-next/medium/DinNextMedium.woff") format("woff"),
    url("fonts/din-next/medium/DinNextMedium.ttf") format("truetype"),
    url("fonts/din-next/medium/DinNextMedium.svg#DinNextMedium") format("svg");
}
@font-face {
  font-family: "DinNextBold";
  src: url("../fonts/din-next/bold/DinNextBold.eot");
  src: url("../fonts/din-next/bold/DinNextBold.eot") format("embedded-opentype"),
    url("fonts/din-next/bold/DinNextBold.woff2") format("woff2"),
    url("fonts/din-next/bold/DinNextBold.woff") format("woff"),
    url("fonts/din-next/bold/DinNextBold.ttf") format("truetype"),
    url("fonts/din-next/bold/DinNextBold.svg#DinNextBold") format("svg");
}
@font-face {
  font-family: "Tajawal";
  src: url("../fonts/tajawal/Tajawal-Regular.woff2") format("woff2"),
    url("fonts/tajawal/Tajawal-Regular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Tajawal";
  src: url("../fonts/tajawal/Tajawal-Medium.woff2") format("woff2"),
    url("fonts/tajawal/Tajawal-Medium.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Tajawal";
  src: url("../fonts/tajawal/Tajawal-Bold.woff2") format("woff2"),
    url("fonts/tajawal/Tajawal-Bold.woff") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "Tajawal";
  src: url("../fonts/tajawal/Tajawal-ExtraBold.woff2") format("woff2"),
    url("fonts/tajawal/Tajawal-ExtraBold.woff") format("woff");
  font-weight: 800;
}

@font-face {
  font-family: "Tajawal";
  src: url("../fonts/tajawal/Tajawal-Black.woff2") format("woff2"),
    url("fonts/tajawal/Tajawal-Black.woff") format("woff");
  font-weight: 900;
}
:root {
  --fontFamily: "DinNextRegular";
  --mainColor: #dcb775;
  --subColor: #122a41;
  --optionalColor: #dcb775;
  --orangeColor: #dcb775;
  --whiteColor: #ffffff;
  --blackColor: #062539;
  --grayColor: #eef6f6;
  --darkGrayColor: #e3e3e3;
  --fontSize: 16px;
  --transition: 0.5s;
}
body {
  padding: 0;
  margin: 0;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  direction: rtl;
  text-align: right;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
a {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--mainColor);
  text-decoration: none;
}
:focus {
  outline: 0 !important;
}
.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  color: var(--blackColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  list-style: none;
}
b,
strong {
  font-weight: 700 !important;
}
.light-font {
  font-weight: 300;
}
button:focus {
  outline: none !important;
}
.form-control:focus {
  border-color: #f29a2d;
  outline: 0;
  box-shadow: none;
}
.width-100 {
  width: 100%;
}
.width-50 {
  width: 50%;
}
.ml-25 {
  margin-left: 25px;
}
.pad-50 {
  padding: 50px 0;
}
.padb-50 {
  padding-bottom: 50px;
}
.padt-50 {
  padding-top: 50px;
}
/*   02 - Header Styles            */
.top-header {
  background: var(--whiteColor);
  padding: 10px 0;
}

.social-nav {
  align-items: center;
  justify-content: right !important; /* ⬅️ محاذاة إلى اليمين */
  gap: 10px;
  transform: translateX(-10px); /* ← إزاحة لليسار بدون تغيير الهوامش */
}
.social-link {
  width: 20px !important; /* ⬅️ عرض الدائرة */
  height: 20px !important; /* ⬅️ ارتفاع الدائرة */
  border-radius: 50% !important;
  margin-top: 10px; /* يجعلها دائرية تمامًا */
}

.social-nav .social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 14px;
  padding: 0;
}
.social-link img {
  width: 16px; /* ⬅️ عرض الأيقونة */
  height: 16px; /* ⬅️ ارتفاع الأيقونة */
  object-fit: contain; /* يحافظ على تناسب الأيقونة */
}
@media (max-width: 768px) {
  .social-nav {
    justify-content: center !important; /* 👈 وسط في الشاشات الصغيرة */
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0px; /* 👈 خفّضنا المسافة العلوية */
  }

  .social-link {
    width: 32px !important;
    height: 32px !important;
  }

  .social-link img {
    width: 18px;
    height: 18px;
  }
  .back-to-top {
    left: 15px;
    bottom: 65px;
    right: auto;
  }
}

.twitter {
  background-color: #dcb775;
}
.facebook {
  background-color: #dcb775;
}
.linkedin {
  background-color: #dcb775;
}
.instagram {
  background-color: #dcb775;
}
.youtube {
  background-color: #dcb775;
}
.snapchat {
  background-color: #dcb775;
}
.whatsapp {
  background-color: #dcb775;
}
.lang-btn {
  margin-right: auto;
  border-radius: 20px;
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.lang-btn:hover {
  background-color: var(--whiteColor);
  color: var(--mainColor);
  border-color: var(--mainColor);
}
.menu-btn {
  border-radius: 5px;
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  width: 177px;
  height: 43px;
  padding: 16px 32px; /* padding-top:16px; right:32px; bottom:16px; left:32px; */
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%; /* يعني نفس حجم الخط (18px) */
  letter-spacing: 0;
  color: #fff;
}
.menu-btn:hover {
  background-color: var(--whiteColor);
  color: var(--mainColor);
  border-color: var(--mainColor);
}
#header.fixed {
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%) !important;
  background-color: #303779 !important;
  padding: 20px 0;
  position: fixed;
  border-color: transparent;
  z-index: 999;
}
.openBtn {
  background: transparent;
  border: 0;
  padding: 10p;
  margin-right: 1rem;
}
.spaerator div {
  width: 1px;
  height: 20px;
  border-left: 1px solid var(--mainColor);
}
.info {
  color: var(--blackColor);
}
.info i {
  color: var(--mainColor);
  margin-left: 5px;
}
.main-header {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
  padding: 5px 0 5px;
  background: #ffffffcc;
}
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
  margin-left: 3rem;
  max-width: 260px;
}
.main_menu li > a {
  display: block;
  color: #050505;
  font-size: 20px;
  position: relative;
  line-height: 3;
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-right: 20px;
  margin-left: 20px;
  padding-bottom: 8px;
}
.search-block {
  margin-right: auto;
}
.main_menu li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px;
  background-color: var(--optionalColor);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main_menu li > a:hover:before,
.main_menu li > a.active:before {
  width: 100%;
}
.main-header .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.main_menu li > a:hover {
  color: var(--mainColor);
}
.openBtn {
  background: transparent;
  border: 0;
  margin-right: 1rem;
}
#header.fixed {
  -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%) !important;
  background-color: #a9adb199 !important;
  padding: 0;
  position: fixed;
  border-color: transparent;
  top: 0;
}
#header.fixed .navbar-brand {
  width: 200px;
}
#header.fixed .main_menu li > a {
  font-size: 18px;
}
#header.fixed .menu-btn {
  background-color: #fff;
  color: var(--mainColor);
}

/*   03 - Footer Styles            */

.footer-contact-info li {
  margin-bottom: 13px;
  color: var(--blackColor);
  position: relative;
  padding-right: 40px;
  font-weight: 300;
  display: flex;
  align-items: center;
  height: 30px;
}
.footer-contact-info li .contact-icon {
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  background-color: var(--mainColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 5px;
}
.contact-icon img {
  max-height: 100%;
}
.top-footer {
  padding: 30px 0;
  border-top: 5px solid var(--orangeColor);
}
.footer-title hr {
  height: 5px;
  margin-top: 0.5rem;
  width: 50px;
  opacity: 1;
  color: var(--optionalColor);
}
.footer-menu {
  columns: 2;
}
.footer-menu a {
  display: block;
  padding: 0.5rem 0;
}
.bottom-footer {
  background-color: var(--blackColor);
  padding: 10px 0;
}
.copyright,
.copyright a {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.copyright a {
  padding-right: 15px;
}
.copyright a:hover {
  color: var(--mainColor);
}
.copyright a img {
  width: 34px;
  margin-left: 10px;
}

/*   04 - Slider Styles            */
.section_home {
  position: relative;
}
.item_slide {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0;
  z-index: 1;
  background-position: center;
  min-height: 690px;
  direction: rtl;
  overflow: hidden;
}
.item_slide:before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: rgba(0, 0, 0, 0.511); /* ظل اسود بشفافية 30% */
  pointer-events: none;
  z-index: 2;
}

.item_slide .container {
  position: relative;
  z-index: 2;
}
.slide_caption {
  text-align: center;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.slide_caption h2 {
  color: #ffffff;
  font-size: 70px;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 500;
}
.slide_caption h3 {
  color: #dcb775;
  font-size: 54px;
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 500;
}
.to-animate,
.to-animate1,
.to-animate2 {
  opacity: 0;
}
.slide_caption p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 40px;
  white-space: pre-line;
  line-height: 2;
}
#home_slider .owl-nav > button {
  display: inline-block;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border-radius: 50% !important;
  text-align: center;
  font-size: 16px;
  margin-left: 10px;
  line-height: 1;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ffffff4a;
}
#home_slider .owl-prev {
  right: 20px;
}
#home_slider .owl-next {
  left: 20px;
}

/*   05 - Services Styles          */
.section-title {
  text-align: center;
  margin-bottom: 25px;
}
.section-title hr {
  height: 8px;
  margin-top: 0.5rem;
  width: 50px;
  opacity: 1;
  color: var(--optionalColor);
  margin-right: auto;
  margin-left: auto;
}
.service-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.service-card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: #122a41;
  text-align: center;
}

/* الوصف */

.blay-a {
  position: absolute;
  top: 0;
  z-index: 99;
  right: 0;
  width: 100%;
  text-align: center;
  /* transform: translateY(-50%); */
  display: none;
  height: 300px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #06253982;
}
.blay-a a {
  background-color: var(--mainColor);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-image:hover .blay-a {
  display: flex;
}
.service-title {
  background-color: var(--mainColor);
  padding: 15px 0;
  text-align: center;
}
.service-block {
  margin-bottom: 25px;
}
.service-image > img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  width: 100%;
  height: 100%;
}
.service-image:hover img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*   06 - Contact Styles           */
.contact-sec {
  padding: 50px 0;
  background-color: #ffffff !important;
}
.white-color {
  color: var(--whiteColor);
}
.contact-form {
  border-radius: 5px;
  padding: 20px 15px;
}
.main-btn {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  padding: 1rem 5rem;
}
.main-btn:hover {
  background-color: var(--whiteColor);
  border-color: var(--mainColor);
  color: var(--mainColor);
}

/*   07 - Parteners Styles         */

body .owl-carousel .owl-nav > button.disabled {
  /*background-color: transparent !important;*/
  pointer-events: none;
}

.border-btn {
  background-color: var(--whiteColor);
  border-color: var(--mainColor);
  padding: 1rem 5rem;
  color: var(--mainColor);
}

.border-btn:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  padding: 1rem 5rem;
  color: var(--whiteColor);
}

/*  Features  */
.features-sec {
  background-color: #f9f9f9;
}
.feature-item {
  background: #ffffff;
  border: 0.5px solid var(--mainColor);
  border-radius: 8px;
  position: relative;
  padding: 15px;
}
.feature-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--optionalColor);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: auto;
  margin-top: -50px;
  z-index: 9999;
  /* position: absolute; */
  /* top: -10px; */
  overflow: visible;
}
.feature-desc {
  padding: 25px 0;
}

.features-carousel .owl-stage-outer {
  overflow: visible;
}
.features-sec .container {
  overflow: hidden;
}

.hover-ico {
  display: none;
}
.feature-item:hover .action-btn {
  background-color: #000;
  border-color: #000;
}
.feature-item:hover .action-btn .hover-ico {
  display: block;
}
.feature-item:hover .action-btn .main-ico {
  display: none;
}
.feature-item:hover .feature-icon {
  background-color: #000;
}
.feature-item:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.features-carousel .owl-nav > button {
  display: inline-block;
  width: 38px;
  height: 38px;
  color: var(--whiteColor) !important;
  border-radius: 0% !important;
  text-align: center;
  font-size: 16px;
  border: 0.5px solid transparent;
  line-height: 1;
  position: absolute;
  top: -70px;
  opacity: 1;
  background-color: var(--mainColor) !important;
}
.features-carousel .owl-next {
  left: 0;
}
.features-carousel .owl-prev {
  left: 50px;
}
.features-carousel {
  padding: 50px 0;
} /* حجم الهاتف */
/* البطاقة هي مرجع التموضع */

/* الزرّ في الوضع العادي */
.action-btn {
  position: absolute;
  right: 10px; /* من الحافة اليمنى */
  bottom: 0; /* ملامس الحدّ السفلي */
  transform: translateY(50%); /* نصفه يتخطّى الحد للأسفل */
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--optionalColor);
  border: 1px solid var(--optionalColor);
  right: 15px;
}

/* الهاتف – تصغير قياسات وتثبيت فوق الخط كذلك */
@media (max-width: 575.98px) {
  .feature-item {
    height: 270px;
  }

  .feature-item .feature-icon {
    width: 110px;
    height: 110px;
  }

  .action-btn {
    right: 15px;
    bottom: 0;
  }
}

/* سطح المكتب – تأخذ القيمة الافتراضية 420px أعلاه */

.parteners-carousel .owl-nav > button {
  display: inline-block;
  width: 38px;
  height: 38px;
  color: var(--whiteColor) !important;
  border-radius: 0% !important;
  text-align: center;
  font-size: 16px;
  border: 0.5px solid transparent;
  line-height: 1;
  position: absolute;
  top: -70px;
  opacity: 1;
  background-color: var(--mainColor) !important;
}

.parteners-carousel .owl-next {
  left: 0;
}

.parteners-carousel .owl-prev {
  left: 50px;
}

.parteners-carousel {
  padding: 0px 0;
}

.owl-nav > button:hover {
  background-color: var(--orangeColor) !important;
  color: var(--whiteColor) !important;
}

/*  About  */
p.sub-title {
  /*font-size: 15px;*/
  margin-bottom: 0;
  color: var(--mainColor);
}
p.desc {
  font-size: 15px;
  opacity: 0.6;
}
.block_sc_about::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background-color: var(--mainColor);
  z-index: 0;
}
.block_sc_about {
  position: relative;
}
.about_thumb {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20px;
}
.about_text {
  z-index: 1;
  position: relative;
  padding: 50px 20px 50px 30px;
}
h4.sec_title {
  font-weight: 500;
  font-size: 1.8rem;
}
.about_txt p {
  opacity: 0.6;
  line-height: 2.2;
}
.profile_btn.about_btn {
  background-color: #ffffff;
  padding: 0 0 0 25px;
  line-height: 1.5;
  display: inline-block;
  color: var(--mainColor);
  font-size: 16px;
  float: right;
  position: relative;
  box-shadow: 0px 5px 10px -5px rgb(238 239 240);
  -webkit-box-shadow: 0px 5px 10px -5px rgb(238 239 240);
  -moz-box-shadow: 0px 5px 10px -5px rgb(238 239 240);
  float: right;
  margin-top: -50px;
  margin-right: 22px;
}

/* Back to top button */

.back-to-top:hover,
.back-to-top:focus {
  background: var(--subColor);
  color: #ffffff !important;
}

.breadcrumb-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 160px 0 0 0;
  z-index: 1;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 42, 65, 0.6);

  z-index: 0;
  pointer-events: none;
}

.breadcrumb-section > .container {
  position: relative;
  z-index: 2;
}

.opacity-header {
  background-color: #062539cc;
}
.breadcrumb-section h3 {
  color: #ffffff;
  font-weight: 300;
  font-size: 2.2rem;
  text-align: center;
}
.breadcrumb a {
  color: #ffffff;
}
.breadcrumb a:hover {
  color: var(--mainColor);
}
.breadcrumb-item.active {
  color: #f1f2f3;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #ffffff;
  content: var(--bs-breadcrumb-divider, "|");
}
.main-color {
  color: var(--mainColor);
}

/* registration */
.accordion-button::after {
  margin-left: 0;
  margin-right: auto;
}
.accordion-item {
  background-color: var(--mainColor);
  border: 0;
  margin-bottom: 25px;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-button:not(.collapsed) {
  color: var(--blackColor);
  background-color: var(--mainColor);
  box-shadow: none;
}
.accordion-button {
  font-weight: 600;
}
.accordion-button hr,
.accordion-button2 hr {
  margin: 0.5rem 0;
  color: var(--optionalColor);
  background-color: var(--optionalColor);
  border: 0;
  opacity: 1;
  height: 5px;
  display: block;
  width: 60px;
}
.accordion-body {
  padding: 0 4rem 1rem 4rem;
}
.form-control-lg {
  padding: 0.7rem 1rem;
  font-size: 1rem;
  border-radius: 0;
}
.accordion-button {
  background-color: var(--mainColor);
}
.form-select {
  padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  background-color: #fff;
  background-image: url(../images/btn.png);
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 26px 26px;
}
.form-select-lg {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1rem;
  font-size: 1rem;
  border-radius: 0;
}
.form-check {
  padding-right: 1.5em;
  padding-left: 0;
}
.form-check .form-check-input {
  float: right;
  margin-right: -1.5rem;
  margin-left: 0;
}
.form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.form-check-input {
  width: 1.2em;
  height: 1.2em;
}
.radio-box {
  background-color: var(--mainColor);
  padding: 0.6rem 2.25rem;
}
.note {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 0;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.price-block {
  border-radius: 15px;
  border: 1px solid var(--mainColor);
  background-color: var(--whiteColor);
  padding: 30px 20px;
}
.price-block h4 {
  text-align: center;
}
.price-block p {
  color: var(--mainColor);
  text-align: center;
  font-size: 15px;
}
.price-list li i {
  color: var(--mainColor);
  margin-left: 10px;
}
.price-list li {
  padding: 8px 0;
}
.price-block.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.price-block.active .price-list li i {
  color: var(--optionalColor);
}
.price-block.active p {
  color: var(--optionalColor);
}
.orange-btn {
  background-color: var(--optionalColor);
  border-color: var(--optionalColor);
  font-size: 14px;
}
.orange-btn:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.orange-btn i {
  margin-left: 10px;
}

.accordion-button span {
  display: block;
}
.mr-3 {
  margin-right: 1rem;
}
.accordion-button2 {
  margin-right: -2rem;
  font-weight: 600;
}

/* ----------------- mobile view  ------------- */
.mobile-view {
  display: none;
}
.mobile-header {
  padding: 5px 0;
  background: #ffffffcc;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.logo-div {
  margin-bottom: 0;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.m-logo {
  max-width: 35%;
  margin-left: auto;
}
.menu-button {
  font-size: 30px;
  margin-left: 10px;
  color: #fff;
}
.mobile-menu-overlay {
  width: 100%;
  left: 0;
  visibility: hidden;
  background-color: rgba(51, 51, 51, 0.51);
}
.menu-mobile,
.mobile-menu-overlay {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.menu-mobile {
  min-width: 100px;
  width: 280px;
  background: var(--whiteColor);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow: auto;
}
.menu-mobile .body-menu-mobile .fa-times,
.menu-mobile .header-menu-mobile .fa-times {
  cursor: pointer;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s ease-in-out;
}
.menu-mobile-active {
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
  z-index: 99999;
  background: var(--whiteColor);
}
.close-menu {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #ffffff;
}
.header-menu-mobile .logo-opacity-bg {
  padding: 20px 35px;
  background: #ffffffcc;
  text-align: center;
  width: 85%;
}
.header-menu-mobile .logo {
  width: 85%;
}
.body-menu-mobile .fixed-menu {
  height: 100%;
  position: unset;
  width: 100%;
}

.body-menu-mobile .list-group-item.active {
  background-color: var(--whiteColor);
  /*border-color: rgba(0,0,0,.125);*/
}
.body-menu-mobile .list-group-item.active a {
  color: var(--mainColor);
}
.body-menu-mobile .list-group-item {
  padding: 0.5rem 0.5rem;
  border: 0;
}
.body-menu-mobile .list-group-item a img {
  margin-left: 10px;
}
.body-menu-mobile .list-group-item a span {
  font-size: 18px;
  font-family: "DinNextMedium" !important;
  color: var(--blackColor);
}
.m-main-menu .dropdown-toggle::after {
  display: none;
}
.m-main-menu .dropdown-toggle i {
  font-size: 12px;
}
.m-main-menu .dropdown-menu a:hover {
  color: #ffffff;
  background: #2b5d6e;
}
.m-main-menu .dropdown-menu a {
  text-align: center;
}
.body-menu-mobile .list-group-item {
  border-bottom: 1px solid var(--mainColor);
}
.menu-mobile .lang-btn {
  margin-right: 15px;
  margin-top: 15px;
}
.body-menu-mobile .list-group-flush > .list-group-item:last-child {
  border-bottom-width: 1px;
}
.menu-mobile .social-nav .social-link {
  width: 26px;
  height: 26px;
  margin-left: 2px;
}
.menu-mobile .social-nav {
  align-items: center;
  padding: 15px;
  gap: 4px;
}
.show-menu-mobile {
  padding-bottom: 20px;
}
.mobile-show {
  display: none;
}

/* end */

.hidden {
  display: none;
}
.line-throu::before {
  content: "";
  width: 50px;
  height: 5px;
  background-color: var(--optionalColor);
  position: absolute;
  top: 55%;
  /*transform: translateY(-50%);*/
  right: 0;
}
.line-throu {
  position: relative;
  width: 340px;
  /* margin: auto; */
  margin-left: auto;
  margin-right: auto;
}
.line-throu::after {
  content: "";
  width: 50px;
  height: 5px;
  background-color: var(--optionalColor);
  position: absolute;
  top: 55%;
  /*transform: translateY(-50%);*/
  left: 0;
}
.price-block h4 {
  text-align: center;
  font-size: 1.8rem;
}
.gray-btn {
  background-color: var(--mainColor);
  color: var(--blackColor);
  border-color: var(--mainColor);
  padding: 10px 25px;
}
.gray-btn img {
  width: 24px;
  margin-right: 15px;
}
.gray-btn .img-hover {
  display: none;
}
.gray-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-color: var(--mainColor);
}
.gray-btn:hover .img-main {
  display: none;
}
.gray-btn:hover .img-hover {
  display: inline-block;
}
/* Search */
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #000000db;
  align-items: center;
  justify-content: center;
}
.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin: auto;
  background: #ffff;
  display: block;
  padding: 200px 100px;
}
.overlay .closebtn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  padding: 0;
}
.overlay .closebtn:hover {
  background-color: var(--optionalColor);
  border-color: var(--optionalColor);
}
.overlay .form-control {
  padding: 18px 56px;
  font-size: 22px;
  border: none;
  width: 100%;
  background: white;
  border-bottom: 2px solid var(--mainColor);
}
.overlay .form-control:hover {
  background: #f1f1f1;
}
.form-group {
  position: relative;
}
.overlay-content .form-group i {
  position: absolute;
  right: 10px;
  top: 20px;
  font-size: 30px;
  color: var(--blackColor);
}
.mobile-header .openBtn {
  margin-right: 0;
  margin-left: 1rem;
}
/* End Search */

/*.dropzone {
    border: none;
    background: #11a09a;
    padding: 20px 20px;
    border-radius: 10px;
}*/
.dz-default.dz-message:after {
  content: "";
  background: url(../images/icon-upload.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 46%;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: #fff;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  margin-top: 90px;
}
.dropzone .dz-message {
  text-align: center;
  margin: 0.5em 0;
  position: relative;
  border: none;
  background: #11a09a;
  padding: 20px 20px;
  border-radius: 10px;
}
.dropzone.dz-started .dz-message {
  display: block !important;
}
.dropzone .dz-preview.dz-image-preview {
  background: transparent;
  /*padding: 10px;
    border: 1px solid;
    border-radius: 5px;*/
}
.dropzone .dz-preview {
  /*position: relative;
    display: inline-block;
    vertical-align: top;*/
  margin: 16px 0 16px 16px;
  /*min-height: 100px;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: inline-flex;*/
}

.dropzone {
  min-height: 150px;
  border: 0;
  background: transparent;
  padding: 0;
}
.upload-check {
  background-color: var(--mainColor);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.upload-check span {
  padding: 8px;
  display: inline-block;
  background: #ffff;
  margin-left: 10px;
  color: var(--mainColor);
  font-size: 24px;
}

.form-check-input:checked[type="radio"] {
  background-image: url(../images/radio-g.png) !important;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(360deg);
}
.accordion-button::after {
  width: 36px;
  height: 36px;
  background-image: url(../images/icon-up.png) !important;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

/*  --- whatsapp icocn  ---  */
.whatsapp-icon {
  position: fixed;
  border-radius: 50%;
  left: 55px;
  bottom: 35px;
  width: 56px;
  height: 56px;
  padding: 0;
  background-color: #89cb07;
  z-index: 9999;
  color: #ffffff;
  font-size: 34px;
  border: 1px solid #89cb07;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-icon:hover {
  background-color: var(--whiteColor);
  color: #89cb07;
}
.form-block .btn-danger {
  float: left;
}
.footer-logo img {
  width: 220px;
  height: auto;
  margin: 10px; /* ⬅️ إزالة أي مارجن */
  margin-bottom: 10px; /* ⬅️ فراغ أسفل الصورة */
}
.footer-logo {
  text-align: right;
  margin-top: 80px; /* ← هذه المسافة تنزل الأيقونات لأسفل الشعار */
}

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  body,
  section {
    width: 100%;
    overflow-x: hidden !important;
  }
  p {
    font-size: 16px;
  }
  .h4,
  h4 {
    font-size: 1.2rem;
  }
  .h3,
  h3 {
    font-size: 1.4rem;
  }
  .navbar-brand {
    width: 30%;
    margin-left: 0.5rem;
  }
  .navbar-nav {
    display: flex;
    flex-direction: row;
  }
  .mobile-view {
    display: block;
  }
  .web-header {
    display: none;
  }
  .site-content {
    padding-top: 55px;
  }
  .top-header {
    display: none;
  }
  .slide_caption h2 {
    font-size: 60px;
  }
  .slide_caption h3 {
    font-size: 40px;
  }
  .item_slide {
    padding: 150px 0;
  }
  .block_sc_about::after {
    display: none;
  }
  .about_text {
    padding: 30px 0 0 0;
  }
  .contact-form {
    margin-top: 25px;
  }
  .footer-title {
    margin-top: 25px;
  }
  .copyright,
  .copyright a {
    font-size: 14px;
    text-align: center;
  }
  .copyright a {
    padding-right: 0;
    display: block;
  }

  .footer-logo img {
    width: 68%;
  }
  .footer-logo {
    text-align: center;
    margin-top: 0px; /* ← هذه المسافة تنزل الأيقونات لأسفل الشعار */
  }
  #home_slider .owl-nav {
    display: none;
  }
  .breadcrumb-section {
    padding: 80px 0 0 0;
  }
  .web-view {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .overlay-content {
    padding: 100px 20px;
  }
  .accordion-body {
    padding: 0 1.5rem 1rem 1.5rem;
  }
  .price-block {
    margin-bottom: 15px;
  }
  .radio-box {
    margin-bottom: 15px;
  }
  .accordion-button2 {
    margin-right: 0;
  }
  .gray-btn {
    width: 100%;
  }
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
  p {
    font-size: 16px;
  }
  .h4,
  h4 {
    font-size: 1.2rem;
  }
  .navbar-brand {
    width: 30%;
    margin-left: 0.5rem;
  }
  .navbar-nav {
    display: flex;
    flex-direction: row;
  }
  .mobile-view {
    display: block;
  }
  .web-header {
    display: none;
  }
  .site-content {
    padding-top: 55px;
  }
  .navbar-brand {
    width: 30%;
    margin-left: 0.5rem;
  }
  .navbar-nav {
    display: flex;
    flex-direction: row;
  }
  .mobile-view {
    display: block;
  }
  .web-header {
    display: none;
  }
  .site-content {
    padding-top: 55px;
  }
  .top-header {
    display: none;
  }
  .slide_caption h2 {
    font-size: 60px;
  }
  .slide_caption h3 {
    font-size: 40px;
  }
  .item_slide {
    padding: 150px 0;
  }
  .block_sc_about::after {
    display: none;
  }
  .about_text {
    padding: 30px 0 0 0;
  }
  .contact-form {
    margin-top: 25px;
  }
  .footer-title {
    margin-top: 25px;
  }
  .copyright,
  .copyright a {
    font-size: 14px;
    text-align: center;
  }
  .back-to-top {
    left: 15px;
    bottom: 65px;
    right: auto;
  }
  .whatsapp-icon {
    right: 15px;
    bottom: 65px;
    left: auto;
  }
  .service-image {
    height: 160px;
  }
  .blay-a {
    height: 160px;
  }
  .footer-logo img {
    width: 68%;
  }

  #home_slider .owl-nav {
    display: none;
  }
  .breadcrumb-section {
    padding: 120px 0 0 0;
  }
  .web-view {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .overlay-content {
    padding: 100px 20px;
  }
  .accordion-body {
    padding: 0 1.5rem 1rem 1.5rem;
  }
  .price-block {
    margin-bottom: 15px;
  }
  .radio-box {
    margin-bottom: 15px;
  }
  .accordion-button2 {
    margin-right: 0;
  }
  .gray-btn {
    width: 100%;
  }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand {
    width: 30%;
    margin-left: 0.5rem;
  }
  .navbar-nav {
    display: flex;
    flex-direction: row;
  }
  .mobile-view {
    display: block;
  }
  .web-header {
    display: none;
  }
  .site-content {
    padding-top: 55px;
  }
  .about_text {
    padding: 20px 0 20px 10px;
  }
  .about_txt p {
    height: 150px;
    overflow: hidden;
  }
  .service-image {
    height: 220px;
  }
  .blay-a {
    height: 220px;
  }
  .social-nav .social-link {
    width: 26px;
    height: 26px;
    margin-left: 8px;
  }
  .breadcrumb-section {
    padding: 100px 0 0 0;
  }
  .mobile-show {
    display: none;
  }
  .overlay-content {
    padding: 100px 20px;
  }
  .accordion-body {
    padding: 0 1.5rem 1rem 1.5rem;
  }
  .accordion-button2 {
    margin-right: 0;
  }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 1200px) and (max-width: 1366px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main_menu li > a {
    font-size: 16px;
    margin-right: 8px;
    margin-left: 8px;
  }
  .navbar-brand {
    max-width: 220px;
  }
  #header.fixed .main_menu li > a {
    font-size: 16px;
  }
  .about_txt p {
    max-height: 220px;
    overflow: hidden;
  }
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1600px) {
}
a.copyright-link {
  color: #dcb775 !important;
}
.section_home .container {
  background-color: transparent !important;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.contact-section {
  padding-top: 120px;
  background-color: #f8f9fa;
}
.contact-sec .col-lg-6 h4,
.contact-sec .col-lg-6 p {
  color: #000000;
}
.item_slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; /* <-- هنا */
  position: relative;
  min-height: 690px;
  padding: 200px 0;
  direction: rtl;
}
.item_slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 42, 65, 0.6); /* ← الغامق */
  z-index: 1;
}
.item_slide > * {
  position: relative;
  z-index: 2;
}

.custom-breadcrumb {
  padding: 10px 0;
}

.text-gold {
  color: #d4af37;
  font-size: 18px;
}

.text-white {
  color: #fff;
  font-size: 16px;
}
.branch-card {
  box-shadow: 0px 5.26px 20.25px rgba(0, 0, 0, 0.1);
  margin: 0 auto 40px;

  background: #f9f9f9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  direction: rtl;
}
.branch-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  direction: rtl; /* إضافة */
  text-align: right; /* محاذاة النص */
  align-items: flex-start; /* محاذاة العناصر لليمين في rtl */
}

.branch-title {
  font-size: 26px;
  font-weight: bold;
  color: #122a41;
}

.branch-underline {
  width: 50px;
  height: 6px;
  background-color: #dcb775;
  border-radius: 3px;
  margin-bottom: 10px;
}

.branch-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #000;
}

.branch-info .info-icon {
  width: 32px;
  height: 32px;
  background-color: #dcb775;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-info .info-icon img {
  width: 18px;
  height: 18px;
}

.branch-map {
  width: 340px;
  height: 200px;
  border-radius: 12px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}

.info-icon {
  background: #dcb775;
  border-radius: 3.5px;
  width: 42.08px;
  height: 42.08px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.branch-map {
  width: 315.6px;
  height: 315.6px;
  border-radius: 15.78px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
/*  */
/* وضع الباجنيشن في الوسط */
.pagination-wrapper {
  margin: 60px auto 0 auto !important; /* مسافة علوية 60px، والوسط تلقائي */
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
}

/* لتوفير مسافة أسفل الباجنيشن */
.pagination-wrapper .pagination {
  margin-bottom: 40px !important;
}
@media (max-width: 768px) {
  .branch-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 90%;
    padding: 16px;
    gap: 20px;
    height: auto; /* ← لأنك غيرت الاتجاه لعمودي */
  }

  .branch-details {
    align-items: center;
    gap: 10px;
  }

  .branch-title {
    font-size: 22px; /* ← تصغير حجم العنوان */
  }

  .branch-info {
    flex-direction: column;
    gap: 8px;
    font-size: 16px; /* ← تصغير حجم النص */
  }

  .info-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .branch-map {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }

  /* الباجنيشن */
  .pagination-wrapper {
    justify-content: center !important;
    text-align: center !important;
    margin-top: 30px !important;
  }

  .pagination-wrapper .pagination li a,
  .pagination-wrapper .pagination li span {
    padding: 8px 12px;
    font-size: 14px;
  }

  .pagination-wrapper .pagination {
    margin-bottom: 30px !important;
  }
}
.pagination-wrapper .pagination li.active > span,
.pagination-wrapper .pagination li.active > a {
  background-color: #fff !important;
  color: #dcb775 !important;
  border: 2px solid #dcb775 !important;
  font-weight: 700 !important;
  cursor: default !important;
}
.pagination-wrapper .pagination li {
  margin: 0 6px;
}

/* روابط الأزرار */
.pagination-wrapper .pagination li a,
.pagination-wrapper .pagination li span {
  display: block;
  padding: 10px 16px;
  color: #122a41;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* عند المرور على الزر */
.pagination-wrapper .pagination li a:hover {
  background-color: #dcb775;
  color: #fff;
  border-color: #dcb775;
  text-decoration: none;
}

/* رقم الصفحة المحددة */
.pagination-wrapper .pagination li.active span {
  background-color: #fff; /* خلفية بيضاء */
  color: #dcb775; /* اللون الذهبي المطلوب */
  border: 2px solid #dcb775;
  cursor: default;
  font-weight: 700;
}

/* حالة معطلة */
.pagination-wrapper .pagination li.disabled span {
  color: #999;
  cursor: not-allowed;
}

.navbar-nav {
  display: flex;
  gap: 30px; /* ← غيّر الرقم حسب الحاجة */
}
.nav-link.info:hover {
  color: var(--orangeColor) !important;
}
.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: #f9f9f9;
  padding: 40px 20px;
  max-width: 1090px;
  margin: 0 auto;
  border-radius: 12px;
  position: relative;
  flex-wrap: wrap;
  text-align: right;
  font-family: "Tajawal", sans-serif;
}

.about-image {
  flex: 1 1 40%;
  max-width: 534px;
  height: 336px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about-content {
  flex: 1 1 55%;
  max-width: 516px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: px;
}
.about-content p {
  font-family: var(--fontFamily) !important;
}
.about-content h3 {
  font-family: var(--fontFamily) !important;
}
.line-clamp p {
  font-family: var(--fontFamily) !important;
}
.line-clamp h3 {
  font-family: var(--fontFamily) !important;
}
.read-more {
  display: inline-block;
  padding: 12px 32px;
  background: #dcb775;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #b89650;
}

/* زر تحميل داخل الصورة */

/* التصميم الأساسي لجميع الأجهزة */
.profile-download {
  position: absolute;
  right: 50px;
  bottom: 20px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 244px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px;
  z-index: 3;
  font-size: 20px;
  font-weight: 600;
  padding: 0px;
}

.profile-download .icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.profile-download .label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.profile-download .right {
  background: #dcb775;
  width: 70px;
  height: 70px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  /* تأكد أن حاوية الصورة relative */
  .about-image {
    position: relative; /* مرجع لـ position:absolute */
    overflow: visible; /* مهم كي يظهر الجزء الخارج */
  }

  .about-image .profile-download {
    right: 10px !important;
    bottom: 0 !important; /* يلتصق بأسفل الصورة */
    transform: translateY(50%) !important; /* يُخرج نصفه خارج الصورة */
    width: 180px !important;
    height: 60px !important;
    font-size: 14px !important;
    top: auto !important; /* يفك أي top قديم */
  }
  .profile-download {
    position: absolute; /* ضروري */
    right: 10px;
    bottom: 0;
    transform: translateY(50%); /* نصفه خارج */
    z-index: 20; /* فوق النص */
  }
}

/* 🎯 موبايل متوسط وتابلت عمودي */

@media (max-width: 768px) {
  .profile-readmore-wrapper {
    flex-direction: column; /* 👈 نخليهم تحت بعض */
    align-items: flex-end; /* أو center إذا حبيت */
  }
}

/* استجابة الجوال */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-content,
  .about-image {
    max-width: 100%;
  }

  .about-content {
    align-items: center;
  }

  .read-more {
    align-self: center;
  }
}
.card-partner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* 👈 مهم لتثبيت الصورة بكامل الارتفاع */
  background: #f9f9f9;
  border: 0.5px solid rgba(157, 157, 157, 0.5);
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 0;
  width: 100%;
  max-width: 533px;
  height: 172px;
  overflow: hidden;
}

.card-image {
  flex-shrink: 0;
  /* 👈 لا تسمح بتصغير الصورة */
  width: 172px;
  height: 172px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 12px 12px 0;
}

.card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  text-align: right;
}

.card-text .name {
  font-weight: 600;
  font-size: 24px;
  color: #122a41;
}

.card-text .title {
  font-size: 18px;
  opacity: 0.8;
  color: #000;
  font-weight: 650; /* أو bold */
}

.card-text .description {
  color: var(--blackColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}
.card-partner-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.card-partner-link:hover {
  text-decoration: none;
}
.card-partner-link {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 533px;
  height: 172px;
}

.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  height: 100%; /* 🔥 اجعل النص ياخذ طول الكرت */
  justify-content: center; /* وسّط النص عموديًا */
}
@media (max-width: 575.98px) {
  .card-text {
    font-size: 0.9rem; /* ← قلِّل الخط العام داخل النص */
  }

  .card-text .name {
    font-size: 18px; /* كان 20px؛ صغّرناه */
  }

  .card-text .title {
    font-size: 16px; /* كان 18px؛ صغّرناه */
  }

  .card-text .description {
    font-size: 0.85rem; /* صغّر الوصف أيضًا */
  }
}
.team-details {
  display: flex;
  flex-direction: column;
  align-items: center; /* توسيط أفقي */
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.purpose-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 0px;
  gap: 0px;
  border-radius: 24px;
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
}

.purpose-icon img {
  width: 150px; /* ⬅️ هذا هو حجم عرض الأيقونة */
  height: 150px; /* ⬅️ وهذا هو ارتفاعها */
  margin-right: 10px;

  border-radius: 8px;
  object-fit: cover;
}

.purpose-text {
  flex: 1;
  text-align: start;
  overflow-wrap: break-word; /* ⬅️ يكسر الكلمة الطويلة */
  margin-right: 10px;
}

.purpose-text h3 {
  font-size: 36px; /* ⬅️ هذا هو حجم خط العنوان */
  margin-bottom: 8px;
  color: #122a41;
  font-weight: 700;
}

.purpose-text p {
  color: var(--blackColor) !important;
  font-size: var(--fontSize) !important;
  margin-bottom: 15px !important;
  line-height: 1.8 !important;
}

.parteners-section {
  background-color: #fff;
  padding: 20px 0;
}

.parteners-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.parteners-section .partener-item {
  padding: 15px;
}

.parteners-section .partener-block {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.parteners-section .partener-block:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.parteners-section .partener-block img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.parteners-section .partener-block a:hover img {
  transform: scale(1.05);
}

.parteners-section .btn.border-btn {
  margin-top: 30px;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
}
.owl-prev,
.owl-next {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.parteners-section .partener-block {
  margin-bottom: 20px;
}
.section-heading {
  font-size: 32px;
  font-weight: bold;
  color: var(--darkColor); /* أو أي لون تريده */
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-heading::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primaryColor); /* لون الخط */
  bottom: -10px;
  left: 0;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.service-card h4 {
  margin: 0; /* ألغِ المسافات الافتراضية */
  font-size: 22px; /* حجم مناسب */
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 348.6px;
  height: 303px;
  background: #f0f0f0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.service-card .icon {
  height: 350px;
  width: 350%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-card .icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.service-card .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 120px; /* ⬅️ ثابت العرض حتى لو صغر المحتوى */
}

.service-card .text h4 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

.service-card .text p {
  margin: 0;
  font-size: var(--fontSize);
  color: var(--blackColor);
  line-height: 1.6;
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--blackColor);
  color: #ffffff !important;
}
.back-to-top {
  position: fixed;
  border-radius: 23%;
  right: 55px;
  bottom: 45px;
  transition: none;
  width: 37px;
  height: 39px;
  text-align: center;
  padding: 2px 0;
  background-color: var(--mainColor);
  z-index: 9999;
  color: #ffffff;
  font-size: 19px;
  display: none;
}
@media (max-width: 768px) {
  .services-grid {
    justify-content: center !important; /* ✅ يوسّط الكروت */
  }

  .service-card {
    width: 100%;
    max-width: 320px; /* ✅ حد أقصى لعرض الكارت */
    margin: 0 auto; /* ✅ يوسّطه إذا لم يكن flex */
  }
}
/*  الصنف الرئيسي */
.centered-content {
  text-align: center;
  margin: 0 auto 40px; /* top 0 – right/left auto – bottom 40px */
  max-width: 1090px;

  /* تنسيق الفقرات أو العناصر داخله إن أردت */
  p {
    color: var(--blackColor) !important;
    font-size: var(--fontSize) !important;
    margin-bottom: 15px !important;
    line-height: 1.8 !important;
  }
}

/* استخدم أيَّ حدّ تريد للموبايل – هنا 768px */
@media (max-width: 768px) {
  /* مرجع التموضع */
  .about-container {
    position: relative; /* جديد على الموبايل فقط */
  }

  /* الزرّ */
  .about-container .profile-download {
    position: absolute; /* يخرج من التدفّق */
    right: 35px; /* اضبط حسب الحاجة */
    bottom: 0; /* يلتصق بأسفل الصورة */
    transform: translateY(-840%); /* نصفه خارج الصورة */
    z-index: 999; /* فوق النص */
  }
  .profile-download {
    width: 160px; /* أصغر */
    height: 52px;
    font-size: 13px;
    right: 10px; /* كما كانت */
  }

  /* الأيقونات داخل الزر */
  .profile-download .icon-wrapper img {
    margin-top: 10px; /* مسافة بسيطة فوق الأيقونة */
  }
  .profile-download .icon-wrapper {
    width: 30px;
    height: 52px;
  }

  .profile-download .right {
    width: 50px;
    height: 53px;
  }
  .profile-download .label img {
    width: 25px;
    height: 25px;
  }

  /* بخلاف ذلك، أبقِ أبعادك الحاليّة:
     إذا أردت مقاسات أصغر للزر أضفها هنا أيضًا */
  /*例:
    width: 180px;
    height: 60px;
    font-size: 14px;
  */
}
.bg-gray {
  background: #122a411a !important; /* رمادي فاتح */
}

.bg-grayconta {
  background: #ffffff !important; /* رمادي فاتح */
}
.line-clamp p {
  color: rgba(14, 14, 14, 0.86) !important;
  opacity: 1 !important;
  font-size: 16px !important;
  font-family: var(--fontFamily) !important;
}
