:root {
  --color-primary: #FF4D00;
  --color-dark: #353535;
  --color-text: #111111;
  --color-white: #ffffff;
  --color-light-grey: #EBEBEB;

  --header-height: 88px;
  --transition: 0.25s ease;

  --footer-bg: #3a3a3a;
  --footer-accent: #ff5a00;
  --footer-text: #ffffff;

  --title: 60px;
  --sub-title: 40px;
  --description-text: 24px;
  --notes-button: 18px;
  --border-width: 1px;
  --border-width-sm: 2px;
  --border-width-m: 4px;
  --main-radius: 50px;
  --container-width-desktop: 1920px;
  --container-width-xxl: 1556px;
  --container-width-xl: 1290px;
  --container-width-lg: 1100px;
  --container-width-md: 880px;
  --container-width-s: 690px;
  --container-width-xs: 540px;
  --container-width-xxs: 320px;
  --brand-black: #000;
  --brand-gray: #000000;
  --brand-gray-light: #ebebeb;
  --brand-white: #fff;
  --brand-orange: #ff4d00;
  --background-color: #ebebeb;
  --text-color: #333;
  
  /* 	----institutional page----- */
	--text-gray: #4a4a4a;
	--light-bg: #ececec;
	--border-gray: #5a5a5a;
	/* Container widths */
	--container-xl: 1290px;
	--container-lg: 1100px;
	--container-md: 880px;
	--container-sm: 690px;
	--container-xs: 540px;
	--container-xxs: 320px;
  
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.overflow-hidden{
overflow: hidden;
}
@font-face {
 font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff');
  font-display: swap;
}
@font-face {
 font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
  font-display: swap;
}
@font-face {
 font-family: 'Gotham-Light';
    src: url('../fonts/Gotham-Light.woff2') format('woff2'),
        url('../fonts/Gotham-Light.woff') format('woff');
  font-display: swap;
}
@font-face {
 font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
  font-display: swap;
}
@font-face {
 font-family: 'Gotham-Thin';
    src: url('../fonts/Gotham-Thin.woff2') format('woff2'),
        url('../fonts/Gotham-Thin.woff') format('woff');
  font-display: swap;
}
@font-face {
 font-family: 'Gotham-ExtraLight';
    src: url('../fonts/Gotham-ExtraLight.woff2') format('woff2'),
        url('../fonts/Gotham-ExtraLight.woff') format('woff');
  font-display: swap;
}
h1,h2,h3,h4,h5,h6, .site-header a, .site-footer .link-orange, .main-orange-title, .header-section .main-orange-step-title, .step-content-wrapper .step-title, .step-content-wrapper .step-number, .contact-info-whatsapp strong, .contact-info-whatsapp a, .president-signature {
	font-family: "Gotham", system-ui, -apple-system, sans-serif;
}
p, a.btn-orange, .header-section .sub-title,.step-content-wrapper .step-desc, .content-block h3,.president-title-header, .composition-title, .cc-submit-row .cc-btn-orange {
	font-family: "Gotham-Book", system-ui, -apple-system, sans-serif !important;
}
.cc-faq-answer p, .site-footer .link-white, .footer-bottom p, .back-to-home-link, .careers-description, .chiffres-cles-section .sub-title, .contact-info-whatsapp, .content-block p, .president-message p, .composition-content {
	font-family: "Gotham-Light", system-ui, -apple-system, sans-serif !important;
} 
.cc-faq-question span, .solutions-section .sol-label{
	font-family: "Gotham-Medium", system-ui, -apple-system, sans-serif;
}
.chiffres-cles-desc-value{
	font-family: "Gotham-ExtraLight", system-ui, -apple-system, sans-serif;
}

.solutions-section.common-template .sol-label{
	line-height:120%;
}
.site-header {
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
	border-bottom: 1px solid var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-frame {
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
  max-width: calc(50% + 645px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.header-right {
  margin-left: 25px;
  width: 315px;
  height: 100%;
}

.logo img {
  height: 54px;
}
.header-left .main-nav{
  width: 100%;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.main-nav a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-dark);
}

.btn-client {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0 28px;
  border-radius: 0 0 0 24px;
  background: var(--color-dark);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-client:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


/* ------------mobile header css--------------*/

.desktop-only { display: inline-flex; }
.mobile-only { display: none !important; }

/* Hamburger */
.menu-toggle {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  top: -100%;
  width: 100%;
  max-width: 100%;
  height: 0;
  	background:var(--color-primary);
  transition: var(--transition);
  z-index: 999;
	overflow:hidden;
}

.mobile-menu.active {
  top: 0;
	height: 100vh;
    overflow: scroll;
}
.mobile-menu-inner{
	background: #fff;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    max-width: 880px;
    margin: auto;
}
.mobile-menu-lsit-wrapper{
  	background:var(--color-primary);
    padding-bottom: 50px;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
	border-top:2px solid var(--color-primary);
	background: #fff;
}

.mobile-menu li {
    padding: 30px 10px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid var(--color-primary);
}
.mobile-menu li.mobile-cta{
	background: var(--color-primary);
	border-bottom: 0;
	 padding: 0;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  color: var(--color-primary);
  font-weight: bold;
}

.mobile-cta a {
  display: inline-block;
  color: var(--color-primary);
	text-decoration: none;
	background: var(--color-dark);
  font-size: 18px;
  color: var(--color-primary);
  font-weight: bold;
	border-radius: 0 0 0 44px;
	width:100%;
 padding: 30px 10px;
}
.mobile-close {
  
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 32px;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
}

@media (max-width: 1600px) {
   .header-right {
    width: 200px;
}
.main-nav a{
    font-size: 16px;
}
}

/* Responsive rules */
@media (max-width: 1024px) {
      .header-frame {
        max-width: 880px !important;
        margin: auto;
    }
  .header-left {
    padding-left: 24px;
  }

  .main-nav {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex !important;
  }
  .header-right {
    width:fit-content;
    display: flex;
    align-items: center;
}
}



/* Footer base */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-frame {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 80px 0px;
}

.footer-top {
  display: grid;
 /* grid-template-columns: 0.9fr 1.2fr 1.1fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

.footer-col h4 {
  color: var(--footer-accent);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  transition: 0.25s ease;
}

/* Link types */
.link-orange {
  color: var(--footer-accent);
}

.link-orange:hover {
  color: #ffffff;
}

.link-white {
  color: #ffffff;
}

.link-white:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}

.social-icon {
  color: var(--footer-accent);
  display: inline-flex;
  transition: 0.25s ease;
}

.social-icon svg {
  height: 34px;
  fill: currentColor;
}
social-icon svg path {
transition: fill 0.5s ease;
}
.social-icon:hover svg path {
  fill: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  background: var(--color-primary);
  text-align: center;
  padding: 30px 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-bottom span {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-frame {
    padding: 48px 0px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* ----------------Hero section css-------------------- */

.hero-section {
  width: 100%;
}
.hero-section-container {
    display: flex;
}
.hero-section-container .hero-section-content-container, .hero-section-container .hero-section-image-container {
    flex: 1;   /* both inner divs take equal width */
}

.hero-section-content-container{
    border-radius: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-section-content-container .hero-section-heading-wrapper{
    flex: 1;
    width: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
	z-index:2;
}
.hero-section-heading-wrapper .section-heading{
    max-width: 645px;
    width: 100%;  
    color: var(--color-white);
    font-size: 60px;
    font-weight: 700;
	letter-spacing: -1.5px;
    margin: 0 0 0 auto;
    padding: 20px 100px 48px 0;
}
.hero-section-content-container .hero-section-description-wrapper{
    width: 100%;
    background: var(--color-dark);
    align-items: flex-start;
    justify-content: flex-end;
}
.hero-section-description-wrapper .section-description{
    max-width: 645px;
    width: 100%;  
    color: var(--color-primary);
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 0 auto;
    padding: 50px 100px 130px 0;
    line-height: 130%;
    letter-spacing: -3%;
}

.hero-section-container .hero-section-image-container {
    min-height: calc(100vh - var(--header-height));
}

.hero-section-container .hero-section-image-wrapper {
    position: relative;
    overflow: hidden;
     margin-bottom: 48px;
    height: calc(100vh - var(--header-height));
}

.hero-section-container .hero-section-image-wrapper img{
    display: block;
     width: 100%;
    object-fit: cover;
    height: 100%;
   
}
.hero-section-container .hero-section-image-wrapper img{
  margin: 0 !important;
}

.hero-section-container .hero-section-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 23%;
    height: 100%;
    background: linear-gradient(to left, rgb(255, 77, 0) 25%, rgb(255 77 0 / 96%) 49%, rgba(255, 77, 0, 0));
    pointer-events: none;
}
.hero-section-mobile-image{
	display:none;
}


/* ===== HERO ANIMATION INITIAL STATE ===== */

/* Orange area (content container) */
.hero-section-animation .hero-section-content-container {
  transform: translateX(-100%);
 
  animation: hero-orange-in 0.6s ease-out forwards;
	z-index:5;
}

/* Dark description block */
.hero-section-animation .hero-section-description-wrapper {
  transform: translateY(-100%);
 
  animation: hero-dark-in 0.5s ease-out forwards;
  animation-delay: 0.6s;
}

/* Image */
.hero-section-animation .hero-section-image-wrapper{
  opacity: 0;
  animation: hero-image-fade 1s ease-out forwards;
  animation-delay: 1.1s;
}

/* Orange div comes from right */
@keyframes hero-orange-in {
  to {
    transform: translateX(0);
    
  }
}

/* Dark div comes from top */
@keyframes hero-dark-in {
  to {
    transform: translateY(0);
    
  }
}

/* Image fade-in */
@keyframes hero-image-fade {
  to {
    opacity: 1;
  }
}
.hero-section {
  overflow: hidden;
}

/* --------------agences-section--------------------------- */
.agences-section{
  background: var(--color-light-grey);
}
.agences-section .hero-section-container .hero-section-image-container {
    min-height: auto;
}
.agences-section .hero-section-container .hero-section-image-container img{
    width: 100%;
    height: auto;
}


.agences-section .hero-section-content-container{
    border-radius: 0 0 0 48px;
}
.agences-section .hero-section-description-wrapper .section-description,.agences-section .hero-section-heading-wrapper .section-heading{
    margin: 0 auto 0 0;
}
.agences-section .hero-section-heading-wrapper .section-heading{
    padding: 20px 0px 48px 130px;
    width: 100%;
}

.agences-section .hero-section-description-wrapper .section-description{
    padding: 70px 0px 20px 130px;
	font-size:24px;
	max-width: 580px;
}
.agences-section .btn-wrapper {
    max-width: 580px;
    padding: 20px 0px 70px 130px;
}

.agences-section .btn-wrapper .btn-orange:hover{
    background: var(--color-white) ;
    color: var(--color-primary);
    box-shadow: none;
	border-color: var(--color-white);
}
.hero-section-container .agence-section-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.hero-section-container .agence-section-image-wrapper img{
    display: block;
     width: 100%;
    object-fit: cover;
    height: 100%;
   
}
.hero-section-container .agence-section-image-wrapper img{
  margin: 0 !important;
}

.hero-section-container .agence-section-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 77, 0), rgb(255 77 0 / 98%), rgba(255, 77, 0, 0));
    pointer-events: none;
}



/* ---------------FAQ sectin css-------------- */



.faq-section {
  width: 100%;
  padding-bottom: 60px;
  background: var(--color-light-grey);
   background-image: url("../images/vector_1.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}

.faq-section-container {
    display: flex;
}
.faq-section-container .faq-section-content-container, .faq-section-container .faq-section-faqs-container {
    flex: 1;   
}

.faq-section-content-container{
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.faq-section-content-container .faq-section-heading-wrapper{
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.faq-section-heading-wrapper .section-heading{
    max-width: 645px;
    width: 100%;  
    color: var(--color-primary);
    font-size: 60px;
    font-weight: 700;
	letter-spacing: -1.5px;
    margin: 0 0 0 auto;
    padding: 20px 100px 48px 0;
}

.faq-section-container .faq-section-faqs-container {
    transform: translateX(-260px);
}

.faq-section-faqs-container .cc-faq{
  width: 100%;
  max-width: 800px;
  margin-left: 160px;
}
.cc-faq-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.cc-faq-item {
  border-bottom: 1px solid var(--color-primary);
}

.cc-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 34px 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 122%; /* 48.8px */
letter-spacing: -2px;
gap: 10px;
}
.cc-faq-question:hover{
	color: var(--color-dark);
}
.cc-faq-question:hover .cc-faq-icon svg path{
	fill:var(--color-dark);
}
.cc-faq-icon {
  font-size: 32px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cc-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 100px;
  border-radius: 0 0 40px 40px;
}

.cc-faq-answer p {
  margin: 0;
  padding: 0 0 34px;
  color: var(--color-white);
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 120%; 
letter-spacing: -0.462px;
}
.cc-faq-question {
  transition: background-color 0.35s ease, color 0.35s ease;
}

.cc-faq-answer {
  transition:
    max-height 0.4s ease,
    padding 0.4s ease,
    background-color 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}

.cc-faq-item.cc-active .cc-faq-answer {
  opacity: 1;
}



/* Active state */
.cc-faq-item.cc-active .cc-faq-question {
  background: var(--color-primary);
  color: #fff;
}
.cc-faq-item.cc-active {
    border: none;
}

.cc-faq-item.cc-active .cc-faq-icon {
  transform: rotate(90deg);
  color: #fff;
}
.cc-faq-item.cc-active .cc-faq-icon svg path {
  fill: #fff;
}
.cc-faq-item.cc-active .cc-faq-answer {
  max-height: 300px;
}
.cc-faq-item.cc-active .cc-faq-question {
  background-color: var(--color-primary);
  color: #fff;
}

/* -------------------------solution section css ---------------------------- */


.solutions-section{
  padding-bottom: 60px;
}
.custom-container {
        margin: 0 auto;
        padding: 0 40px;
        max-width: var(--container-width-xxl);
        width: 100%;
      }

      /* Title Style */
      .main-orange-title {
        color: var(--brand-orange);
        font-size: var(--title);
        font-weight: 700;
		  letter-spacing: -1.5px;
        max-width: var(--container-width-xl);
        width: 100%;
        margin: 0 auto;
        padding: 35px 0;
      }

      .title-accent-line {
        max-width: 1342px;
        margin: 0 auto;
        padding: 1px;
        width: 100%;
        height: var(--border-width);
        background-color: var(--brand-orange);
        /* margin-bottom: 60px; */
      }

      /* The Container Asymmetry */
      .solutions-accordion {
        display: flex;
        flex-direction: column;
        border-bottom-right-radius: var(--main-radius);
        overflow: hidden;
        gap: 2px;
        border: 2px solid var(--brand-orange);
        border-bottom-left-radius: var(--main-radius);
        background: white;
        border-top: 0;
        border-collapse: collapse;
      }

      /* The "Scoop" Row Logic */
      .sol-item {
        background-color: #fff;
        outline: var(--border-width-sm) solid var(--brand-orange) !important;
        outline-style: inset;
        border-bottom-left-radius: var(--main-radius); /* The "Scoop" curve */
        border-bottom-right-radius: var(--main-radius); /* The "Scoop" curve */
        margin-top: calc(
          var(--border-width-sm) * -1
        );
        transition: all 0.3s ease;
        border-collapse: collapse;
        border-top: 0;
        will-change: transform; /* Performance optimization */
		overflow: hidden;
      }

      .sol-item.active {
        animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }

      .solutions-accordion .sol-item:nth-child(1) {
        z-index: 5;
      }

      .solutions-accordion .sol-item:nth-child(2) {
        padding-top: 51px;
        margin-top: -51px;
        z-index: 4;
      }

      .solutions-accordion .sol-item:nth-child(3) {
        padding-top: 51px;
        margin-top: -51px;
        z-index: 3;
      }

      .solutions-accordion .sol-item:nth-child(4) {
        padding-top: 51px;
        margin-top: -51px;
        z-index: 2;
      }

      /* Header/Trigger */
      .sol-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        user-select: none;
        max-width: var(--container-width-xl);
        margin: 0 auto;
        padding: 25px 0px;
      }

      .sol-item.active .sol-trigger {
        align-items: flex-start;
      }

      .sol-item:hover {
        background-color: var(--brand-gray-light);
      }
      .trigger-left {
        display: flex;
        align-items: center;
        gap: 30px;
      }

      .sol-icon-circle {
        width: 70px;
        height: 70px;
        /* border: var(--border-width) solid var(--brand-orange); */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-orange);
        transition: all 0.3s ease;
        flex-shrink: 0;
      }

      .sol-item.active .sol-icon-circle {
        color: var(--brand-orange);
      }

      .sol-icon-circle svg {
        width: 70px;
        height: 71px;
        stroke: 1px solid var(--brand-orange);
      }

      .sol-item:hover .sol-icon-circle svg {
        stroke: 1px solid var(--brand-gray);
      }

      .sol-item:hover .sol-icon-circle svg path {
        fill: var(--brand-gray);
      }

      .sol-label {
        color: var(--brand-orange);
        font-size: 40px;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .sol-arrow {
        width: 78px;
        height: 50px;
        color: var(--brand-orange);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .sol-arrow svg {
        transition:
          transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* Content Layout - Desktop Right Align */
      .sol-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition:
          max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: none;
        pointer-events: none;
      }

      .sol-item.active .sol-arrow {
        height: 0;
        width: 0;
      }

      .sol-item.active {
        animation: slideDown 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }

      .sol-item.active .sol-content {
        animation: slideDown 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        display: flex;
        max-height: 600px;
        opacity: 1;
        pointer-events: auto;
      }
      .sol-item.closing .sol-content {
        animation: slideUp 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
      }

      .sol-content-wrapper {
        display: flex;
        margin: 0 0 0 auto;
      }
      .content-inner {
        padding: 0 50px 23px 50px;
        display: flex;
        justify-content: flex-end; /* Pushes content to the right on desktop */
      }
.common-template .content-inner {
    padding: 14px 50px 23px 50px;
}

      .text-side {
        max-width: 470px; /* Matches the visual weight in figma */
      }
.page-id-206 .common-template .text-side {
    max-width: 460px;
}
      .text-side p {
        font-size: 24px;
        line-height: 124%;
        color: #000;
        margin-bottom: 35px;
        animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
        opacity: 0;
		  letter-spacing: -0.7px;
      }

      .sol-item.active .text-side p {
        animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
      }

      .sol-item:hover .sol-label,
      .sol-item:hover .sol-label {
        color: var(--brand-gray);
      }
      .sol-item:hover .sol-arrow svg path {
        fill: var(--brand-gray);
      }
      .sol-arrow {
        transition:
          transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
          opacity 0.4s ease-in-out;
      }
      .sol-item.active .text-side p,
      .sol-item.active .btn-orange {
        animation: fadeInContent 0.5s cubic-bezier(0.65, 0, 0.35, 1) 0.2s
          forwards;
      }

      @keyframes slideInUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeInContent {
        0% {
          opacity: 0;
          transform: translateY(-15px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideDown {
        0% {
          max-height: 120px;
          opacity: 0.99;
        }
        100% {
          max-height: 600px;
          opacity: 1;
        }
      }

      @keyframes slideUp {
        0% {
          max-height: 600px;
          opacity: 1;
        }
        100% {
          max-height: 0px;
          opacity: 0.99;
        }
      }

      /* Button */
      .btn-orange {
        display: inline-block;
        background-color: var(--brand-orange);
        color: #fff;
        padding: 10px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid var(--brand-orange);
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(255, 77, 0, 0.2); /* Better button shadow */
      }

      .btn-orange:hover {
        background-color: #353535;
        border-color: #353535;
        color: var(--brand-orange);
        /* transform: translateY(-2px); */
        box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
      }

      .btn-orange:active {
        transform: translateY(0);
      }

      /* Accessibility - Focus states */
      .sol-trigger:focus-visible {
        outline: 3px solid var(--brand-orange);
        outline-offset: 4px;
        border-radius: 8px;
      }

      .btn-orange:focus-visible {
        outline: 3px solid var(--brand-orange);
        outline-offset: 4px;
      }

      /* Reduced motion for accessibility */
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }

      /* Resonsive Styles */
      @media (max-width: 1600px) {
        .custom-container {
          max-width: var(--container-width-xl);
			width: 100%;
        }
        .main-orange-title {
          max-width: var(--container-width-lg);
        }
        .title-accent-line {
          max-width: 1150px;
        }
        .sol-trigger {
          max-width: var(--container-width-lg);
          padding: 20px 0px;
        }
        .sol-label {
          font-size: 32px;
        }
        .sol-icon-circle {
          width: 60px;
          height: 60px;
        }
        .sol-icon-circle svg {
          width: 60px;
          height: 61px;
        }
        .sol-arrow {
          width: 60px;
          height: 40px;
        }
        .content-inner {
          padding: 0 30px 30px 30px;
          max-width: 480px;
        }
        .common-template .content-inner {
    padding: 10px 30px 30px 30px;
}
        .text-side {
          max-width: 100%; /* Full width on smaller screens */
        }
        .text-side {
          font-size: 20px;
          margin-top: 0px;
        }
      }

      @media (max-width: 1200px) {
        .custom-container {
          max-width: var(--container-width-lg);
          width: 100%;
        }
        .main-orange-title {
          font-size: 48px;
          max-width: var(--container-width-md);
        }
        .title-accent-line {
          max-width: 940px;
        }
        .sol-trigger {
          max-width: var(--container-width-md);
          padding: 20px 0px;
        }
        .sol-label {
          font-size: 28px;
        }
        .sol-icon-circle {
          width: 50px;
          height: 50px;
        }
        .sol-icon-circle svg {
          width: 50px;
          height: 51px;
        }
        .sol-arrow {
          width: 50px;
          height: 30px;
        }
        .content-inner {
          padding: 0 20px 20px 20px;
          justify-content: center;
          max-width: 400px;
        }
           .common-template .content-inner {
    padding: 10px 20px 20px 20px;
}
    
        .text-side {
          max-width: 100%; /* Full width on smaller screens */
        }
        .text-side p {
          font-size: 18px;
          margin-top: 8px;
        }
      }

      @media (max-width: 991px) {
		  
        .custom-container {
          max-width: var(--container-width-md);
          width: 100%;
        }
        .main-orange-title {
          font-size: 40px;
          max-width: var(--container-width-s);
        }
        .title-accent-line {
          max-width: 740px;
        }
        .sol-trigger {
          max-width: var(--container-width-s);
          padding: 15px 20px;
        }
        .sol-label {
          font-size: 24px;
        }
        .content-inner {
          padding: 0 15px 15px 15px;
          justify-content: center;
          max-width: 300px;
        }
           .common-template .content-inner {
    padding: 10px 15px 15px 15px;
}
    
        .text-side {
          max-width: 100%; /* Full width on smaller screens */
        }
      }
      @media (max-width: 768px) {
        .custom-container {
          max-width: var(--container-width-s);
                  width: 100%;
        }
        .main-orange-title {
          font-size: 40px;
          max-width: var(--container-width-xs);
        }
        .title-accent-line {
          width: 95%;
          max-width: 580px;
        }
        .sol-item {
          border-radius: 0 0 20px 20px;
        }
        .sol-trigger {
          max-width: var(--container-width-xs);
          padding: 15px 20px;
        }
        .sol-item.active .sol-trigger {
          align-items: flex-start;
          flex-direction: column;
        }
        .sol-content-wrapper {
          display: flex;
          margin: 0;
        }
        .sol-label {
          font-size: 24px;
        }
        .content-inner {
          padding: 0 15px 15px 0px;
          justify-content: center;
          max-width: 100%;
        }
           .common-template .content-inner {
    padding: 5px 15px 15px 0px;
}
    
        .text-side {
          max-width: 100%; /* Full width on smaller screens */
        }
        .btn-orange {
          margin-left: auto;
          display: flex;
          width: fit-content;
        }
      }
      @media (max-width: 580px) {
        .custom-container {
          max-width: var(--container-width-xs);
          padding: 0 10px;
          width: 100%;
        }
        .main-orange-title {
          font-size: 32px;
          max-width: var(--container-width-xxs);
			padding-bottom: 14px;
        }
        .title-accent-line {
          width: 98%;
          max-width: 330px;
        }
		  .text-side p {
			  margin-bottom: 20px;
		  }
        .sol-trigger {
          max-width: var(--container-width-xxs);
          padding: 15px 0px;
        }
        .sol-item.active .sol-trigger {
          padding: 15px 0;
          max-width: 320px;
        }
        .sol-content-wrapper {
          display: flex;
          margin: 0;
        }
        .sol-label {
          font-size: 20px;
        }
        .content-inner, .common-template .content-inner  {
          padding: 0 15px 10px 0px;
          justify-content: center;
          max-width: 100%;
        }
    
        .text-side {
          font-size: 14px;
        }
        .btn-orange {
          margin-left: auto;
          display: flex;
          width: fit-content;
        }
      }

      @media (hover: none) and (pointer: coarse) {
        /* Remove hover effects on touch devices */
        .sol-item:hover {
          background-color: #fff;
        }

        /* Add active state feedback for touch */
        .sol-item:active {
          background-color: var(--brand-gray-light);
        }

        .sol-trigger:active .sol-label,
        .sol-trigger:active .sol-arrow svg path {
          color: var(--brand-gray);
          fill: var(--brand-gray);
        }
      }


      @media print {
        .solutions-accordion {
          border: 1px solid #333;
        }

        .sol-item {
          page-break-inside: avoid;
          border: 1px solid #333;
          margin-bottom: 10px;
        }

        .sol-content {
          max-height: 0;
          opacity: 0;
          overflow: hidden;
          transition:
            max-height 0.6s cubic-bezier(0.65, 0, 0.35, 1),
            opacity 0.5s ease-in-out;
          display: none;
          pointer-events: none;
        }

        .sol-arrow {
          display: none;
        }
      }

      @media (prefers-contrast: high) {
        .sol-item {
          outline-width: 3px;
        }

        .sol-trigger:focus-visible {
          outline-width: 4px;
        }
      }

      .solutions-accordion.loading .sol-item {
        pointer-events: none;
        opacity: 0.6;
      }



/* ----------------------------------------
---------Ouvrir un Compte page css ---------
----------------------------------------- */

.no-description.hero-section-content-container .hero-section-heading-wrapper{
  min-height: 300px;
}
.no-description.hero-section-content-container .hero-section-heading-wrapper .section-heading{
  padding-bottom: 150px;
} 

.hero-section-heading-wrapper.hero-section-heading-back-to-home-wrapper{
  flex-direction: column;
  justify-content: space-between;
}

.hero-section-heading-wrapper .back-to-home-link{
    max-width: 645px;
    width: 100%;
    color: var(--color-white);
    font-size: 18;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -1.5px;
    margin: 0 0 0 auto;
    padding: 100px 100px 48px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-section-heading-wrapper .back-to-home-link:hover .back-to-home-text, .hero-section-heading-wrapper .back-to-home-link:hover .back-to-home-icon{
  transition: transform 0.3s ease-in-out;
}
.hero-section-heading-wrapper .back-to-home-link:hover .back-to-home-icon{
  transform: translateX(-15px);
}
.hero-section-heading-wrapper .back-to-home-link:hover .back-to-home-text{
  transform: translateX(15px);
}

/* -----------------------------2nd section css---------------------------- */

.header-section {
        width: 100%;
        margin: 0 auto;
      }
      /* Title Style */
      .main-orange-step-title {
        color: var(--brand-orange);
        font-size: var(--title);
        font-weight: 800;
        font-family: "Inter", sans-serif;
        max-width: var(--container-width-xxl);
        width: 90%;
        margin: 0 auto;
        padding: 25px 20px 50px;
      }

      .sub-title {
        width: 100%;
        margin: 0 auto 70px;
        color: var(--brand-gray);
        font-size: 20px;
        font-family: "Gotham Rounded", sans-serif;
        max-width: var(--container-width-xxl);
        width: 90%;
        padding: 0px 20px;
      }

      /* The Separator Line */
      .separator-line {
        max-width: var(--container-width-xxl);
        margin: 0 auto;
        width: 90%;
        padding: 1px;
        height: var(--border-width);
        background-color: var(--brand-orange);
      }

      /* The Stack Container */
      .steps-container {
        display: flex;
        flex-direction: column;
        border-bottom-right-radius: var(--main-radius);
        overflow: hidden;
        gap: 2px;
        border: 2px solid var(--brand-orange);
        border-bottom-left-radius: var(--main-radius);
        background: white;
        border-top: 0;
        border-collapse: collapse;
      }

      .step-item {
        background-color: #fff;
        max-width: var(--container-width-xxl);
        outline: var(--border-width-sm) solid var(--brand-orange) !important;
        outline-style: inset;
        border-bottom-left-radius: var(--main-radius); /* The "Scoop" curve */
        border-bottom-right-radius: var(--main-radius); /* The "Scoop" curve */
        border-collapse: collapse;
        border-top: 0;
        will-change: transform; /* Performance optimization */
        padding: 30px 20px;
        gap: 40px;
        position: relative;
        margin-top: -40px;
        z-index: 1;
        transition: all 0.3s ease;
      }

      .step-item:first-child {
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        z-index: 10;
      }

      .step-item:nth-child(2) {
        z-index: 9;
        padding-top: 70px; /* Compensate for overlap to keep content centered visually */
      }

      .step-item:nth-child(3) {
        z-index: 8;
        padding-top: 70px;
      }

      .step-content-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        transition: background-color 0.3s ease;
        max-width: var(--container-width-xl);
        width: 90%;
        margin: 0 auto;
        gap: 10px;
      }
      /* Left Side: Number + Title */
      .step-left {
        display: flex;
        align-items: baseline;
        gap: 38px;
        flex: 1;
        max-width: 530px;
		width: 50%;
      }

      .step-number {
        color: var(--brand-orange);
        font-family: "Inter", sans-serif;
        font-size: var(--title);
        font-weight: 800;
        line-height: 1;
      }

      .step-title {
        color: var(--brand-orange);
        font-family: "Inter", sans-serif;
        font-size: var(--sub-title);
        font-weight: 700;
        line-height: 1.1;
      }

      /* Right Side: Description */
      .step-right {
        flex: 1;
        max-width: 630px;
        padding-top: 18px;
      }

      .step-desc {
        font-family: "Gotham Rounded", sans-serif;
        font-size: 24px;
        line-height: 120%;
        color: #000;
        margin: 0;
		  letter-spacing:-1px;
      }

      .step-desc a {
        color: var(--brand-orange);
        text-decoration: none;
      }

      /* Responsive Styles */
      @media (max-width: 1200px) {
        .main-orange-step-title {
          font-size: 42px;
          padding: 35px 20px;
        }
        .sub-title {
          margin: 0 auto 40px;
        }
        .step-item {
          padding: 25px;
        }
        .step-item:nth-child(2),
        .step-item:nth-child(3) {
          padding-top: 70px;
        }
        .step-title {
          font-size: 32px;
        }
        .step-number {
          font-size: 40px;
        }
        .step-right {
          padding-top: 8px;
        }
        .step-desc {
          font-size: 20px;
        }
      }

      @media (max-width: 991px) {
        .main-orange-step-title {
          font-size: 36px;
        }
        .step-item {
          flex-direction: column;
          gap: 20px;
        }
        .step-left {
          max-width: 100%;
        }
        .step-right {
          max-width: 100%;
          padding-left: 0;
        }
        .step-number {
          font-size: 36px;
        }
        .step-desc {
          font-size: 16px;
        }
        .step-title {
          font-size: 28px;
        }
      }
      @media (max-width: 768px) {
        .custom-container {
          padding: 0 20px;
        }
        .main-orange-step-title {
          font-size: 22px;
          padding: 20px 20px;
        }
        .sub-title {
          font-size: 12px;
          margin-bottom: 10px;
          z-index: 12;
          position: relative;
        }
        .separator-line {
          margin: 0 auto;
        }
        /* Mobile specific adjustments for 390px target */
        .step-item {
          padding: 10px 24px 20px;
          margin-top: -50px;
          border-bottom-left-radius: 30px;
          border-bottom-right-radius: 30px;
        }
        .step-item:first-child {
          margin-top: 0;
          padding-top: 0px;
        }
        .step-item:nth-child(2),
        .step-item:nth-child(3) {
          padding-top: 50px;
        }
        .step-content-wrapper {
          flex-direction: column;
        }
		  .step-left {
    width: 100%;
}
        .step-left {
          gap: 10px;
          padding-top: 16px;
        }
        .step-number {
          font-size: 36px;
        }
        .step-title {
          font-size: 24px;
        }
        .step-desc {
          font-size: 12px;
        }
        .step-right {
          padding-top: 0px;
        }
      }

      @media (max-width: 450px) {
        .main-orange-step-title {
          font-size: 18px;
        }
        .sub-title {
          font-size: 10px;
        }
        .separator-line {
          width: 85%;
          margin-bottom: -15px;
          z-index: 11;
          position: relative;
        }
        .step-item:first-child {
          margin-top: 0;
          padding-top: 20px;
        }
        .step-number {
          font-size: 32px;
        }
        .step-title {
          font-size: 20px;
        }
        .step-desc {
          font-size: 10px;
        }
      }





/* ------------------------------form css-------------------- */


 .contact-section{
    width: 100%;
    background: var(--color-light-grey);
    background-image: url(../images/contact_vector.png);
    background-repeat: no-repeat;
    background-position: left 350px;
    background-size: contain;
}

.contact-section .section-heading-wrapper{
  background: var(--color-primary);
  margin-top:60px;
}
.contact-section .custom-container {
  padding-bottom: 50px;
}
.contact-section .section-heading{
  color: var(--color-white);
    font-size: var(--title);
    font-weight: 700;
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0px;
}

.contact-part{
      max-width: var(--container-width-xxl);
      width: 100%;
      margin: auto;
      border: 2px solid var(--color-primary);
      padding-top:32px;
      padding-bottom: 26px;
      border-radius: 0 0 48px 48px;
      background: var(--color-white);
}

.cc-contact-form-wrapper{
  width: 100%;
  max-width: 1290px;
  margin: auto;
}
.cc-form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.cc-form-row.two-col > * {
  flex: 1;
}

.cc-contact-form input,
.cc-contact-form textarea {
  width: 100%;
  padding: 14px 32px;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  font-size: 24px;
}

.cc-phone-field {
  display: flex;
  gap: 12px;
  outline: 2px solid var(--color-primary);
  border-radius: 12px;
}
.cc-phone-field .cc-custom-select.small{
    width: fit-content;
    outline: 2px solid var(--color-primary);
    border-radius: 12px;
}
.cc-phone-field input[type="tel"], .cc-phone-field .cc-select-trigger, .cc-phone-field input[type="tel"]:focus-visible{
  border: none;
  outline: none;
}

label.cc-textarea-label {
    font-size: 26px;
    font-weight: 700;
	font-family: "Gotham", system-ui, -apple-system, sans-serif;
	letter-spacing: -0.5px;
    color: var(--color-primary);
}
textarea.textarea{
  min-height: 150px;
}
/* Custom Select */
.cc-custom-select {
  position: relative;
}

.cc-select-trigger {
  width: 100%;
  padding: 16px 32px;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  background: #fff;
  display: flex;
	gap: 12px;
  justify-content: space-between;
	align-items:center;
  cursor: pointer;
  font-size: 24px;
	font-family: "Gotham", system-ui, -apple-system, sans-serif;
	letter-spacing: -0.5px;
}
.cc-phone-field .cc-custom-select.small .cc-select-trigger{
	font-family: "Gotham-Light", system-ui, -apple-system, sans-serif;
    width: fit-content;
}
.cc-select-trigger.text-orange{
  color: var(--color-primary);
  font-weight: 700;
}

.cc-select-arrow {
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  transform: translateY(-4px) rotate(45deg);
}

.cc-custom-select.open .cc-select-arrow {
  transform: translateY(6px) rotate(-135deg);
}

.cc-select-options {
  /* display: none; */
  position: absolute;
  width: 100%;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-top: none;
  border-bottom: none;
  border-radius: 0 0 12px 12px;
  list-style: none;
  z-index: 999;
  padding: 0;
  font-weight: 700;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}
.cc-custom-select.open .cc-select-trigger{
  border-radius: 12px 12px 0 0; 
} 
.cc-custom-select.open .cc-select-options {
  /* display: block; */
  border: 2px solid var(--color-primary);
  border-top: none;
  max-height: 500px;
}
.cc-custom-select.small.open{
  /* border-radius: 12px 12px 0 0 ; */
}

.cc-phone-field .cc-custom-select.open .cc-select-trigger{
  border-radius: 12px 12px 0 0; 
} 
.cc-phone-field .cc-custom-select.open .cc-select-options {
  /* display: block; */
  outline: 2px solid var(--color-primary);
  border: none;
  max-height: 500px;
}

.cc-select-options li {
  padding: 14px 32px;
  cursor: pointer;
  font-size: 20px;
	font-family: "Gotham", system-ui, -apple-system, sans-serif;
	letter-spacing:-0.5px;
}

.cc-submit-row {
  justify-content: flex-end;
}

.cc-btn-orange {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  min-width: 230px;
  transition: 0.3s all ease;
}
.cc-btn-orange svg{
  margin-left: 10px;
}
.cc-btn-orange:hover svg path {
  transition: 0.3s all ease;
  fill: var(--color-primary);
}
.cc-btn-orange:hover {
  background: var(--color-dark);
  color: var(--color-primary);  
}
.cc-btn-orange:hover span{
  transition: 0.5s all ease;
  padding-right: 20px;
}

.cc-form-success {
  text-align: center;
  padding: 200px 60px;
}

.cc-form-success h3 {
  color: var(--color-primary);
  font-size: 60px;
}
.cc-form-success p {
  font-size: 30px;
}
@media (max-width: 800px) {
  .cc-form-row {
    flex-direction: column;
  }
  .mobile-none{
    display: none;
  }
}
.cc-error .cc-select-trigger {
  border-color: red;
}

.cc-form-response.error {
  color: red;
  margin-top: 12px;
  font-size: 14px;
}

.cc-field-error {
  margin-top: 6px;
  font-size: 13px;
  color: #d10000;
}

/* Parent must be relative */
.cc-custom-select {
  position: relative;
}

/* Tooltip container */
.cc-field-error {
  position: absolute;
  top: -42px;
  left: 12px;
  background: #fff;
  color: #000;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #f5a623;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  white-space: nowrap;
  z-index: 10;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
}

/* Tooltip arrow */
.cc-field-error::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 14px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Show tooltip ONLY when error exists */
.cc-error .cc-field-error {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Red border like native */
.cc-error .cc-select-trigger,
.cc-error input,
.cc-error textarea {
  border-color: #ff4d00;
}
.cc-error:hover .cc-field-error,
.cc-error:focus-within .cc-field-error {
  opacity: 1;
  visibility: visible;
}

/* Chrome, Edge, Safari */
input::placeholder, textarea::placeholder {
  color: #BABABA;
	font-family: "Gotham-Light", system-ui, -apple-system, sans-serif !important;
}

/* Firefox */
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #BABABA;
	font-family: "Gotham-Light", system-ui, -apple-system, sans-serif !important;
  opacity: 1;
}

/* Internet Explorer (old, but just in case) */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #BABABA;
	font-family: "Gotham-Light", system-ui, -apple-system, sans-serif !important;
}

/* Edge (legacy) */
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #BABABA;
	font-family: "Gotham-Light", system-ui, -apple-system, sans-serif !important;
}

/* --------------------contact info section css------------------- */


.contact-info-section{
  background: var(--color-primary);
}
.contact-info-section .cc-faq-question{
    padding: 40px 0px;
    background: var(--color-primary);
    color: var(--color-white);
    max-width: 1290px;
        margin: auto;
	font-size:60px;
  }
  .contact-info-section .cc-faq-question .sol-arrow svg path{
    fill: var(--color-white);
  }
.contact-info-section .cc-faq-question:hover{
	color: var(--footer-bg);
}
.contact-info-section .cc-faq-question:hover .sol-arrow svg path{
	transition: 0.3s all ease;
	fill: var(--footer-bg);
}
  .contact-info-section .cc-faq-answer {
    padding: 0px;
     background: var(--color-light-grey);
    border-radius: 0;
  }
.contact-info-section .cc-faq-item.cc-active .cc-faq-answer {
      max-height: 400px;
  }
  .contact-info-container-wrapper{
    padding-bottom: 60px;
    background: var(--color-light-grey);
    background-image: url(../images/contact_info_vector.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;

  }
.contact-info-container {
  max-width: 1440px;
  margin: 0 0 0 auto;
  padding: 50px 140px;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 48px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 80px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon svg {
  flex-shrink: 0;
}

.contact-info-text h4 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 600;
  color: #ff4d00;
}

.contact-info-text p {
  margin: 0;
  font-size: 23px;
  color: #000;
  line-height: 1.4;
  padding: 0;
}

.contact-info-divider {
  margin: 40px 0 30px;
  height: 2px;
  background: #ff4d00;
}

.contact-info-whatsapp {
  font-size: 24px;
  color: #000;
}

.contact-info-whatsapp strong {
  color: #ff4d00;
}

.contact-info-whatsapp a {
  color: #ff4d00;
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ----------contact page----------------- */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-text h4 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-text p {
  margin: 0;
  font-size: 23px;
  color: #000;
  line-height: 120%;
}
.contact-text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contact-text a:hover {
  border-color: #ff4d00;
}
.contact-template .sol-content-wrapper {
    width: 50%;
}
.contact-template .sol-arrow {
        margin-left: auto;
    }
.contact-template .sol-item.active .sol-arrow {
   
    display: none;
}
.contact-template .content-inner {
    padding: 0 50px;
}
.contact-template .sol-trigger {
    padding:35px 0px;
}

span.sol-label-badge {
   font-size: 40px;
    border: 3px solid var(--color-primary);
    padding: 0px 3px;
    border-radius: 8px;
    color: var(--color-primary);
    margin-left: 30px;
    transition: color 0.3s ease;
    letter-spacing: 2px;
	line-height: normal;
}
.sol-item:hover span.sol-label-badge{
	
    border: 3px solid var(--brand-gray);
    color: var(--brand-gray);
}
/* -------------------------------------
------------responsive css--------------
-------------------------------------- */

@media screen and (max-width:1600px) {
  .header-frame {
  max-width: calc(50% + 550px);
}
    .header-left {
        padding-left: 0px;
    }
	.footer-frame {
  width: 98%;
  max-width: 1100px;
}

  .hero-section-heading-wrapper .section-heading, .hero-section-description-wrapper .section-description, .faq-section-heading-wrapper .section-heading, .hero-section-heading-wrapper .back-to-home-link{
    max-width: 550px;
    width: 100%; 
  }
  .hero-section-heading-wrapper .section-heading, .faq-section-heading-wrapper .section-heading{
    font-size: 50px;
}
.hero-section-description-wrapper .section-description{
    font-size: 26px;
}

.faq-section-container .faq-section-faqs-container {
    transform: translateX(-220px);
}

.faq-section-faqs-container .cc-faq{
  margin-left: 140px;
}
.cc-faq-question {
  padding: 34px 80px;
font-size: 36px;
}
.cc-faq-answer {
  padding: 0 80px;
}
.cc-faq-answer p {
  padding: 0 0 34px;
font-size: 20px;
}

.cc-contact-form-wrapper, .contact-section .section-heading  {
    max-width: 1100px;
	width: 95%;
}
.contact-section .section-heading{
  font-size: 50px;
}
.contact-info-section .cc-faq-question {
    max-width: 1100px;
	font-size:50px;
}
.contact-info-container{
    max-width: 1150px;
    padding: 50px 80px;
 }
 .contact-info-text p {
    padding: 0;
}

}
@media screen and (max-width:1200px) {
	.footer-frame {
  width: 98%;
  max-width: 880px;
}
  .hero-section-heading-wrapper .section-heading, .hero-section-description-wrapper .section-description, .faq-section-heading-wrapper .section-heading, .hero-section-heading-wrapper .back-to-home-link{
    max-width: 440px;
    width: 100%; 
  }
 .hero-section-heading-wrapper .section-heading, .faq-section-heading-wrapper .section-heading{
    padding: 20px 70px 48px 0px;
}

.hero-section-description-wrapper .section-description{
    padding: 50px 70px 130px 0px;
   
}
  .agences-section .hero-section-heading-wrapper .section-heading{
    padding: 20px 0px 48px 70px;
}

.agences-section .hero-section-description-wrapper .section-description{
    padding: 50px 0px 40px 70px;
   
}
.agences-section .btn-wrapper {
    max-width: 440px;
    width: 100%;
    padding: 0px 0px 130px 70px;
}
.faq-section-container .faq-section-faqs-container {
    transform: translateX(-60px);
}

.faq-section-faqs-container .cc-faq{
  margin-left: 0px;
}
.cc-faq-question {
  padding: 34px 60px;
font-size: 28px;
}
.cc-faq-answer {
  padding: 0 60px;
}
.cc-faq-answer p {
  padding: 0 0 34px;
font-size: 18px;
}

.cc-contact-form-wrapper, .contact-section .section-heading  {
    max-width: 880px;
}
.cc-select-trigger, .cc-contact-form input, .cc-contact-form textarea {
    font-size: 18px;
}
.cc-select-arrow {
    width: 18px;
    height: 18px;
}
.cc-phone-field .cc-custom-select.small {
    /* min-width: 110px; */
}
.cc-select-options li {
    font-size: 16px;
}

.contact-info-section .cc-faq-question {
        max-width: 880px;
        font-size: 50px;
    }
.contact-info-container{
    max-width: 900px;
    padding: 50px;
 }
 .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}
 .contact-info-text p {
    padding: 0;
}
.contact-info-text h4 {
    margin: 0 0 6px;
    font-size: 16px;
}
.contact-info-text p {
    font-size: 16px;
    padding: 0;
}
.contact-info-icon svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}
.contact-info-whatsapp {
    font-size: 16px;
    color: #000;
}
	
	.contact-text h4, .contact-text p {
    font-size: 20px;
}
	.contact-icon svg {
    width: 30px;
    height: 30px;
}
	

span.sol-label-badge {
    font-size: 28px;
    padding: 3px 12px;
    margin-left: 24px;
}
.cc-form-success h3 {
  color: var(--color-primary);
  font-size: 38px;
}
.cc-form-success p {
  font-size: 22px;
}
}
@media screen and (max-width:900px) {
	  .mobile-menu-header {
    max-width:690px;
  }
	.footer-frame {
  width: 98%;
  max-width: 690px;
}
  .header-frame {
  max-width: 690px !important;
}
  .hero-section-heading-wrapper .section-heading, .hero-section-description-wrapper .section-description, .faq-section-heading-wrapper .section-heading, .hero-section-heading-wrapper .back-to-home-link{
    max-width: 345px;
    width: 100%; 
  }
  .agences-section .btn-wrapper .btn-orange{
    margin: 0;
}

    .cc-contact-form-wrapper, .contact-section .section-heading {
        max-width: 690px;
    }
    .custom-container {
    margin: 0 auto;
    padding: 0 10px;
    }

    .contact-info-section .cc-faq-question {
        max-width: 690px;
        font-size: 50px;
    }
.contact-info-container{
    max-width: 700px;
    padding: 50px;
 }
 .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}
 .contact-info-text p {
    padding: 0;
}
.contact-info-text h4 {
    margin: 0 0 6px;
    font-size: 14px;
}
.contact-info-text p {
    font-size: 14px;
    padding: 0;
}
.contact-info-icon svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}
.contact-info-whatsapp {
    font-size: 14px;
    color: #000;
}
	.contact-template .content-inner {
        padding: 0 15px;
        justify-content: center;
        max-width: 400px;
    }
}
@media screen and (max-width:768px) {
	  .mobile-menu-header {
    max-width:540px;
  }
	
  .header-frame {
  max-width: 540px !important;
}
	.footer-frame {
  width: 98%;
  max-width: 540px;
}
  .hero-section-heading-wrapper .section-heading, .hero-section-description-wrapper .section-description, .faq-section-heading-wrapper .section-heading{
    max-width: 270px;
    width: 100%; 
  }
  .hero-section-heading-wrapper .section-heading, .faq-section-heading-wrapper .section-heading{
    font-size: 38px;
}
.hero-section-description-wrapper .section-description{
    font-size: 22px;
}
.hero-section-heading-wrapper .section-heading, .faq-section-heading-wrapper .section-heading{
    padding: 20px 30px 48px 0px;
}

.hero-section-description-wrapper .section-description{
    padding: 50px 30px 130px 0px;
   
}
  .agences-section .hero-section-heading-wrapper .section-heading{
    padding: 20px 0px 48px 30px;
}

.agences-section .hero-section-description-wrapper .section-description{
    padding: 50px 0px 30px 30px;
}
.agences-section .btn-wrapper {
    max-width: 270px;
    padding: 0px 0px 130px 30px;
}

.faq-section-container {
    display: flex;
    flex-direction: column;
}
.faq-section-heading-wrapper .section-heading {
        padding: 20px 30px 48px 0px;
        max-width: 540px;
        margin: auto;
    }
    
    .faq-section-container .faq-section-faqs-container {
        transform: translateX(0);
        max-width: 600px;
        width: 98%;
        margin: auto;
    }
    .cc-faq-question {
        padding: 34px 30px;
        font-size: 28px;
    }
    .cc-faq-answer {
        padding: 0 30px;
    }
    .cc-contact-form-wrapper, .contact-section .section-heading{
        max-width: 540px;
        font-size: 38px;
    }
    .cc-btn-orange {
    font-size: 20px;
}
.line-height-normal{
  line-height: normal;
  margin-top: -3px;
}

.contact-part{
      border-radius: 0 0 36px 36px;
}


    .contact-info-section .cc-faq-question {
        max-width: 540px;
        font-size: 38px;
    }
.contact-info-container{
    max-width: 600px;
    padding: 40px;
 }
 .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
}
 .contact-info-text p {
    padding: 0;
}
.contact-info-text h4 {
    margin: 0 0 6px;
    font-size: 12px;
}
.contact-info-text p {
    font-size: 12px;
    padding: 0;
}
.contact-info-icon svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
.contact-info-whatsapp {
    font-size: 12px;
    color: #000;
}
	.contact-section {
    background-position: left 400px;
	}
	.contact-info-container-wrapper {
    background-position: -180px -110px;
    background-size: cover;
}
span.sol-label-badge {
    font-size: 18px;
    padding: 2px 6px;
    margin-left: 10px;
}

.cc-form-success h3 {
  color: var(--color-primary);
  font-size: 22px;
}
.cc-form-success p {
  font-size: 12px;
}
	
}





@media screen and (max-width:540px) {
	.mobile-menu-header {
    max-width: 320px;
  }
	.footer-frame {
  width: 98%;
  max-width: 320px;
}
	.footer-bottom p
{
		max-width: 250px;
    margin:auto;
	}
  .hero-section {
    background: var(--color-primary) !important;
}
	.hero-section-mobile-image{
	display:block !important;
}
	.hero-section-desktop-image{
	display:none !important;
}
section.hero-section.agences-section{
  background: var(--color-light-grey) !important;
}
	.hero-section-animation .hero-section-content-container,
	.hero-section-animation .hero-section-description-wrapper,
	.hero-section-animation .hero-section-image-wrapper{
		animation: none !important;
    transform: none !important;
    opacity: 1 !important;
	}
  .header-frame {
  max-width: 320px !important;
}
.hero-section-container .hero-section-image-wrapper {
    position: relative;
    overflow: hidden;
     margin-bottom: 0;
    height: auto;
}
.hero-section-container .agence-section-image-wrapper {
    margin-bottom: 0;
}
.hero-section-container .hero-section-image-container img {
    width: 100%;
    height: auto;
}
.agences-section .hero-section-container .hero-section-image-container img {
  margin-bottom: 0;
}
  .hero-section-heading-wrapper .section-heading, .hero-section-description-wrapper .section-description, .faq-section-heading-wrapper .section-heading, .hero-section-heading-wrapper .back-to-home-link {
    max-width: 320px;
    width: 100%; 
    margin:auto;
  }
  .no-description.hero-section-content-container .hero-section-heading-wrapper .section-heading {
    padding-bottom: 35px;
}
.hero-section-heading-wrapper .back-to-home-link{
  padding-top: 20px;
} 
    .hero-section-container {
    flex-direction: column;
}
.hero-section-container .hero-section-image-container {
    min-height: 0px;
}
	.hero-section-container .hero-section-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to left, rgb(255, 77, 0), rgb(255 77 0 / 96%), rgba(255, 77, 0, 0));
    pointer-events: none;
}
.hero-section-container .hero-section-image-container img{
  margin:0;
  max-height: auto;
}
.hero-section-heading-wrapper .section-heading, .agences-section .hero-section-heading-wrapper .section-heading, .faq-section-heading-wrapper .section-heading {
    font-size: 32px;
    padding:54px 0 36px;
    margin: 0 auto;
}
.hero-section-description-wrapper .section-description, .agences-section .hero-section-description-wrapper .section-description{
    font-size: 14px;
    padding:33px 0;
    margin: 0 auto;
	max-width: 320px;
}
.agences-section .btn-wrapper {
    max-width: 320px;
    width: 100%;
    margin: auto;
    padding: 0 0 40px 0;
}
.faq-section {
  width: 100%;
  padding-bottom: 30px;
  background: var(--color-light-grey);
   background-image: url("../images/vector_1_mob.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
	
	.cc-faq-answer {
    border-radius: 0 0 30px 30px;
}
.cc-faq-question {
  padding: 20px 30px;
font-size: 16px;
}
.cc-faq-answer {
  padding: 0 30px;
}
	.cc-faq-answer p:last-of-type {
        padding: 0 0 24px;
        font-size: 12px;
    }
.cc-faq-answer p {
  padding: 0 0 14px;
font-size: 12px;
}
    .footer-frame {
        padding: 48px 0px;
    }
	.footer-col li {
    margin-bottom: 27px;
}
	.footer-col h4{
		margin-bottom: 27px;
}
	.footer-col.footer-brand img{
		width:120px;
	}

  /* ------------2nd page css----------------- */

  .no-description.hero-section-content-container .hero-section-heading-wrapper{
    border-radius: 0 0 0 40px;
  }
  .no-description.hero-section-content-container + .hero-section-image-container{
    margin-top: -30px !important;
  }

.cc-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}
.cc-form-row {
    gap: 12px;
}
    .cc-contact-form-wrapper, .contact-section .section-heading{
        max-width: 320px;
        font-size: 20px;
    }
    .cc-btn-orange {
    font-size: 14px;
}
    .custom-container {
        margin: 0 auto;
        padding: 0 14px;
    }
        .cc-phone-field .cc-custom-select.small {
        /* min-width: 86px; */
    }

        .cc-select-trigger, .cc-contact-form input, .cc-contact-form textarea, .cc-select-options li  {
        font-size: 12px;
        padding: 10px 14px;

      }
    
    
    .cc-select-arrow {
    width: 12px;
    height: 12px;}
    label.cc-textarea-label {
    font-size: 18px;
}
.back-to-home-icon svg{
  width: 30px;
}
    .main-orange-step-title {
        font-size: 22px;
        padding: 20px 0px;
        max-width: 320px;
    }
    .step-content-wrapper {
    max-width: 320px;
    width: 100%;
}

 .contact-info-section .cc-faq-question {
        max-width: 320px;
        font-size: 20px;
        padding: 18px 0;
    }
.contact-info-container{
    max-width: 330px;
    padding: 30px 30px 30px 60px;
    border-radius: 0 0 0 36px;
 }
 .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
 .contact-info-text p {
    padding: 0;
}
.contact-info-text h4 {
    margin: 0 0 2px;
    font-size: 12px;
}
.contact-info-text p {
    font-size: 12px;
    padding: 0 !important;
}
.contact-info-icon svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.contact-info-whatsapp {
    font-size: 12px;
    color: #000;
}
.contact-info-section  .sol-arrow svg {
    width: 30px;
}
.contact-info-divider {
    margin: 10px 0 10px;
    height: 2px;
}


	.contact-text h4, .contact-text p {
    font-size: 14px;
}
	.contact-icon svg {
    width: 24px;
    height: 24px;
}
	.contact-item {
    gap: 14px;
}
	.contact-details {
    gap: 20px;
}
	.contact-template .sol-trigger {
    padding: 26px 0px;
}
span.sol-label-badge {
    font-size: 14px;
    padding: 0px 6px;
    margin-left: 0px;
    border-radius: 6px;
        border-width: 2px;
}
.contact-template .trigger-left {
    display: flex;
    align-items: center;
    gap: 4px;
}
	.sol-arrow svg {
    width: 32px;
}
    .agences-section .btn-wrapper .btn-orange {
        font-size: 12px;
    }
}



@media screen and (max-width:400px) {
	.mobile-menu-header {
    max-width: 260px;
  }
	.footer-frame {
  width: 98%;
  max-width: 260px;
}
  .header-frame {
  max-width: 260px !important;
}
  .hero-section-heading-wrapper .section-heading, .hero-section-description-wrapper .section-description, .faq-section-heading-wrapper .section-heading, .hero-section-heading-wrapper .back-to-home-link  {
    max-width: 260px !important;
  } 
.agences-section .btn-wrapper {
    max-width: 260px;
}
	    .main-orange-title {
        max-width: 260px;
    }
	.sol-item.active .sol-trigger, .sol-trigger, .title-accent-line { 
        max-width: 260px;
    }
.cc-contact-form-wrapper, .contact-section .section-heading{
        max-width: 260px;
    }
    .custom-container {
        margin: 0 auto;
        padding: 0 10px;
    }
    .main-orange-step-title, .sub-title,.step-content-wrapper   {
        max-width: 260px;
        padding-left: 0;
        padding-right: 0;
    }
    

    .contact-info-section .cc-faq-question {
        max-width: 260px;
        font-size: 20px;
        padding: 18px 0;
    }
.contact-info-container{
    max-width: 300px;
    padding: 30px 20px 30px 50px;
    border-radius: 0 0 0 36px;
 }
.contact-section .custom-container{
    padding-bottom: 30px;
}
}

/* -----------------sticky 3  button css---------- */

.cc-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 150px; 
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.cc-sticky-btn {
  display: block;
  background: #ff4d00;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 20px;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: -5px 1.5px 8px 2px rgba(0, 0, 0, 0.30);
  transition: all 0.2s ease;
  font-family: "Gotham-Light", system-ui, -apple-system, sans-serif;
  border-radius:none;
	width: 124px;
}

/* Hover effect */
.cc-sticky-btn:hover {
	font-weight:800;
	font-family: "Gotham", system-ui, -apple-system, sans-serif;

}


/* Mobile: hide or adjust */
@media (max-width: 768px) {
  .cc-sticky-cta {
    display: none; /* or move bottom */
  }
	.contact-template .sol-content-wrapper {
    width: auto;
}
	.contact-template .content-inner {
		padding: 10px 0;
    }
}
.solutions-section.common-template{
	padding-bottom:0;
}
.solutions-accordion .sol-item:not(:first-child) {
  padding-top: 51px;
  margin-top: -51px;
}
.solutions-section.common-template.contact-template{
	padding-bottom:0;
	margin-top: -60px;
	z-index: 0;
	position: relative;
}
.contact-template-hero.hero-section {
    overflow: hidden;
    z-index: 2;
    position: relative;
}

.contact-template .solutions-accordion .sol-item:nth-child(1) {
    z-index: 5;
    padding-top: 60px;
}
section {
  scroll-margin-top: 80px; /* header height + little spacing */
}
.active.sol-item:hover .sol-label {
    color: var(--color-primary);
}
.active.sol-item:hover .sol-label-badge {
    color: var(--color-primary);
    border: 3px solid var(--color-primary);
}
.active.sol-item .sol-trigger:hover .sol-label {
    color: var(--color-primary);
}
.active.sol-item .sol-trigger:hover .sol-icon-circle svg path  {
    fill: var(--color-primary);
}




/* ----------------------------------------Institutionnel page---------------------------------- */


.chiffres-cles-section{
            background: #ebebeb;
            padding-top: 1px;
	margin-top: -30px;
    z-index: 0;
    position: relative;
      }
      .chiffres-cles-section .custom-container{
        margin: 0 auto;
        padding: 0 40px;
        max-width: var(--container-width-xxl);
        width: 100%;
      }

      .chiffres-cles-section .header-section {
        width: 100%;
        margin: 0 auto;
        z-index: 100;
        position: relative;
      }

      /* Title Style */
      .chiffres-cles-main-title {
        color: var(--brand-orange);
        font-size: var(--title);
        font-weight: 800;
        font-family: "Gotham", sans-serif;
        max-width: var(--container-width-xxl);
        width: 90%;
        margin: 0 auto;
        padding: 25px 20px 50px;
      }

      .chiffres-cles-section .sub-title {
        margin: 55px auto 28px;
        color: #353535;
        font-size: 32px;
        font-weight: 500;
        max-width: var(--container-width-xxl);
        width: 90%;
        padding: 0px 20px;
        text-align: center;
      }

      /* The Separator Line */
      .chiffres-cles-section .separator-line {
        max-width: var(--container-width-xxl);
        margin: 0 auto;
        width: 90%;
        padding: 1px;
        height: var(--border-width);
        background-color: var(--brand-orange);
      }

      /* The Stack Container */
      .chiffres-cles-container {
        display: flex;
        flex-direction: column;
        border-bottom-right-radius: var(--main-radius);
        overflow: hidden;
        gap: 2px;
        border: 2px solid var(--brand-orange);
        border-bottom-left-radius: var(--main-radius);
        background: white;
        border-top: 0;
        border-collapse: collapse;
        margin-top: -130px;
      }

      .chiffres-cles-item {
        background-color: #fff;
        max-width: var(--container-width-xxl);
        outline: var(--border-width-sm) solid var(--brand-orange) !important;
        outline-style: inset;
        border-bottom-left-radius: var(--main-radius);
        border-bottom-right-radius: var(--main-radius);
        border-collapse: collapse;
        border-top: 0;
        will-change: transform;
        padding: 30px 20px;
        gap: 40px;
        position: relative;
        margin-top: -40px;
        z-index: 1;
        transition: all 0.3s ease;
      }

      .chiffres-cles-item:first-child {
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        z-index: 10;
        padding-top: 160px;
      }

      .chiffres-cles-item:nth-child(2),
      .chiffres-cles-item:nth-child(3),
      .chiffres-cles-item:nth-child(4) {
        padding-top: 70px;
      }

      .chiffres-cles-item:nth-child(2) {
        z-index: 9;
      }

      .chiffres-cles-item:nth-child(3) {
        z-index: 8;
      }

      .chiffres-cles-item:nth-child(4) {
        z-index: 7;
      }

      .chiffres-cles-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        transition: background-color 0.3s ease;
        max-width: var(--container-width-xl);
        width: 90%;
        margin: 0 auto;
        gap: 10px;
      }

      /* Left Side: Number + Title */
      .chiffres-cles-top {
        display: flex;
        align-items: baseline;
        gap: 38px;
        flex: 1;
        max-width: 530px;
        width: 50%;
      }

      .chiffres-cles-title {
        color: var(--brand-orange);
        font-family: "Gotham", sans-serif;
        font-size: var(--sub-title);
        font-weight: 700;
        line-height: 1.1;
        font-size: 40px;
      }

      .chiffres-cles-number-title {
        color: var(--brand-orange);
        font-family: "Gotham", sans-serif;
        font-size: var(--sub-title);
        font-weight: 700;
        line-height: 1.1;
        font-size: 24px;
        margin: 0 0 14px;
      }

      /* Right Side: Description */
      .chiffres-cles-bottom {
        width: 100%;
        padding-top: 34px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: space-evenly;
        max-width:1200px;
        margin:auto;
      }

      .chiffres-cles-desc {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: min(40%,500px);
      }
      .chiffres-cles-desc-value {
        letter-spacing: -4px;
        font-weight: lighter;
        font-size: 85px;
        line-height: 107%;
        color: #333;
        margin: 0;
      }
		
        .chiffres-cles-desc-value small {
    font-size: .8em;
}
      .chiffres-cles-desc-value span {
        font-size: var(--description-text);
        color: var(--brand-orange);
        text-decoration: none;
        letter-spacing: -1px;
      }

      .chiffres-cles-desc a {
        color: var(--brand-orange);
        text-decoration: none;
      }

      /* Responsive Styles */
      @media (max-width: 1600px) {
        .chiffres-cles-section .sub-title {
          font-size: 24px;
        }
        .chiffres-cles-desc-value {
          font-size: 80px;
        }
        .chiffres-cles-number-title {
          font-size: 22px;
        }
        .chiffres-cles-title {
          font-size: 30px;
        }
      }
      @media (max-width: 1200px) {
        .chiffres-cles-section .sub-title {
          font-size: 20px;
          margin-top: 50px;
        }
        .chiffres-cles-desc-value {
          font-size: 60px;
        }
        .chiffres-cles-desc-value span {
          font-size: 16px;
        }
        .chiffres-cles-number-title {
          font-size: 20px;
        }
        .chiffres-cles-title {
          font-size: 28px;
        }
        .chiffres-cles-bottom {
          padding-top: 8px;
        }
		  .contact-section.institutional-page .section-heading-wrapper {
			  margin-top: 0;
			  padding-top: 20px;
			  padding-bottom: 20px;
		  }
      }

      @media (max-width: 991px) {
        .chiffres-cles-desc-value {
          font-size: 48px;
        }
        .chiffres-cles-title {
          font-size: 26px;
        }
        .chiffres-cles-desc {
          font-size: 16px;
        }
        .chiffres-cles-title {
          font-size: 28px;
        }
      }

      @media (max-width: 768px) {
        .chiffres-cles-desc-value {
          font-size: 100px;
        }
        .chiffres-cles-desc-value span {
          font-size: 24px;
        }
        .chiffres-cles-title {
          font-size: 24px;
        }
        .chiffres-cles-top {
          width: 100%;
        }
        .chiffres-cles-bottom {
          padding-top: 5px;
          flex-direction: column;
          align-items: flex-start;
          margin-left: 20px;
          gap: 0px;
        }
        .chiffres-cles-desc {
          display: flex;
          flex-direction: column;
          gap: 0px;
          width: 100%;
        }
        .custom-container {
          padding: 0 20px;
        }
        .chiffres-cles-section .sub-title {
          font-size: 14px;
          margin-bottom: 20px;
          margin-top: 45px;
        }
        .chiffres-cles-item {
          padding: 10px 24px 20px;
          border-bottom-left-radius: 30px;
          border-bottom-right-radius: 30px;
        }
        .chiffres-cles-item:first-child {
          margin-top: 0;
          padding-top: 160px;
        }
        .chiffres-cles-item:nth-child(2),
        .chiffres-cles-item:nth-child(3),
        .chiffres-cles-item:nth-child(4) {
          padding-top: 70px;
        }
        .chiffres-cles-bottom {
          padding-top: 5px;
        }
        .chiffres-cles-number-title {
          margin-bottom: 15px;
        }
		    .contact-section.institutional-page .section-heading-wrapper {
			  margin-top: 0;
			  padding-top: 0px !important;
			  padding-bottom: 0px !important;
		  }
      }

      @media (max-width: 540px) {
        .chiffres-cles-desc-value {
          font-size: 80px;
        }
        .chiffres-cles-desc-value span {
          font-size: 20px;
        }
      }
      @media (max-width: 450px) {
        .chiffres-cles-section .separator-line {
          max-width: 320px;
          width: 82%;
        }
        .chiffres-cles-content-wrapper {
          max-width: 320px;
          width: 100%;
          padding: 0 20px;
        }
        .chiffres-cles-section .sub-title {
          font-size: 14px;
          margin: 20px auto;
          padding: 0 40px;
          max-width: 320px;
        }
        .chiffres-cles-number-title {
          font-size: 18px;
         
        }
        .chiffres-cles-desc-value {
          font-size: 54px;
          width: 260px;
        }
        .chiffres-cles-desc-value span {
          font-size: 16px;
        }
        .chiffres-cles-bottom {
          margin-left: 0px;
          gap: 10px;
        }
        .chiffres-cles-title {
          font-size: 20px;
        }
      }
      @media (max-width: 400px) {
        .chiffres-cles-section .separator-line {
          max-width: 270px !important;
          width: 100%;
        }
        .chiffres-cles-content-wrapper {
          max-width: 260px !important;
          width: 100%;
          padding: 0px;
        }
        .chiffres-cles-section .sub-title {
          font-size: 14px;
          margin: 20px auto;
          padding: 0 0px;
          max-width:260px;
        }
		 
      }

/* ----------------------------institutional page - infomative section css----------- */


.main-wrapper {
        width: 100%;
        position: relative;
        background-color: var(--light-bg);
      }

      /* Background Pattern - spans BOTH sections */
      .main-wrapper::before {
        content: "";
        position: absolute;
        top: -665px;
        left: 0px;
        right: 0;
        bottom: 0;
        background-image: url(../images/institutional_vector.png);
        background-size: 53% auto;
        background-position: left center;
        background-repeat: no-repeat;
        opacity: 0.7;
        z-index: 0;
      }

      /* À Propos de Nous Section */
      .about-section {
        width: 100%;
        background-color: transparent;
        position: relative;
        z-index: 1;
        padding: 70px 0 80px;
      }

      .about-content-wrapper {
        max-width: var(--container-xl);
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: start;
      }

      /* Left Column - Map */
      .about-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 50%;
      }

      .about-main-title {
        color: var(--brand-orange);
        font-size: 60px;
        font-weight: 700;
        font-family: "Gotham", sans-serif;
        margin: 0 0 45px 0;
        line-height: 1.15;
      }

      .map-container {
        width: 100%;
        position: relative;
      }

      .map-container img {
        width: 614px;
        height: auto;
        display: block;
      }

      /* Right Column - Content */
      .about-right {
        display: flex;
        flex-direction: column;
        gap: 55px;
        padding-top: 0;
        max-width: 50%;
      }

      .content-block {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .content-block h3 {
        color: var(--brand-orange);
        font-size: 46px;
        font-weight: 400;
        font-family: "Gotham Book", sans-serif;
        margin: 0;
        line-height: 122%;
  	  letter-spacing: -0.5px;		
        margin-top: 14px;
      }

      .content-block p {
        color: var(--brand-black);
        font-size: 24px;
        font-family: "Gotham Light", sans-serif;
        font-weight: 400;
        line-height: 130%;
        margin: 0 0 8px 0;
        letter-spacing: -0.5px;
      }

      .content-block p:last-child {
        margin-bottom: 0;
      }

      /* Governance Section */
      .governance-section {
        width: 100%;
        position: relative;
        z-index: 1;
        padding: 50px 0 70px;
      }

      /* Orange separator line */
      .governance-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 90px);
        max-width: 1342px;
        padding: 1px;
        background-color: var(--brand-orange);
      }

      .governance-content-wrapper {
        max-width: var(--container-xl);
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      /* Block 1 - Title Block */
      .governance-header {
        display: flex;
        gap: 40px;
        align-items: flex-start;
      }

      .governance-title {
        color: var(--brand-orange);
        font-size: 60px;
        font-weight: 700;
        font-family: "Gotham", sans-serif;
        line-height: 1.15;
        flex: 1;
        margin: 0;
      }

      .president-title-header {
        color: var(--brand-orange);
        font-size: 40px;
        font-weight: 400;
        font-family: "Gotham-Book", sans-serif;
        line-height: 122%;
        letter-spacing: -0.5px;
        flex: 1;
        max-width: 600px;
        margin: 0;
      }

      /* Block 2 - President Section */
      .president-section {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
      }

      .president-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 50%;
      }

      .president-image-container img {
        width: 100%;
        max-width: 370px;
        height: auto;
        display: block;
      }

      .president-message {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 600px;
      }

      .president-message p {
           color: var(--brand-black);
            font-size: 24px;
            font-family: "Gotham Light", sans-serif;
            line-height: 130%;
            margin: 0 0 8px 0;
            letter-spacing: -0.5px;
      }

      .president-message p.president-signature {
        color: var(--brand-black);
        font-weight: 700 !important;
        font-family: "Gotham", system-ui, -apple-system, sans-serif !important;
        margin: 10px 0 80px 0 !important;
        letter-spacing: -0.5px;
      }

      /* Block 3 - Composition Grid */
      .composition-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .composition-block {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .composition-title {
        color: var(--brand-orange);
        font-size: 32px;
        font-weight: 400;
        font-family: "Gotham Book", sans-serif;
        line-height: 122%;
        margin: 0;
        letter-spacing: -0.5px;
      }

      .composition-content {
           color: var(--brand-black);
            font-size: 24px;
            font-family: "Gotham Light", sans-serif;
            line-height: 130%;
            margin: 0;
            letter-spacing: -0.5px;
      }

      /* ========================================
           RESPONSIVE BREAKPOINTS
           ======================================== */

      /* 1200px to 1200px */
      @media (max-width: 1600px) {
        .about-content-wrapper {
          max-width: var(--container-lg);
          padding: 0 60px;
          gap: 25px;
        }

        .governance-content-wrapper {
          max-width: var(--container-lg);
          padding: 0 60px;
          gap: 25px;
        }

        .about-section {
          padding: 40px 0 70px;
        }
        .map-container img {
          width: 100%;
          height: auto;
          display: block;
        }

        .governance-section {
          padding: 45px 0 60px;
        }
        .governance-header {
          gap: 0px;
        }

        .about-main-title,
        .governance-title {
          font-size: 46px;
        }

        .president-title-header {
          font-size: 36px;
          max-width: 550px;
        }

        .content-block h3 {
          font-size: 36px;
          margin-top: 8px;
        }
        .content-block p {
          font-size: 20px;
        }

        .president-image-container img {
          width: 340px;
        }

        .president-message {
          max-width: 550px;
        }
        .president-signature {
          font-size: 20px;
          margin: 18px 0 50px 0 !important;
        }

        .composition-grid {
          gap: 0px;
        }
        .composition-title {
          font-size: 24px;
        }
        .president-message p,
        .composition-content {
          font-size: 20px;
        }
		      .chiffres-cles-content-wrapper  {
        max-width: 1100px;
    }
      }

      /* 768px to 991px */
      @media (max-width: 991px) {
        .about-content-wrapper {
          max-width: var(--container-md);
          padding: 0 30px;
          gap: 20px;
        }
        .about-main-title,
        .governance-title {
          font-size: 40px;
        }
        .content-block h3 {
          font-size: 32px;
          margin-top: 6px;
        }
        .president-title-header {
          font-size: 32px;
        }
        .content-block p {
          font-size: 18px;
        }
        .president-message p,
        .composition-content {
          font-size: 18px;
        }
        .governance-section {
          padding: 45px 30px 60px;
          margin: 0 auto;
          max-width: var(--container-md);
        }
        .governance-section::before {
          width: calc(100% - 30px);
        }
        .governance-content-wrapper {
          padding: 0;
          gap: 20px;
        }
        .president-image-container img {
          width: 300px;
        }
        .president-signature {
          font-size: 20px;
          margin: 0px 0 25px 0 !important;
        }
      }
      /* 450px to 767px */
      @media (max-width: 767px) {
        .main-wrapper::before {
          top: -300px;
          left: 0px;
          right: 0;
          bottom: 0;
          background-image: url(../images/institutional_vector_mob.png);
          background-size: 80% auto;
        }
        .about-content-wrapper {
          max-width: var(--container-sm);
          flex-direction: column;
          padding: 0px 40px;
        }
        .governance-section {
          padding: 45px 40px 60px;
          margin: 0 auto;
          max-width: var(--container-sm);
        }
        .governance-section::before {
          padding: 1px;
          width: calc(100% - 50px);
        }
        .about-left,
        .about-right {
          max-width: 100%;
          gap: 20px;
        }
        .governance-header,
        .president-section {
          flex-direction: column;
          gap: 18px;
        }
        .about-main-title,
        .governance-title {
          font-size: 32px;
        }
        .president-message p,
        .composition-content {
          font-size: 14px;
        }
        .content-block {
          gap: 10px;
        }
        .content-block h3 {
          font-size: 24px;
          margin-top: 6px;
        }
        .content-block p {
          font-size: 14px;
        }
        .map-container {
          width: 70%;
          display: flex;
          margin: 0 auto;
        }
        .president-title-header {
          font-size: 24px;
        }
        .composition-title {
          font-size: 20px;
        }
        .president-image-container img {
          width: 190px;
        }
        .president-signature {
          margin-bottom: 10px !important;
        }
        .composition-grid {
          display: flex;
          flex-direction: column;
          gap: 25px;
        }
        .president-message {
          gap: 5px;
        }
        .president-message p.president-signature{
 		   margin: 0px 0 10px 0 !important;
         }
      }
      /* 320px to 449px */
      @media (max-width: 449px) {
        .main-wrapper::before {
          top: -640px;
          left: 0;
          right: 65px;
          bottom: 0;
          background-size: 100% auto;
        }
        .about-content-wrapper {
          padding: 0;
          max-width: 320px;
        }
        .governance-section {
          padding: 35px 0px 40px;
          max-width: 320px;
        }
        .governance-section::before {
          width: calc(100% + 30px);
        }
        .about-main-title {
          margin-bottom: 30px;
        }
        .about-section {
          padding: 20px 0 30px;
        }
        .about-left,
        .about-right {
          width: 100%;
          gap: 12px;
        }
        .map-container {
          width: auto;
        }
        .map-container img {
          width: 260px;
        }
        .content-block h3 {
          font-size: 19px;
          margin-bottom: 10px;
        }
        .content-block p {
          font-size: 10px;
        }
        .president-image-container img {
          width: 125px;
        }
        .president-title-header,.composition-title {
          font-size: 19px;
        }
        .president-message p,
        .composition-content {
          font-size: 10px;
        }
		  .chiffres-cles-section .custom-container {
    padding: 20px 40px 60px;
}
      }
@media (max-width: 400px) {
    .about-content-wrapper {
        padding: 0;
        max-width: 260px;
    }
	    .governance-content-wrapper {
        max-width: 260px;
    }
	 .chiffres-cles-section .custom-container {
        padding: 20px 10px 30px;
    }
    
}
@media (max-width: 350px) {
    .governance-section::before {
        width: calc(100% + 30px);
        max-width: 100%;
    }
}
      @media (max-width: 320px) {
        .about-content-wrapper {
          padding: 0;
          max-width: 280px;
        }
        .governance-section {
          padding: 35px 0px 40px;
          max-width: 380px;
        }
      }


.institutionaal-hero{
	background:#ebebeb;
}
.contact-section.institutional-page .section-heading-wrapper{
	margin-top:0;
	padding-top:40px;
	padding-bottom:40px;
	background: var(--footer-bg);
	}
.contact-section.institutional-page .section-heading-wrapper .section-heading{
color: var(--color-primary);	
}

section.contact-section.institutional-page{
    z-index: 2;
    position: relative;
}

/* ---video section---- */
.careers-section {
  padding: 60px 20px 70px;
  background: #ebebeb;
  background-image: url("../images/video-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

/* Header */
.careers-header {
  text-align: center;
  
  margin: 0 auto 50px;
}

.careers-title {
  color: var(--color-orange);
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 16px;
	width:100%;
	text-align:left;
	max-width:1290px;
	margin:auto;
	margin-bottom:40px;
	color:var(--color-primary);
}

.careers-description {
  color: #000000;
  font-size:22px;
  line-height: 130%;
	max-width: 1000px;
	margin:auto;
}

/* Video wrapper */
.careers-video-wrapper {
  display: flex;
  justify-content: center;
}

/* Video container */
.careers-video {
  width: 100%;
  max-width: 1290px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #ccc;
}

/* Poster */
.video-poster {
  position: absolute;
  inset: 0;
  background: #cfcfcf center/cover no-repeat;
}

/* Big Play Button */
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(0,0,0,0.65);
  transform: scale(1.08);
}

/* Triangle icon */
.play-icon {
  width: 0;
  height: 0;
  border-left: 28px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
}
.video-iframe{
  width: 100%;
  height: 100%;
	object-fit:contain;
}
/* iframe wrapper */
.video-iframe video {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hide poster + button when playing */
.careers-video.playing .video-poster,
.careers-video.playing .video-play-btn {
  display: none;
}

/* ================= BREAKPOINTS ================= */

@media (max-width: 1600px) { 
	.careers-video, .careers-title { max-width: 1100px; } 
	.careers-title {
		font-size:50px;
	}
}
@media (max-width: 1200px) { .careers-video, .careers-title { max-width: 880px; } 
	.careers-title {
		font-size:50px;
	}
}
@media (max-width: 900px)  {
	.careers-video, .careers-title { max-width: 690px; } 
.careers-title {
		font-size:38px;
	}
}
@media (max-width: 768px)  { .careers-video, .careers-title { max-width: 540px; } 
.careers-title {
		font-size:28px;
	}
	.video-play-btn {
    width: 60px;
		height: 60px;}
	.play-icon {
    border-left: 14px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
	.careers-section {
  padding-top:20px;
  background: #ebebeb;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
}
@media (max-width: 540px)  { 
	.careers-video {
		max-width: 400px;
		width:100%;
	} 
.careers-title {
	max-width: 320px;
		font-size:20px;
	 margin-bottom:20px;
	}
	.careers-description{
		max-width:320px;
		margin:auto;
		font-size:12px;
	}
	.careers-header {
    margin: 0 auto 30px;
}
}
@media (max-width: 400px)  { 
	.careers-section .custom-container {
        padding: 0 0px;
    }
	.careers-video{
	max-width: 380px;
		width:100%;
	}
	.careers-title { max-width: 260px; } 
.careers-description{
		max-width:260px;
	font-size:10px;
	}
    .careers-section {
    padding-bottom: 40px;
    }
    }
    .footer-col.footer-social {
    display: none;
}