.heading1 .card {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 1600px;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  background: #fff;
  margin-top: 30px;
  border: 1px solid rgba(157, 157, 157, 0.134);
}

.logos-slider.full-width {
  width: 80vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.heading1 .card-client {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 40vw;
  max-width: 1600px;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  background: #fff;
  margin-top: 30px;
  border: 1px solid rgba(157, 157, 157, 0.134);
}

.card-client .logos-slider.full-width {
  width: 40vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Slider */
.logos-slider {
  position: relative;
  overflow-x: auto;
  /* IMPORTANT: scroll horizontal */
  overflow-y: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;

  /* Masque fade */
  mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

/* Cacher scrollbar (optionnel) */
.logos-slider::-webkit-scrollbar {
  height: 0px;
}

.logos-slider {
  scrollbar-width: none;
}

/* Container animé */
.logos-slider-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;

  animation: logos-slide 35s linear infinite;
  will-change: transform;
}

/* Logos */
.logos-slider-container img {
  width: 140px;
  max-width: 140px;
  opacity: 0.75;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: auto;
}

.logos-slider-container img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* ✅ Pause animation dès qu’on hover la zone OU un logo */
.logos-slider:hover .logos-slider-container,
.logos-slider:focus-within .logos-slider-container {
  animation-play-state: paused;
}

/* Animation (identique à toi) */
@keyframes logos-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pendant le drag */
.logos-slider.is-dragging {
  cursor: grabbing;
}

.logos-slider.is-dragging img {
  pointer-events: none;
  /* évite de "cliquer" les images pendant le drag */
}










.vl-main-menu a.active {
  color: #78bc34;
  font-weight: 600;
  position: relative;
}

.vl-main-menu > nav > ul > li > a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #78bc34;
}

.vl-main-menu .sub-menu a.active::after {
  left: 0;
  transform: none;
  width: 50%;
  bottom: -2px;
}

.homepage5-body .vl-main-menu ul>li>a.active,
.homepage5-body .vl-main-menu ul>li .sub-menu li>a.active {
  color: #78bc34;
  font-weight: 600;
}

.homepage5-body .vl-main-menu ul>li .sub-menu li>a.active::after {
  width: 50%;
}





.img-organigramme {
  display: block;
  margin: 50px auto;
  width: 50%;
  height: auto;
}

.img-biens {
  display: block;
  margin: 50px auto;
  width: 90%;
  height: auto;
}


.img-agrement-1 {
  display: block;
  margin: 50px auto;
  width: 90%;
  height: auto;
}

.img-agrement-2 {
  display: block;
  margin: 50px auto;
  width: 80%;
  height: auto;
}

.agrement-section .heading1 {
  max-width: 100%;
}

.agrement-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 120px;
}

.agrement-menu-btn {
  border: 1px solid #e3e8ef;
  background: #fff;
  color: #0f1b2d;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 18px;
  text-align: left;
  transition: all 0.3s ease;
}

.agrement-menu-btn:hover,
.agrement-menu-btn.is-active {
  background: #78bc34;
  border-color: #78bc34;
  color: #fff;
}

@media (max-width: 991px) {
  .agrement-menu {
    position: static;
    margin-bottom: 30px;
  }

  .agrement-menu-btn {
    text-align: center;
  }
}


.logo-client {
  width: 140px;
  max-width: 140px;
}





.vl-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vl-offer-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.vl-offer-list li i {
  font-size: 14px;
}

.vl-offer-list li a {
  text-decoration: none;
}

.stationware-section p {
  text-align: justify;
}

.stationware-section a {
  color: var(--ztc-text-text-5);
}

.stationware-section .heading2 h2 {
  text-transform: uppercase;
}

.stationware-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.spstationware {
  padding: 50px 0;
}

.stationware-section h2,
.stationware-structure h2,
.stationware-applications h2 {
  color: var(--ztc-text-text-5);
  font-size: 35px;
}

.stationware-applications h3 {
  color: var(--ztc-text-text-5);
  font-size: 28px;
}

.stationware-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.stationware-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  list-style: disc;
  color: #000;
  margin-left: 30px;
}

.stationware-list li::before {
  content: \"\\f058\";
  font-family: \"Font Awesome 6 Free\";
  font-weight: 900;
  color: #78bc34;
  position: absolute;
  left: 0;
  top: 0;
}

.stationware-structure,
.stationware-applications {
  background: #ffffff;
}

.stationware-feature {
  margin-bottom: 60px;
}

.stationware-feature:last-child {
  margin-bottom: 0;
}

.stationware-feature h3 {
  font-size: 28px;
  font-weight: 600;
}

/* .stationware-image img {
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
} */

@media (max-width: 991px) {
  .stationware-card {
    padding: 24px;
  }

  .stationware-feature {
    margin-bottom: 40px;
  }

  .stationware-feature h3 {
    font-size: 24px;
  }
}

.subscription-powerdev__intro {
  margin-top: 14px;
  color: #5a5a5a;
}

.powerdev-subscription-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.powerdev-subscription-form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  color: #1c1c1c;
}

