* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  color: #111;
  line-height: 1.6;
  background-color: #fff;
}

html {
  font-size: 80%;
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 32px;
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  box-shadow: none;
  height: 64px;
  transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.logo {
  margin-right: 32px;
  padding: 0;
  background: transparent !important;
  display: flex;
  align-items: center;
  height: 64px;
}

.logo img {
  width: 80px;
  height: 80px;
  display: block;
  margin-top: 12px;
}

.nav-menu {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 64px;
  background: transparent;
  align-items: center;
  height: 64px;
  font-family: 'Newsreader', serif;
}

.nav-menu a {
  margin-left: 0;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
  font-family: 'Newsreader', serif;
}

 
.index-page .nav-menu a {
  color: #fff;
}

 
.nav-menu a.active,
.nav-menu a:hover {
  color: rgba(0,254,251,255) !important;
}

 
header.scrolled .nav-menu a {
  color: #000;
}


body:not(.index-page) .nav-menu a {
  color: #000;
}

header.scrolled .nav-menu a:hover,
header.scrolled .nav-menu a.active {
  color: rgba(0,254,251,255);
}

header:not(.scrolled) .nav-menu a.active {
  color: rgba(0,254,251,255);
}

header.scrolled .nav-menu a.active {
  color: rgba(0,254,251,255);
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #111;
  font-weight: bold;
  transition: color 0.2s;
}

nav a:hover {
  color: rgba(0,254,251,255);
}

nav a.active {
  color: #0074d9;
}

.hero {
  display: block;
  padding: 0;
  background: white;
  text-align: center;
}

.hero-bg {
  position: relative;
  min-height: 480px;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-image.jpg') center center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.7);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 336px;
}

.hero-text {
  padding: 48px 0;
  color: #fff;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-text h1 {
  font-family: 'Newsreader', serif;
  font-size: 28.8px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.hero-text h1 .title-left,
.hero-text h1 .title-right {
  display: inline-block;
  font-weight: 700;
}

.index-page .hero-text h1 .title-left {
  animation: slideInFromLeft 2s ease-out;
  animation-delay: 0s;
}

.index-page .hero-text h1 .title-right {
  animation: slideInFromRight 2s ease-out;
  animation-delay: 0s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.presentation {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  background: #222;
  padding: 0;
  margin: 0;
  min-height: 416px;
  border-top: 0px solid #fff;
  position: relative;
  margin-bottom: 0.5px;
}

.presentation-reversed {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: flex-start;
  background: #222;
  padding: 0;
  margin: 0;
  min-height: 520px;
  border-top: 0px solid #fff;
  position: relative;
  margin-bottom: 5px;
}

.presentation-reversed .presentation-image-col {
  background: url('images/imgside2.jpg') center/cover no-repeat;
}

.presentation-content-col {
  flex: 0 0 60%;
  max-width: 60%;
  background: #222;
  color: #fff !important;
  padding: 48px 32px 32px 4.8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 2;
}

.presentation-card-title,
.presentation-card-text {
  color:#000;
}

.presentation-image-col {
  flex: 0 0 40%;
  max-width: 40%;
  min-height: 416px;
}

 
.index-page .presentation-image-col {
  background: url('images/imgside.jpg') center/cover no-repeat;
}

 
.secteurs-activite .presentation-image-col {
  background: url('images/sectactivi.jpg') center/cover no-repeat;
}

 
.rgpd-innovation .presentation-image-col {
  background: url('images/rgpd.jpg') center/cover no-repeat;
}

.presentation-side-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.presentation-title {
  font-family: 'Newsreader', serif;
  font-size: 25.6px;
  font-weight: 700;
  margin: 48px 0 24px 0;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  width: 100%;
}

.title-line-1 {
  display: block;
  margin-bottom: 10px;
}

.title-line-2 {
  display: block;
}

.presentation-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 19px;
  margin-bottom: 16px;
  gap: 19px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.presentation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.presentation-card-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: #edeafd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presentation-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.presentation-card-title {
  font-family: 'Newsreader', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a2633;
}

.presentation-card-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
  position: relative;
  padding-left: 20px;
  color: #3b4a5a;
}

.presentation-card-text:before {
  content: '➔';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0,254,251,255);
  font-size: 13.5px;
  line-height: 1.5;
}

.text-block {
  max-width: 50%;
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-block p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  gap: 40px;
}

.stats div {
  font-size: 1rem;
}

.presentation img {
  width: 40%;
  border-radius: 10px;
}

.contact-section {
  background: #222;
  color: #fff;
  padding: 48px 40px;
}

.contact-section h2 {
  font-family: 'Newsreader', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-infos {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}

.contact-infos div {
  min-width: 160px;
}

.contact-infos h3 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: rgba(0,254,251,255);
  font-weight: 600;
}

