@import url("font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

/* الأساسيات */
:root {
  --primary-color: #8B4513; /* Marron */
  --secondary-color: #000000; /* Noir */
  --light-color: #FFFFFF; /* Blanc */
  --dark-color: #000000; /* Noir */
}

body {
  font-family: "Tajawal", "Poppins", sans-serif;
  color: var(--secondary-color);
  background-color: var(--light-color);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
}

/* المساحات */
.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

/* العناوين */
.heading_container {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.heading_container h2 {
  position: relative;
  font-weight: 700;
  font-size: 2.2rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.heading_container h2::before {
  content: "";
  width: 50px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  right: 50%;
  transform: translateX(50%);
}

/* الهيدر */
.hero_area {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: var(--dark-color);
}

.hero_bg_box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(139, 69, 19, 0.5));
}

.header_section {
  padding: 15px 0;
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  color: var(--light-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.navbar-nav {
  margin-right: 0;
  margin-left: auto;
}

.nav-item {
  margin-left: 20px;
  margin-right: 0;
}

.nav-link {
  color: var(--light-color);
  font-weight: 500;
  padding: 10px 15px !important;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--dark-color);
  background-color: var(--light-color);
}

/* القوائم */
.dropdown-menu {
  right: 0 !important;
  left: auto !important;
  text-align: right;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
}

.dropdown-item {
  padding: 8px 20px;
  color: var(--light-color);
}

.dropdown-item:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* الأزرار */
.btn {
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
}

.btn-primary:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* الأقسام */
.section_container {
  padding: 80px 0;
  background-color: var(--light-color);
}
.section_title {
  position: relative;
  margin-bottom: 50px;
}

/* الفوتر */
.footer_section {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer_links h4 {
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--primary-color);
}

.footer_links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer_links ul {
  list-style: none;
  padding-right: 0;
}

.footer_links li {
  margin-bottom: 10px;
}

.footer_links a {
  color: var(--light-color);
  transition: all 0.3s;
}

.footer_links a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}

.social_links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-left: 10px;
  transition: all 0.3s;
}

.social_links a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* الأشكال والبطاقات */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: right;
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* النماذج */
.form-control {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  text-align: right;
  margin-bottom: 15px;
  background-color: var(--light-color);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

textarea.form-control {
  min-height: 150px;
}

/* التذييل */
.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--primary-color);
  color: var(--light-color);
}

/* تأثيرات الحركة */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* الوسائط المتعددة */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 20px;
    margin-top: 15px;
    border-radius: 5px;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
  
  .hero_area {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  
  .section_container {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .heading_container h2 {
    font-size: 1.8rem;
  }
  
  .layout_padding {
    padding: 60px 0;
  }
  
  .footer_section {
    text-align: center;
  }
  
  .footer_links h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .social_links {
    justify-content: center;
    margin-top: 20px;
  }
}

.header_top {
  background-color: var(--dark-color);
  padding: 15px 0;
}
.header_top .contact_link-container {
  display: flex;
  justify-content: space-between;
}

.header_top .contact_link-container a {
  display: flex;
  align-items: center;
  color: var(--light-color);
  font-size: 15px;
  direction: rtl;
}

.header_top .contact_link-container a i {
  font-size: 20px;
  color: var(--primary-color);
  margin-left: 5px;
  margin-right: 0;
}

#navbarSupportedContent {
  justify-content: space-between;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  direction: rtl;
}

.custom_nav-container .navbar-nav {
  margin-right: auto;
  margin-left: 0;
  padding-right: 0;
}

.custom_nav-container .navbar-nav .nav-item {
  margin-left: 15px;
  margin-right: 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 35px 15px 10px 15px;
  color: var(--light-color);
  text-align: right;
  text-transform: uppercase;
  transition: all .2s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, 
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background-color: var(--dark-color);
  color: var(--primary-color);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--primary-color);
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  direction: rtl;
}

.navbar-brand span {
  font-weight: bold;
  color: var(--light-color);
  font-size: 24px;
}

.custom_nav-container .navbar-toggler {
  outline: none;
  margin-left: 15px;
  margin-right: 0;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 15px;
  height: 25px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-color);
  border-radius: 15px;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
}

.custom_nav-container .navbar-toggler span::before, 
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--light-color);
  border-radius: 15px;
  top: -8px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 8px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, 
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* Slider Section RTL */
.slider_section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light-color);
  text-align: right;
  direction: rtl;
}

.slider_section .row {
  align-items: center;
}

.slider_section .detail-box {
  width: 100%;
  margin: 0 auto;
}

.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: var(--light-color);
  font-weight: 600;
}

.slider_section .detail-box h1 span {
  color: var(--primary-color);
}

/* تعديلات إضافية للغة العربية */
.slider_section .detail-box p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* تأثيرات الحركة للغة العربية */
.slider_section .btn-box {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 30px;
}

