@import url("font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

/* Styles de base */
: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: ltr;
  text-align: left;
  line-height: 1.6;
}

/* Espacements */
.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;
}

/* Titres */
.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;
  left: 0;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  transform: translateX(-50%);
}

/* En-tête */
.hero_area {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 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;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 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-left: 0;
  margin-right: auto;
}

.nav-item {
  margin-right: 20px;
  margin-left: 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);
}

/* Menus déroulants */
.dropdown-menu {
  left: 0 !important;
  right: auto !important;
  text-align: left;
  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);
}

/* Boutons */
.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);
}
/* Sections */
.section_container {
    padding: 80px 0;
    background-color: var(--light-color);
  }
  
  .section_title {
    position: relative;
    margin-bottom: 50px;
  }
  
  /* Pied de page */
  .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;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer_links ul {
    list-style: none;
    padding-left: 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-left: 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-right: 10px;
    transition: all 0.3s;
  }
  
  .social_links a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  /* Cartes */
  .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: left;
    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);
  }
  
  /* Formulaires */
  .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    text-align: left;
    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 */
  .copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--primary-color);
    color: var(--light-color);
  }
/* Animations */
@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;
  }
  
  /* Responsive */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background-color: var(--primary-color);
      padding: 20px;
      margin-top: 15px;
      border-radius: 5px;
    }
    
    .nav-item {
      margin-right: 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 {
      left: 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: ltr;
  }
  
  .header_top .contact_link-container a i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 5px;
    margin-left: 0;
  }
  
  #navbarSupportedContent {
    justify-content: space-between;
  }
  
  .custom_nav-container {
    z-index: 99999;
    padding: 0;
    direction: ltr;
  }
  
  .custom_nav-container .navbar-nav {
    margin-left: auto;
    margin-right: 0;
    padding-left: 0;
  }
  
  .custom_nav-container .navbar-nav .nav-item {
    margin-right: 15px;
    margin-left: 0;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 35px 15px 10px 15px;
    color: var(--light-color);
    text-align: left;
    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: ltr;
  }
  
  .navbar-brand span {
    font-weight: bold;
    color: var(--light-color);
    font-size: 24px;
  }
/* Styles pour l'icône de menu réduite */
.custom_nav-container .navbar-toggler {
    outline: none;
    margin-right: 15px;
    margin-left: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: all 0.3s;
  }
  
  .custom_nav-container .navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--light-color);
    border-radius: 2px;
    margin: 4px 0;
    transition: all 0.3s;
    position: relative;
    left: 3px;
  }
  
  .custom_nav-container .navbar-toggler span::before, 
  .custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 24px;
    background-color: var(--light-color);
    border-radius: 2px;
    transition: all 0.3s;
  }
  
  .custom_nav-container .navbar-toggler span::before {
    top: -6px;
    height: 2px;
  }
  
  .custom_nav-container .navbar-toggler span::after {
    top: 6px;
    height: 2px;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] {
    transform: rotate(360deg);
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    transform: rotate(45deg);
    margin: -2px 0;
  }
  
  .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;
  }