.powerdev-subscription__helper {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #6c6c6c;
}

.powerdev-subscription__section {
  margin-top: 24px;
}

.powerdev-subscription__section h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.powerdev-subscription__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.powerdev-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fafafa;
  cursor: pointer;
}

.powerdev-option input {
  accent-color: #78bc34;
}

.powerdev-subscription__text {
  color: #6c6c6c;
  margin-bottom: 12px;
}

.powerdev-subscription__payment {
  margin-top: 12px;
}

.powerdev-subscription__footer {
  margin-top: 28px;
}

.powerdev-subscription__note {
  margin-top: 14px;
  font-size: 14px;
  color: #5a5a5a;
}

.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .powerdev-subscription-card {
    padding: 28px;
  }
}





.img-fluid {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.img-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.img-fluids {
  max-width: 30%;
  height: auto;
  margin-bottom: 20px;
}

.img-fluidss {
  max-width: 40%;
  height: 250px;
  margin-bottom: 20px;
}








.vl-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vl-offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.vl-offer-list li i {
  color: #78bc34;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.vl-text {
  display: inline;
  line-height: 1.5;
}

.vl-text strong {
  font-weight: 600;
  white-space: normal; /* IMPORTANT */
}






@media (max-width: 768px) {
  .vl-offer-list li {
    font-size: 15px;
    gap: 10px;
  }

  .vl-offer-list li i {
    font-size: 14px;
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .vl-offer-list li {
    font-size: 14px;
    gap: 8px;
  }
}






.service-main-detailsarea{
  text-align: justify;
}

.service-main-detailsarea p{
  line-height: 2;
}


.service-main-detailsarea .service-section-title{
  color: #78bc34;
}


.text-justify{
  text-align: justify;
  line-height: 2;
}

.powerfactory-section p{
  line-height: 1.5;
  text-align: justify;
}

/* PowerFactory cards: simple layout without hover effects */
.powerfactory-section .service6-boxarea {
  /* border: 1px solid rgba(0, 18, 51, 0.12); */
  border-radius: 16px;
  background: #f6f8fa;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
  transition: none;
}

.powerfactory-section .service6-boxarea::after {
  display: none;
}

.powerfactory-section .service6-boxarea:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.powerfactory-section .service6-boxarea:hover .icons {
  background: var(--ztc-bg-bg-4);
  transform: none;
}

.powerfactory-section .service6-boxarea:hover .icons img {
  transform: none;
  filter: none;
  max-width: 42px;
}

.powerfactory-section .icons img {
  transform: none;
  filter: none;
  max-width: 42px;
}

.powerfactory-section .service6-boxarea:hover .content-area .title {
  color: var(--ztc-text-text-5);
}

.powerfactory-section .service6-boxarea:hover .content-area p {
  color: var(--ztc-text-text-3);
}

.powerfactory-section .service6-boxarea > img,
.powerfactory-section .service6-boxarea .content-area > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.powerfactory-section .service6-boxarea .content-area .title {
  color: var(--ztc-text-text-5);
}











.orisse-timeline {
  --timeline-year-column: 190px;
  --timeline-gap: 52px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding-left: calc(var(--timeline-year-column) + var(--timeline-gap));
}

.orisse-timeline:before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-year-column) + (var(--timeline-gap) / 2));
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: #c6c6c6;
}

.orisse-item {
  position: relative;
  padding: 0 0 44px;
}

.orisse-item:before {
  content: "";
  position: absolute;
  left: calc((var(--timeline-gap) / -2) - 8px);
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #adadad;
  box-shadow: 0 0 0 6px rgba(198, 198, 198, 0.3);
}