.contact-infos p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-form-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 40%;
  gap: 20px;
}

.contact-form-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 600;
  background: #fff;
  color: #222;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: rgba(0,254,251,255);
  color: #fff;
}

.map-container {
  position: relative;
  margin-top: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.map-container iframe {
  height: 360px;
}

.identity-hero {
  background: #e3e9f2;
  padding: 48px 0;
  text-align: center;
}

.identity-hero h1 {
  font-size: 33.6px;
  font-weight: bold;
  color: #222;
  letter-spacing: 2px;
}

.identity-main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  position: relative;
  margin: 0 auto 0 auto;
  max-width: 880px;
  z-index: 2;
}

.identity-card {
  padding: 40px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  font-size: 1rem;
  flex: 1 1 420px;
  min-width: 256px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.white-card {
  background: #fff;
  color: #222;
}

.card-red {
  background-color: rgba(0,254,251,255);
  color: #fff;
}

.red-card {
  background: rgba(0,254,251,255);
  color: #fff;
}

.identity-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.identity-card-header .icon {
  margin-right: 10px;
}

.identity-card h2 {
  font-size: 21px;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
}

.identity-card p {
  font-size: 13.6px;
  font-weight: normal;
  margin-top: 18px;
}

.red-card p {
  color: #fff;
}

@media (max-width: 1100px) {
  .identity-main {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 95vw;
  }
  .identity-card {
    max-width: 95vw;
    min-width: unset;
    padding: 24px 8px;
    font-size: 0.84rem;
  }
}

.map-view-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: none;
  margin-bottom: 0;
}

.map-btn {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #222;
  font-family: 'Newsreader', serif;
  font-size: 22px;
  font-weight: normal;
  padding: 8px 24px;
  cursor: pointer;
  outline: none;
  border-radius: 6px 6px 0 0;
  margin-right: -1.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, font-weight 0.2s, background 0.2s;
  z-index: 1;
  position: relative;
  border-bottom: none;
}

.map-btn:last-child {
  margin-right: 0;
}

.map-btn.active {
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #fff;
  z-index: 2;
}

