
:root{
  --steel:#2f5570;
  --dark:#2b2b2b;
  --muted:#6b6b6b;
  --bg:#ffffff;
  --maxw:1100px;
  --gap:1.25rem;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--dark);line-height:1.5}
.header{background:#fff;position:fixed;top:0;left:0;right:0;border-bottom:1px solid #eee;z-index:50}
.container{max-width:var(--maxw);margin:0 auto;padding:0 1rem}
.nav{display:flex;align-items:center;justify-content:space-between;padding:0.9rem 0}
.brand{display:flex;align-items:center;gap:0.75rem}
.logo{width:44px;height:44px;border-radius:6px;background:linear-gradient(180deg,var(--steel),#4a7b95);display:flex;align-items:center;justify-content:center;color:white;font-weight:700}
.menu{display:flex;gap:0.75rem;align-items:center}
.menu a{text-decoration:none;color:var(--dark);padding:0.45rem;font-weight:600}
.lang-switch button{border:1px solid transparent;background:transparent;padding:0.35rem 0.55rem;border-radius:6px;cursor:pointer;font-weight:700}
.lang-switch button.active{background:var(--steel);color:white}
main{padding-top:86px;padding-bottom:3rem}
.hero{padding:2.25rem 0}
h1{margin:0 0 0.5rem 0;color:var(--steel)}
.lead{color:var(--muted);max-width:75ch}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-top:1rem}
.card{background:#fff;padding:1rem;border-radius:8px;border:1px solid #f3f3f3;box-shadow:0 6px 18px rgba(29,41,52,0.04)}
.section{padding:1.5rem 0;border-top:1px solid #f6f6f6}
footer{padding:1rem 0;color:var(--muted);border-top:1px solid #f2f2f2;font-size:0.95rem}
@media (max-width:900px){.grid{grid-template-columns:1fr}.lead{max-width:100%}.menu a{display:none}}
form{display:grid;gap:0.6rem;max-width:540px}
input,textarea,select{padding:0.6rem;border-radius:8px;border:1px solid #e1e1e1}
button.primary{background:var(--steel);color:#fff;padding:0.6rem;border-radius:8px;border:0;font-weight:700}
.small{font-size:0.95rem;color:var(--muted)}
a.cta{display:inline-block;padding:0.5rem 0.8rem;border-radius:8px;background:var(--steel);color:#fff;text-decoration:none;font-weight:700}



:root {
  --header-height: 86px; /* hauteur du header */
}

main {
  padding-top: var(--header-height);
  padding-bottom: 3rem;
}



.hero {
  padding: calc(var(--header-height) + 2rem) 0 2.25rem 0;
}


section {
  scroll-margin-top: var(--header-height);
}


.skills-row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.skill-card {
  position: relative;
  flex: 1 1 calc(33.333% - 1.25rem);
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skill-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card .overlay {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  z-index: 2;
}

.skill-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.skill-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 900px) {
  .skill-card {
    flex: 1 1 calc(50% - 1.25rem);
    height: 280px;
  }
}

@media (max-width: 600px) {
  .skill-card {
    flex: 1 1 100%;
    height: 260px;
  }
}


.video-card {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.video-card:hover::before {
  opacity: 1;
}

.video-card .overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

/* --- HERO VIDEO SECTION --- */
.hero-video {
  position: relative;
  height: 80vh; /* pleine hauteur visible */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content .lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-content h1,
.hero-content .lead {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}





/* ===== VALEURS & CULTURE ===== */
.valeurs-section {
  background: linear-gradient(135deg, #1b2a41 0%, #2e3b55 40%, #f5f6fa 100%);
  color: #fff;
  padding: 5rem 2rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.valeurs-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px; /* ✅ Coins arrondis */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); /* ✅ Ombre douce */
  padding: 3rem 2rem;
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.valeurs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/blue_pattern.svg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.valeurs-content h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.valeurs-texte ul {
  list-style: none;
  padding: 0;
}

.valeurs-texte li {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.2rem;
  border-left: 4px solid #2ab0ff;
  border-radius: 10px;
  line-height: 1.6;
}

.valeurs-citation blockquote {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 16px;
  font-style: italic;
  font-size: 1.1rem;
  color: #e3e9f2;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.valeurs-citation .auteur {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #aad8ff;
}

/* Responsive */
@media (max-width: 900px) {
  .valeurs-grid {
    grid-template-columns: 1fr;
  }
  .valeurs-content {
    padding: 2rem 1.5rem;
  }
}


/* --- Domaines d'expertise --- */
.expertise .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.image-container .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent, #004aad);
  color: #fff;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-content {
  background: linear-gradient(135deg, #f3f6fb 0%, #e9eef7 100%);
  padding: 1.5rem;
  text-align: left;
}

.service-content h3 {
  color: #0b1f4e;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* MÉTHODOLOGIE - TIMELINE */
.methodology-section {
  background: linear-gradient(135deg, #f7f9fc, #eaf0f6);
  padding: 4rem 2rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.methodology-section h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.methodology-section .lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
  font-size: 1.1rem;
}

/* Timeline container */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
}

/* Ligne centrale */
.timeline::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 4px;
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
  from { opacity: 0.7; box-shadow: 0 0 8px var(--accent); }
  to { opacity: 1; box-shadow: 0 0 16px var(--primary); }
}

/* Étape */
.timeline-step {
  background: white;
  border-radius: 16px;
  padding: 2rem 1rem;
  width: 30%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Icône circulaire */
.icon-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Remplit le cercle sans déformation */
  border-radius: 50%;     /* Rend l’image parfaitement circulaire */
}


.timeline-step h3 {
  margin: 0.5rem 0;
  color: var(--text);
  font-weight: 600;
}

.timeline-step p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline::before {
    display: none;
  }
  .timeline-step {
    width: 90%;
    margin-bottom: 2rem;
  }
}


.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sector-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sector-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-card:hover .sector-image img {
  transform: scale(1.1);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sector-info {
  background: linear-gradient(135deg, var(--light-bg), #ffffff);
  padding: 1.5rem;
  text-align: left;
}

.sector-info h3 {
  margin-bottom: 0.5rem;
  color: var(--text-strong);
}

.sector-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}













/* === HERO SCROLLING BACKGROUND === */
.hero-scroll {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #b9b9b9 0%, #9ecfffe5 100%);
  color: #222;
}

.scroll-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0.08;
  animation: scrollText 20s linear infinite;
}

.scroll-text {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 4rem;
}

/* Animation du texte en fond */
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CONTENU CENTRAL === */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-inner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #0d6efd, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-inner p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

/* Effet subtil sur hover (optionnel) */
.hero-scroll:hover .scroll-background {
  animation-duration: 25s;
  opacity: 0.12;
  transition: opacity 0.3s ease;
}










/* --- RECHERCHE ET INNOVATION --- */
.innovation-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a0f1c 0%, #091a2e 100%);
}

.innovation-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 153, 255, 0.25), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(0, 255, 204, 0.15), transparent 60%);
  filter: blur(90px);
  z-index: 0;
}

.innovation-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.innovation-text {
  flex: 1 1 45%;
}

.innovation-text h2 {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.innovation-text .lead {
  color: #cfd9e3;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.innovation-list {
  list-style: none;
  padding: 0;
}

.innovation-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
  color: #dfe8f1;
}

.innovation-list li::before {
  content: "•";
  color: #00aaff;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.innovation-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.innovation-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.2);
  transition: transform 0.4s ease;
}

.innovation-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .innovation-content {
    flex-direction: column;
    text-align: center;
  }

  .innovation-text,
  .innovation-image {
    flex: 1 1 100%;
  }
}













/* --- Style spécifique à la page Partenariats --- */

.hero-partners {
  text-align: center;
  padding: 6rem 1rem 4rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: rgb(27, 24, 24);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.hero-partners::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15), transparent 70%);
}

.hero-partners h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-partners p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* --- Section Collaborations --- */
.collab-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.collab-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.collab-section .text {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- Logos Partenaires --- */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
  padding: 2rem 0;
}

.partner-logos img {
  width: 120px;
  filter: grayscale(100%) opacity(0.8);
  transition: 0.3s;
}

.partner-logos img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* --- Témoignages Collaborateurs --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

/* --- Section Opportunités --- */
.opportunities {
  text-align: center;
  background: var(--muted-light);
  padding: 4rem 2rem;
  border-radius: 10px;
}

.opportunities h2 {
  margin-bottom: 1rem;
}

.opportunities p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.opportunities a.cta {
  background: var(--accent);
  color: rgb(17, 16, 16);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.opportunities a.cta:hover {
  background: var(--accent-dark);
}



.opportunities {
  text-align: center;
  padding: 80px 20px;
  background: #f5f7fa;
  border-radius: 20px;
}

.opportunities h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
}

.opportunities p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Style du bouton CTA */
.cta {
  display: inline-block;
  background: #003366; /* Bleu foncé IPE */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}
.cta:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}


















/* ================================
   STYLES UNIQUES À LA PAGE D'ACCUEIL
   ================================ */
.home-page main {
  overflow: hidden;
}

/* ----- HERO ----- */
.home-page .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #f0f4fa, #ffffff);
  padding: 100px 10%;
}

.home-page .hero-left {
  flex: 1 1 40%;
  text-align: center;
}

.home-page .hero-photo {
  width: 85%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.home-page .hero-right {
  flex: 1 1 55%;
}

.home-page .hero h1 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 1rem;
}

.home-page .hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.home-page .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.home-page .hero-stats div {
  text-align: center;
}

.home-page .hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: #003366;
}

/* ----- BUTTONS ----- */
.home-page .btn,
.home-page .btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-page .btn {
  background: #003366;
  color: white;
}

.home-page .btn:hover {
  background: #0056b3;
}

.home-page .btn-outline {
  border: 2px solid white;
  color: white;
}

.home-page .btn-outline:hover {
  background: white;
  color: #003366;
}

/* ----- SKILLS ----- */
.home-page .skills.section {
  background: #fff;
}

.home-page .skills h2 {
  color: #003366;
  margin-bottom: 1.5rem;
}

.home-page .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.home-page .skill-card {
  display: flex;
  flex-direction: column;
  background: #f8f9fc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.home-page .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* --- Image bien intégrée --- */
.home-page .skill-card img {
  width: 100%;
  height: 180px;              /* taille uniforme */
  object-fit: cover;          /* remplit bien le cadre sans déformation */
  display: block;
}

/* --- Contenu texte de la carte --- */
.home-page .skill-card h3 {
  font-size: 1.1rem;
  color: #003366;
  margin: 1rem 1rem 0.5rem;
  text-align: center;
}

.home-page .skill-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 1rem 1.5rem;
  text-align: center;
}



/* ----- METHODOLOGY ----- */
.home-page .methodology {
  background: url('images/methodologie-bg.jpg') center/cover no-repeat;
  color: white;
  position: relative;
}

.home-page .methodology .overlay {
  background: rgba(0, 51, 102, 0.85);
  padding: 100px 10%;
}

/* ----- VISION ----- */
.home-page .vision {
  background: #f6f8fc;
  color: #333;
}

.home-page .vision-content {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

/* ----- PARTNERSHIP ----- */
.home-page .partnership {
  background: #003366;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.home-page .partnership p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ----- FOOTER (HOME ONLY) ----- */
.home-page footer {
  background: #f4f6f8;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #777;
}

/* ================================
   NE PAS TOUCHER AU HEADER/NAV
   ================================ */
header,
nav,
header * {
  all: unset;
  all: revert;
}






footer {
  text-align: center;
  padding: 1rem 0;
  color: var(--muted);
  border-top: 1px solid #f2f2f2;
  font-size: 0.95rem;
  background: #fff;
}




/* ----- Menu hamburger ----- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Quand l’écran est petit */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    color: var(--dark);
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    width: 200px;
    z-index: 100;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  /* Quand le menu est ouvert */
  .menu.active {
    display: flex;
  }
}