.orisse-card {
  padding: 2px 6px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orisse-card:hover {
  transform: none;
  box-shadow: none;
}

.orisse-year {
  position: absolute;
  left: calc(-1 * (var(--timeline-year-column) + var(--timeline-gap)));
  top: 3px;
  width: var(--timeline-year-column);
  margin: 0;
  text-align: right;
  color: #141414;
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

.orisse-title {
  margin: 0 0 14px;
  color: #0f0f0f;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.orisse-text,
.orisse-list {
  margin: 0;
  color: #151515;
  font-size: 17px;
  line-height: 1.78;
}

.orisse-list {
  padding-left: 24px;
}

.orisse-list li {
  margin-bottom: 12px;
}

.orisse-list li:last-child {
  margin-bottom: 0;
}

.orisse-highlight {
  background: transparent;
  border: 0;
}

@media (max-width: 991px) {
  .orisse-timeline {
    --timeline-year-column: 112px;
    --timeline-gap: 38px;
    max-width: 100%;
  }

  .orisse-item {
    padding-bottom: 34px;
  }

  .orisse-year {
    font-size: 30px;
    top: 2px;
  }

  .orisse-title {
    font-size: 24px;
  }

  .orisse-text,
  .orisse-list {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .orisse-timeline {
    padding-left: 0;
  }

  .orisse-timeline:before,
  .orisse-item:before {
    display: none;
  }

  .orisse-item {
    padding-bottom: 28px;
  }

  .orisse-year {
    position: static;
    width: auto;
    margin-bottom: 10px;
    text-align: left;
    font-size: 32px;
  }

  .orisse-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .orisse-text,
  .orisse-list {
    font-size: 15px;
  }
}
/* Home hero slider arrows: left/right split */
.hero-arrowslider .testimonial-arrows {
  left: 0;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.hero-arrowslider .testimonial-arrows .testimonial-prev-arrow-h9,
.hero-arrowslider .testimonial-arrows .testimonial-next-arrow-h9 {
  margin: 0;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .hero-arrowslider .testimonial-arrows {
    padding: 0 12px;
  }
}

/* =========================
   WRAPPER / STAGE (centrage)
========================= */
.orisse-org-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
}

.orisse-org-stage{
  width: 100%;
  max-width: 1120px;          /* tu peux mettre 1200 si tu veux plus large */
  margin: 0 auto;
  padding: 0 10px;
  overflow-x: auto;           /* si vraiment trop petit -> scroll */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.orisse-org-stage > .orisse-org-grid{
  margin: 0 auto;
  transform-origin: top center;
}

/* SCALE auto pour tout voir sans couper */
@media (max-width: 1200px){
  .orisse-org-stage > .orisse-org-grid{ transform: scale(0.96); }
}
@media (max-width: 992px){
  .orisse-org-stage > .orisse-org-grid{ transform: scale(0.90); }
}
@media (max-width: 820px){
  .orisse-org-stage > .orisse-org-grid{ transform: scale(0.82); }
}
@media (max-width: 600px){
  .orisse-org-stage{ padding: 0; }
  .orisse-org-stage > .orisse-org-grid{ transform: scale(0.74); }
}

/* scrollbar mobile propre (optionnel) */
.orisse-org-stage::-webkit-scrollbar { height: 8px; }
.orisse-org-stage::-webkit-scrollbar-thumb {
  background: rgba(15,95,131,.25);
  border-radius: 999px;
}


/* ================================================================
   ORISSE — ORGANIGRAMME v4  (SVG layout)
================================================================ */

/* .orisse-org {
  --blue:  #0f5f83;
  --navy:  #0b3d5e;
  --sky:   #1a82b0;
  --green: #78bc34;

  font-family: system-ui, sans-serif;
  background: linear-gradient(160deg, #eef6fc 0%, #ffffff 100%);
  border-radius: 20px;
  border: 1px solid #cce4f2;
  padding: 52px 40px 44px;
  position: relative;
  overflow: hidden;
}

.orisse-org::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,188,52,.13), transparent 65%);
  pointer-events: none;
} */

/* ── HEADER ── */
.org-header { text-align: center; margin-bottom: 44px; }

.org-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.org-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}

.org-subtitle { font-size: 18px; color: var(--ztc-text-text-13); margin: 0; }

/* ── CANVAS ── */
.org-canvas {
  position: relative;
  width: 100%;
  /* height set by JS */
}

.org-canvas svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* ── NODES ── */
.org-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15,95,131,.22);
  z-index: 2;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
}

.org-node:hover {
  box-shadow: 0 8px 28px rgba(15,95,131,.34);
  transform: translate(-50%, calc(-50% - 2px));
}

.org-node--dg {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 38px;
  box-shadow: 0 6px 28px rgba(15,95,131,.30);
}

/* ── LÉGENDE ── */
.org-legend {
  margin-top: 36px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #cce4f2;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  font-size: 12px;
  color: #4a7a99;
  line-height: 1.6;
}

.leg-title { font-weight: 700; color: var(--navy); flex-basis: 100%; }
.org-legend b { color: var(--navy); }


.org-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  padding: 9px 18px;        /* était 11px 22px */
  font-size: 13px;          /* était 13.5px */
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15,95,131,.22);
  z-index: 2;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
}

.org-node:hover {
  box-shadow: 0 8px 28px rgba(15,95,131,.34);
  transform: translate(-50%, calc(-50% - 2px));
}

.org-node--dg {
  font-size: 14px;          /* était 15px */
  font-weight: 700;
  padding: 12px 32px;       /* était 14px 38px */
  box-shadow: 0 6px 28px rgba(15,95,131,.30);
}

/* Header moins généreux */
.org-header { text-align: center; margin-bottom: 32px; } /* était 44px */

.org-title {
  font-size: clamp(20px, 3vw, 28px);  /* était 32px max */
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}

/* Section globale moins padded */
.orisse-org {
  --blue:  #0f5f83;
  --navy:  #0b3d5e;
  --sky:   #1a82b0;
  --green: #78bc34;
  font-family: system-ui, sans-serif;
  background: linear-gradient(160deg, #eef6fc 0%, #ffffff 100%);
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
}
.home-surface {
  position: relative;
}

.home-surface--light {
  background: #ffffff;
}

.home-surface--soft {
  background: #f8f6f2;
}

.home-surface--contrast {
  background: #ffffff;
}

.home-surface--muted {
  background: #f8f6f2;
}
