.services-section {
  max-width: 1200px;
  margin: 0px auto;       
  padding: 30px 20px;
  display: flex;
  justify-content: center; 
  gap: 30px;               
  background-color: #fff;
  border-radius: 8px;
  flex-wrap: wrap;          /* Permet aux blocs de passer à la ligne */
}

.service-box {
  flex: 0 1 360px;         
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.service-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.engagement-section {
  padding: 15px 0 30px 0;
  background-color: #f9f9f9;
}

.responsive-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.responsive-paragraph {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  color: #333;
  padding-left: 0;
  padding-right: 0;
}

/* Responsive mobile */
@media screen and (max-width: 480px) {
  .responsive-title {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .responsive-paragraph {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.slider-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  overflow: hidden;
}

.card-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
}

.card {
  flex: 0 0 300px;
  background-color: #f9f9f9;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
  border-radius: 8px;
  min-height: 280px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .card {
    flex: 0 0 80%;
  }
}
/**CODE NOS SERVICE*/
.widgetXYZ-container {
  display: flex;
  padding: 40px 0;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* Pour éviter débordements */
}

.widgetXYZ-card {
  flex: 1;
  min-width: 280px; /* pour garder un minimum sur desktop/tablette */
  box-sizing: border-box;
}

.widgetXYZ-image-wrapper {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.widgetXYZ-image-wrapper img {
  max-height: 180px;
  max-width: 100%; /* Ne pas dépasser la largeur du conteneur */
  object-fit: contain;
}

.widgetXYZ-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.widgetXYZ-text {
  text-align: justify;
  line-height: 1.5;
  font-size: 14px;
}

/* Responsive pour écrans ≤ 900px */
@media (max-width: 900px) {
  .widgetXYZ-container {
     margin: 0px 10px !important;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }
  .widgetXYZ-card {
    min-width: 100%; /* plein largeur */
  }
  .widgetXYZ-image-wrapper {
    height: 200px;
  }
  .widgetXYZ-image-wrapper img {
    max-height: 100%;
    width: auto; /* Pour garder le ratio */
    max-width: 100%;
  }
}
.kalakhi {
   font-size:26px;
  }
/* code page service */ 