/* Section Slider */
.slider_section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--light-color);
    text-align: left;
    direction: ltr;
  }
  
  .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;
    margin-top: 30px;
  }
  
  .slider_section .btn-box a {
    margin-right: 15px;
    margin-left: 0;
  }
  
  /* Responsive */
  @media (max-width: 991.98px) {
    .custom_nav-container .navbar-nav {
      margin-left: 0;
      align-items: flex-start;
      padding-left: 15px;
    }
    
    .custom_nav-container .navbar-nav .nav-item {
      margin-right: 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;
    }
  }
  
  /* Section Contact */
  .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 right, rgba(0, 0, 0, 0.9), rgba(139, 69, 19, 0.5));
  }
  
  /* Section Équipe */
  .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: left;
    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);
  }
  
  /* Section À propos */
  .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;
      left: 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-left: 20px;
      margin-bottom: 30px;
  }
    
  .about_section ul li {
      color: var(--light-color);
      margin-bottom: 10px;
      position: relative;
      list-style-type: none;
      padding-left: 20px;
  }
    
  .about_section ul li::before {
      content: "•";
      color: var(--primary-color);
      font-weight: bold;
      position: absolute;
      left: 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);
  }
  
  /* Section Services */
  .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 */
  @media (max-width: 991.98px) {
      .about_section .detail-box {
        margin-top: 30px;
        margin-left: 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;
      }
  }
  
  /* Section Informations */
  .info_section {
    background-color: var(--dark-color);
    color: #333;
    padding: 75px 0 10px 0;
    text-align: left;
  }
  
  .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-start;
  }
  
  .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: left;
  }
  
  .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;
    justify-content: flex-start;
  }
  
  .info_section .info_contact a i {
    font-size: 20px;
    margin-right: 5px;
    margin-left: 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: left;
    direction: ltr;
    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-start;
  }
  
  .info_section .info_form .social_box a {
    margin-right: 10px;
    margin-left: 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);
  }
  
  /* Section Contact */
  .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;
  }
  
  /* Responsive */
  @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;
    }
  
    .contact_form {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .btn-submit {
        padding: 10px 20px;
    }
  }
  
  /* Styles spécifiques pour la section À propos */
  .about_section {
    background-color: var(--light-color);
    color: var(--secondary-color);
  }
  
  .about_section .detail-box {
    background-color: var(--light-color);
  }
  
  .about_section p,
  .about_section ul li {
    color: var(--secondary-color);
  }
  
  .about_section .heading_container h2 {
    color: var(--primary-color);
  }
  
  .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);
  }
  
  .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);
  }
  
  /* Carousel */
  .slider_section ol.carousel-indicators {
    margin: 0;
    bottom: -75px;
    justify-content: flex-start;
    left: 0;
    right: auto;
  }
  
  .client_section .carousel-control-prev {
    left: 0;
    right: auto;
  }
  
  .client_section .carousel-control-next {
    right: 0;
    left: auto;
  }
  
  @media (max-width: 991.98px) {
    .client_section .carousel-control-prev {
      left: 15px;
    }
    
    .client_section .carousel-control-next {
      right: 15px;
    }
  }
  /* Styles pour les conteneurs de boutons */
  .btn-box {
    display: flex;
    flex-direction: row-reverse; /* Direction inversée pour les langues RTL (droite à gauche) */
    margin-top: 30px;
    gap: 15px; /* Espace entre les boutons */
    flex-wrap: wrap; /* Permet le retour à la ligne sur mobiles */
  }
  
  /* Styles de base pour tous les boutons */
  .btn-box a {
    display: inline-block;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase; /* Texte en majuscules */
    border-radius: 5px;
    transition: all 0.3s ease; /* Animation fluide */
    text-align: center;
    border: 2px solid transparent;
  }
  
  /* ========== BOUTON PRINCIPAL (marron) ========== */
  .btn-box .btn-1 {
    background-color: var(--primary-color); /* Couleur marron */
    color: var(--light-color); /* Texte blanc */
    border-color: var(--primary-color);
  }
  
  /* Effet au survol */
  .btn-box .btn-1:hover {
    background-color: transparent;
    color: var(--primary-color); /* Texte marron */
  }
  
  /* ========== BOUTON SECONDAIRE (contour) ========== */
  .btn-box .btn-2 {
    background-color: transparent;
    color: var(--primary-color); /* Texte marron */
    border-color: var(--primary-color); /* Bordure marron */
  }
  
  /* Effet au survol */
  .btn-box .btn-2:hover {
    background-color: var(--primary-color); /* Fond marron */
    color: var(--light-color); /* Texte blanc */
  }
  
  /* ========== VARIANTE FOND SOMBRE ========== */
  .dark-bg .btn-box .btn-2 {
    color: var(--light-color); /* Texte blanc */
    border-color: var(--light-color); /* Bordure blanche */
  }
  
  .dark-bg .btn-box .btn-2:hover {
    background-color: var(--light-color); /* Fond blanc */
    color: var(--dark-color); /* Texte noir */
  }
  
  /* ========== VERSION MOBILE ========== */
  @media (max-width: 768px) {
    .btn-box {
      justify-content: center; /* Centrage horizontal */
      flex-direction: row; /* Alignement normal */
    }
    
    .btn-box a {
      padding: 10px 25px;
      font-size: 14px;
      width: 100%; /* Pleine largeur */
      margin-bottom: 10px;
    }
  }
    
    /* Section Client 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;
  }
 