.wrapper {
  position: relative;
  padding: 5rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.black-bg {
  background-color: #1e1e1e;
  width: 300px;
  height: 420px;
  position: absolute;
  top: 60px;
  left: 100px;
  z-index: 0;
  border-radius: 10px;
}

.about {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 500px;
  max-width: 95vw;
  font-family: inherit;
}

.card-white {
  background-color: #fff;
  color: #000;
}

.card h2 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.card p {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .about {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .black-bg {
    display: none;
  }
  .card {
    width: 95vw;
    padding: 1.2rem;
  }
}

.index-page {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.histoire-block {
  background: #fff;
  max-width: 600px;
  margin: 12px auto 60px auto;
  padding: 50px 0;
  border-radius: 0;
  text-align: center;
}

.histoire-block h2 {
  font-family: 'Newsreader', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  color: #111;
}

.qui-sommes-nous-block {
  background: #fff;
  max-width: 98%;
  margin: 0 auto 40px auto;
  padding: 30px 40px 30px 40px;
  border-radius: 0;
  text-align: center;
}

.qui-sommes-nous-block h3 {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #111;
}

.qui-sommes-nous-block p {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 1.3rem;
  color: #111;
  margin: 0;
  line-height: 1.25;
}

.footer-jdo {
  text-align: center;
  color: #888;
  font-size: 1rem;
  padding: 30px 0 15px 0;
  background: none;
  letter-spacing: 1px;
  font-family: 'Work Sans', sans-serif;
}

.attributions {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  margin: 20px 0 0 0;
  font-family: 'Work Sans', sans-serif;
}

.attributions a {
  color: #888;
  text-decoration: underline;
  margin: 0 4px;
}

.contact-split {
  display: flex;
  min-height: 500px;
  background: none;
  padding: 0;
}

.contact-left, .contact-right {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left {
  background: #fff;
}

.contact-brand {
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

.contact-desc {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: flex;
  gap: 18px;
}

.contact-form-modern input,
.contact-form-modern textarea {
  font-size: 1rem;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  width: 100%;
  font-family: inherit;
}

.contact-form-modern textarea {
  min-height: 70px;
  resize: vertical;
}

.contact-form-modern button {
  width: 120px;
  padding: 10px 0;
  background: #fff;
  border: 1.5px solid #222;
  color: #222;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-form-modern button:hover {
  background: #222;
  color: #fff;
}

.contact-right {
  background: #111;
  color: #fff;
  position: relative;
}

.contact-city {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-phone a {
  color: rgba(0,254,251,255);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-mail a {
  color: rgba(0,254,251,255);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

.contact-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  text-align: right;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 2px;
}

.menu-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background: rgba(0,254,251,255);
  border-radius: 2px;
}

.menu-label {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .contact-form {
    flex-direction: column;
  }
  .contact-form-left, .contact-form-right {
    width: 100%;
  }
  .contact-form button {
    align-self: stretch;
  }
}

.align-cols {
  display: flex;
  gap: 20px;
}

.contact-col-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 350px;
  max-width: 400px;
  gap: 20px;
}

.contact-col-left input,
.contact-col-left button {
  width: 100%;
  height: 60px;
  font-size: 1.2rem;
  box-sizing: border-box;
}

.contact-col-left button {
  margin-top: 0;
  align-self: stretch;
}

.contact-col-right textarea {
  width: 430px;
  height: 160px;
  min-height: calc(60px * 2 + 20px);
  font-size: 1.2rem;
  resize: none;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .align-cols {
    flex-direction: column;
  }
  .contact-col-left, .contact-col-right {
    max-width: 100%;
  }
  .contact-col-right textarea {
    width: 100%;
  }
}
.clients-list {
  padding: 120px 40px 60px 40px;
  background: #fff;
}

.clients-list h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Newsreader', serif;
  animation: fade-in-down 1s ease-out;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin-top: 60px;
  padding: 20px;
}

.client-logo {
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fade-in-down 1s ease-out;
  animation-fill-mode: both;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.client-logo img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
}

.client-grid .client-logo:nth-child(1) { animation-delay: 0.1s; }
.client-grid .client-logo:nth-child(2) { animation-delay: 0.2s; }
.client-grid .client-logo:nth-child(3) { animation-delay: 0.3s; }
.client-grid .client-logo:nth-child(4) { animation-delay: 0.4s; }
.client-grid .client-logo:nth-child(5) { animation-delay: 0.5s; }
.client-grid .client-logo:nth-child(6) { animation-delay: 0.6s; }
.client-grid .client-logo:nth-child(7) { animation-delay: 0.7s; }
.client-grid .client-logo:nth-child(8) { animation-delay: 0.8s; }
.client-grid .client-logo:nth-child(9) { animation-delay: 0.9s; }
.client-grid .client-logo:nth-child(10) { animation-delay: 1s; }
.client-grid .client-logo:nth-child(11) { animation-delay: 1.1s; }
.client-grid .client-logo:nth-child(12) { animation-delay: 1.2s; }
.client-grid .client-logo:nth-child(13) { animation-delay: 1.3s; }
.client-grid .client-logo:nth-child(14) { animation-delay: 1.4s; }
.client-grid .client-logo:nth-child(15) { animation-delay: 1.5s; }
.client-grid .client-logo:nth-child(16) { animation-delay: 1.6s; }

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

 
body:not(.index-page) .nav-menu a {
  color: #000;
}

body:not(.index-page) .nav-menu a:hover,
body:not(.index-page) .nav-menu a.active {
  color: rgba(0,254,251,255);
}

 
.approche1-bg .presentation-image-col {
  background: url('images/approche1.jpg') center/cover no-repeat;
}

.approche2-bg .presentation-image-col {
  background: url('images/approche2.jpg') center/cover no-repeat;
}

.language-selector {
  display: flex;
  gap: 10px;
  margin-left: 40px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.lang-btn.active {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0,254,251,255);
  border-radius: 2px;
}

 
body.offre-page .nav-menu a,
body.identite-page .nav-menu a {
  color: #fff;
}

body.offre-page .nav-menu a:hover,
body.offre-page .nav-menu a.active,
body.identite-page .nav-menu a:hover,
body.identite-page .nav-menu a.active {
  color: rgba(0,254,251,255);
}

@media (max-width: 900px) {
  .presentation,
  .presentation-reversed {
    flex-direction: column;
    min-height: unset;
  }

  .presentation-content-col,
  .presentation-image-col {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 250px;
    padding: 32px 20px;
  }

  .presentation-reversed .presentation-image-col {
    order: -1; 
  }

  .presentation-title {
    font-size: 28px;
    margin-top: 24px;
  }

  .presentation-card {
    padding: 16px;
    gap: 16px;
  }

  .presentation-card-title {
    font-size: 14px;
  }

  .presentation-card-text {
    font-size: 10px;
    padding-left: 15px;
  }

  .presentation-card-text:before {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;  
  }

  .logo {
    margin-right: 0;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .contact-infos {
    flex-direction: column;
    gap: 24px;
  }

  .contact-section {
    padding: 32px 20px;
  }

  .contact-col-left,
  .contact-col-right {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .contact-col-right textarea {
    width: 100%;
    min-height: 120px;
  }

  .clients-list {
    padding: 80px 20px 40px 20px;
  }

  .client-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 0;
  }

  .client-logo img {
    max-width: 120px;
    max-height: 60px;
  }

  .map-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 20px;
  }
}