.slider_section .btn-box a {
  margin-left: 15px;
  margin-right: 0;
}

/* تعديلات للهواتف */
@media (max-width: 991.98px) {
  .custom_nav-container .navbar-nav {
    margin-right: 0;
    align-items: flex-end;
    padding-right: 15px;
  }
  
  .custom_nav-container .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
  
  .slider_section .detail-box h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .slider_section .detail-box {
    text-align: center;
  }
  
  .slider_section .detail-box h1 {
    font-size: 2rem;
  }
  
  .slider_section .btn-box {
    justify-content: center;
  }
}

/* قسم الاتصال */
.contact_section .contact_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: var(--primary-color);
  color: var(--light-color);
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-weight: bold;
}

.contact_section .contact_form-container button:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.contact_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-color);
}

.contact_bg_box .img-box {
  width: 100%;
}

.contact_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
  opacity: 0.7;
}

.contact_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(139, 69, 19, 0.5));
}

/* قسم الفريق */
.team_section .box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  position: relative;
  border: 2px solid var(--primary-color);
}

.team_section .box .img-box {
  width: 100%;
}

.team_section .box .img-box img {
  width: 100%;
}

.team_section .box .detail-box {
  position: absolute;
  width: 100%;
  color: var(--light-color);
  padding: 25px 15px;
  text-align: right;
  bottom: 0;
  background-color: rgba(139, 69, 19, 0.85);
}

.team_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.team_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary-color);
  color: var(--light-color);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.team_section .btn-box a:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
/* About Section Styles */
.about_section {
    background-color: var(--dark-color);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
  }
  
  .about_section .img_container {
    position: relative;
    height: 100%;
  }
  
  .about_section .img-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
  }
  
  .about_section .img-box img:hover {
    transform: scale(1.02);
  }
  
  .about_section .detail-box {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border-left: 5px solid var(--primary-color);
  }
  
  .about_section .heading_container h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .about_section .heading_container h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .about_section p {
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about_section ul {
    padding-right: 20px;
    margin-bottom: 30px;
  }
  
  .about_section ul li {
    color: var(--light-color);
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-right: 20px;
  }
  
  .about_section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
  }
  
  .about_section .btn-box a {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
  }
  
  .about_section .btn-box a:hover {
    background-color: transparent;
    color: var(--primary-color);
  }
  
  /* Service Section Styles */
  .service_section {
    background-color: var(--dark-color);
    padding: 90px 0;
  }
  
  .service_section .heading_container h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .service_section .heading_container h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
  }
  
  .services-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .service-box {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s;
  }
  
  .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
  }
  
  .service-icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .service-desc h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .service-desc p {
    color: var(--light-color);
    line-height: 1.8;
  }
  
  .service-desc p br {
    display: block;
    content: "";
    margin: 10px 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 991.98px) {
    .about_section .detail-box {
      margin-top: 30px;
      margin-right: 0;
    }
    
    .service-box {
      flex: 1 1 100%;
    }
  }
  
  @media (max-width: 767.98px) {
    .about_section .heading_container h2 {
      font-size: 2rem;
    }
    
    .about_section p {
      font-size: 1rem;
    }
    
    .service_section .heading_container h2 {
      font-size: 2rem;
    }
    
    .service_section .heading_container h3 {
      font-size: 1rem;
    }
    
    .service-box {
      padding: 20px;
    }
    
    .service-desc h2 {
      font-size: 1.3rem;
    }
  }
/* قسم المعلومات */
.info_section {
  background-color: var(--dark-color);
  color: #333;
  padding: 75px 0 10px 0;
  text-align: right;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
  color: var(--primary-color);
}
.info_section .info_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
  font-size: 24px;
  color: var(--light-color);
}

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
  text-align: right;
}

.info_section .info_links ul li a {
  color: var(--light-color);
}

.info_section .info_links ul li a:hover {
  color: var(--primary-color);
}

.info_section .info_contact {
  display: flex;
  flex-direction: column;
}

.info_section .info_contact a {
  color: var(--light-color);
  margin-bottom: 10px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-left: 5px;
  margin-right: 0;
  color: var(--primary-color);
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 30px;
  text-align: right;
  direction: rtl;
  background-color: #111111;
  color: var(--light-color);
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: var(--light-color);
  background: var(--primary-color);
  border-radius: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.info_section .info_form .social_box a {
  margin-left: 10px;
  margin-right: 0;
  color: var(--light-color);
  font-size: 20px;
  background-color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_section .info_form .social_box a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* التذييل */
.footer_section {
  font-weight: 500;
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: var(--dark-color);
  border-top: 1px solid var(--primary-color);
}

.footer_section p {
  color: var(--light-color);
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: var(--primary-color);
}

/* تعديلات الاستجابة */
@media (max-width: 768px) {
  .team_section .box .detail-box {
    text-align: center;
  }
  
  .info_section .info_logo,
  .info_section .info_links ul li {
    text-align: center;
    align-items: center;
  }
  
  .info_section .info_contact a {
    justify-content: center;
  }
  
  .info_section .info_form .social_box {
    justify-content: center;
  }
}

/* Slider Section RTL */
.slider_section .detail-box p {
  margin-top: 25px;
  text-align: right;
  direction: rtl;
}

.slider_section .detail-box .btn-box {
  display: flex;
  margin-top: 30px;
  flex-direction: row-reverse;
}

.slider_section .detail-box .btn-box a {
  width: 180px;
  text-align: center;
  margin: 5px;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--light-color);
  color: var(--dark-color);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color: var(--light-color);
  color: var(--light-color);
}

.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--primary-color);
  color: var(--light-color);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.slider_section .img-box {
  display: flex;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .idicator_container {
  position: relative;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  justify-content: flex-start;
  right: 0;
  left: auto;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: var(--primary-color);
  opacity: 1;
  border: none;
  margin: 0 4px;
}

.slider_section ol.carousel-indicators li.active {
  background-color: var(--light-color);
}

/* About Section RTL */
.about_section .row {
  align-items: center;
  direction: rtl;
}

.about_section .img_container .img-box img {
  width: 100%;
}

.about_section .detail-box {
  background-color: var(--light-color);
  padding: 45px 25px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-right: -45px;
  margin-left: 0;
  text-align: right;
  border: 2px solid var(--primary-color);
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--primary-color);
  color: var(--light-color);
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Service Section RTL */
.service_section {
  background-color: var(--dark-color);
  direction: rtl;
}

.service_section .heading_container {
  color: var(--light-color);
}

.service_section .box {
  background-color: var(--light-color);
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  border: 2px solid var(--primary-color);
}

.service_section .box .img-box svg {
  width: 75px;
  height: auto;
  fill: var(--primary-color);
}

.service_section .box .detail-box {
  margin-top: 25px;
}

.service_section .box .detail-box h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service_section .box .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: var(--primary-color);
  color: var(--light-color);
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-top: 10px;
}

.service_section .box .detail-box a:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Client Section RTL */
.client_section {
  text-align: center;
  direction: rtl;
  background-color: var(--light-color);
}

.client_section #carouselExampleControls {
  padding: 0 10%;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
  background-color: var(--light-color);
  padding: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
}

.client_section .box .img-box {
  width: 145px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  padding: 5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 50%;
}

.client_section .box .detail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.client_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.client_section .box .detail-box p {
  margin-top: 10px;
}

.client_section .carousel_btn-box {
  display: flex;
  justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 100%;
  transform: translateY(-50%);
  font-size: 18px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: var(--dark-color);
}

.client_section .carousel-control-prev {
  right: 0;
  left: auto;
}

.client_section .carousel-control-next {
  left: 0;
  right: auto;
}

/* Contact Section RTL */
.contact_section {
  position: relative;
  color: var(--light-color);
  direction: rtl;
  background-color: var(--dark-color);
}

.contact_section .row {
  align-items: center;
}

/* Media Queries for RTL */
@media (max-width: 991.98px) {
  .about_section .detail-box {
    margin-right: 0;
  }
  
  .client_section .carousel-control-prev {
    right: 15px;
  }
  
  .client_section .carousel-control-next {
    left: 15px;
  }
}

@media (max-width: 767.98px) {
  .slider_section ol.carousel-indicators {
    justify-content: center;
  }
  
  .about_section .detail-box {
    text-align: center;
    margin-top: 30px;
  }
}
/* About Section Styles */
.about_section {
  background-color: var(--light-color); /* Fond blanc */
  color: var(--secondary-color); /* Texte en noir */
}

.about_section .detail-box {
  background-color: var(--light-color); /* Fond blanc pour la boîte de contenu */
}

.about_section p,
.about_section ul li {
  color: var(--secondary-color); /* Texte en noir */
}

.about_section .heading_container h2 {
  color: var(--primary-color); /* Garde la couleur marron pour le titre */
}

/* Conserver les autres styles existants */
.about_section .img-box img {
  border: 3px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about_section ul li::before {
  color: var(--primary-color); /* Garde les puces en marron */
}

.about_section .btn-box a {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.about_section .btn-box a:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
/* CSS لقسم اتصل بنا */
.contact_section {
  padding: 60px 0;
  position: relative;
  background-color: #f8f9fa;
}

.contact_form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.contact_form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #8B4513;
  outline: none;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: #8B4513;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  width: 100%;
  font-weight: 600;
}

.btn-submit:hover {
  background-color: #8B4513;
}

/* تنسيقات للهاتف المحمول */
@media (max-width: 768px) {
  .contact_form {
      padding: 20px;
  }
  
  .form-control {
      padding: 10px 12px;
  }
  
  .btn-submit {
      padding: 10px 20px;
  }
}




