/* ===============================
   HEADER LMC – NEW TECH
================================ */

.lmc-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lmc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* LOGO */
.lmc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lmc-logo img {
  height: 45px;
}

.lmc-logo span {
  font-weight: 700;
  font-size: 18px;
  color: #2b0a3d;
}

/* NAV DESKTOP */
.lmc-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lmc-nav a {
  text-decoration: none;
  color: #2b0a3d;
  font-weight: 500;
  position: relative;
  transition: color .3s ease;
}

.lmc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #00D758;
  transition: width .3s ease;
}

.lmc-nav a:hover {
  color: #00D758;
}

.lmc-nav a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.lmc-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00D758, #00D758);
  color: #2b0a3d !important;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(24, 201, 100, 0.35);
}

.lmc-btn:hover {
  opacity: 0.9;
}

/* BURGER */
.lmc-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.lmc-burger span {
  width: 26px;
  height: 3px;
  background: #2b0a3d;
  border-radius: 2px;
  transition: all .3s ease;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {

  .lmc-burger {
    display: flex;
  }

  .lmc-nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    /* AJOUT CRITIQUE */
    z-index: 1000;
  }

  .lmc-nav.show {
    transform: translateY(0);
  }

  .lmc-nav a {
    font-size: 18px;
  }

  .lmc-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   MODERN MENU BUTTON
================================ */

.lmc-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #00D758;
  border: none;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(24, 201, 100, 0.45);
}

.lmc-menu-btn span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s ease;
}

/* Grille 2x2 */
.lmc-menu-btn span:nth-child(1) { top: 14px; left: 14px; }
.lmc-menu-btn span:nth-child(2) { top: 14px; right: 14px; }
.lmc-menu-btn span:nth-child(3) { bottom: 14px; left: 14px; }
.lmc-menu-btn span:nth-child(4) { bottom: 14px; right: 14px; }

/* Animation quand menu ouvert */
.lmc-menu-btn.active span:nth-child(1) {
  transform: translate(8px, 8px);
}
.lmc-menu-btn.active span:nth-child(2) {
  transform: translate(-8px, 8px);
}
.lmc-menu-btn.active span:nth-child(3) {
  transform: translate(8px, -8px);
}
.lmc-menu-btn.active span:nth-child(4) {
  transform: translate(-8px, -8px);
}

/* MOBILE ONLY */
@media (max-width: 991px) {
  .lmc-menu-btn {
    display: block;
  }
}

/* ===============================
   MOBILE IMAGE MENU
================================ */

.lmc-mobile-image {
  display: none;
  width: 100%;
  max-width: 280px;
  margin: 20px auto 0;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .lmc-mobile-image {
    display: block;
  }
}

/* ===============================
   HERO SLIDER RESPONSIVE + ANIM
================================ */

/* 🎨 COULEUR DE LA BANDE TEXTE */
:root {
  --hero-band-color: rgba(43, 10, 61, 0.78);
}


.hero-slider {
  position: relative;
}

.hero-slider .carousel-item {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
}

/* IMAGE */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===============================
   OVERLAY – DESKTOP
================================ */

.bg-white {
  --bs-bg-opacity:1;
  background-color:#00D7583D !important;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;              /* desktop */
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* TEXTE */
.hero-content {
  display: inline-block;
  padding: 40px 45px;
  border-radius: 22px;
  background: rgba(41, 14, 55, 0.14);
  backdrop-filter: blur(8px);
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
}

.hero-content h1,
.hero-content p,
.hero-content a {
  opacity: 0;
  transform: translateY(30px);
}


/* ===============================
   ANIMATIONS
================================ */

.carousel-item.active .hero-content {
  animation: heroFade .8s ease forwards;
}

.carousel-item.active .hero-content h1 {
  animation: heroUp .8s ease forwards;
  animation-delay: .4s;
}

.carousel-item.active .hero-content p {
  animation: heroUp .8s ease forwards;
  animation-delay: .7s;
}

.carousel-item.active .hero-content a {
  animation: heroUp .8s ease forwards;
  animation-delay: 1s;
}

/* KEYFRAMES */
@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  to {
    opacity: 1;
  }
}

/* ===============================
   MOBILE – OVERLAY ADAPTÉ
================================ */

/* TRÈS PETITS MOBILES */
@media (max-width: 480px) {

  .hero-slider .carousel-item {
    height: 45vh;
    min-height: 260px;
  }

  .hero-img {
    object-fit: contain;
    object-position: center;
    background: transparent;
  }

  .hero-overlay {
    height: 56%;              /* 👈 TA DEMANDE EXACTE */
    align-items: flex-end;
    padding-bottom: 16px;
  }

  .hero-content {
    padding: 12px 14px;
    border-radius: 14px;
    max-width: 60%;
  }

  .hero-content h1 {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: .9rem;
  }

  .hero-content .btn {
    font-size: .55rem;
    padding: 8px 14px;
  }
}

/* MOBILES NORMAUX & TABLETTES */
@media (min-width: 481px) and (max-width: 767px) {

  .hero-slider .carousel-item {
    height: 65vh;
    min-height: 380px;
  }

  .hero-img {
    object-fit: cover;
  }

  .hero-overlay {
    height: 76%;              /* cohérence mobile */
  }
}

/* ===============================
   HERO BUTTON – RECTANGLE MODERNE
================================ */

.btn-lmc {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 15px;
  background: #fff;
  color: #2b0a3d !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 215, 88, 0.35);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.btn-lmc:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 215, 88, 0.45);
}

.btn-lmc:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(0, 215, 88, 0.35);
}

.btn-lmc1 {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 15px;
  background: #fff;
  color: #2b0a3d !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 215, 88, 0.35);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.btn-lmc1:hover {
  background: #2b0a3d;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 215, 88, 0.45);
}

.btn-lmc1:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(0, 215, 88, 0.35);
}
@media (max-width: 767px) {
  .btn-lmc {
    padding: 10px 22px;
    font-size: .9rem;
  }
}
@media (max-width: 767px) {
  .btn-lmc1 {
    padding: 10px 22px;
    font-size: .9rem;
  }
}

.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

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

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  align-items: center;
}


/* FOOTER */
.footer-lmc {
  background: #2b0a3d;
  color: #ddd;
}

.footer-lmc a {
  color: #00D758;
  text-decoration: none;
}

.footer-lmc a:hover {
  color: #fff;
}

.lead-white {
  color: #fff;
}

/* ===============================
   FOOTER SOCIAL & LEGAL
================================ */

.lmc-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.lmc-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18c964;
  transition: all .3s ease;
  font-size: 15px;
}

.lmc-social a:hover {
  background: #18c964;
  color: #fff;
  transform: translateY(-3px);
}

.footer-lmc h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-lmc ul li {
  margin-bottom: 8px;
}

.footer-lmc ul li a {
  font-size: 14px;
}
/* ===============================
   FOOTER RESPONSIVE
================================ */

@media (max-width: 767px) {

  .footer-lmc {
    text-align: center;
  }

  .footer-lmc .row > div {
    margin-bottom: 25px;
  }

  .lmc-social {
    justify-content: center;
  }

  .footer-lmc ul {
    padding-left: 0;
  }

  .footer-lmc ul li {
    margin-bottom: 10px;
  }

  .footer-lmc h6 {
    margin-bottom: 12px;
  }
}
/* ===============================
   FOOTER BOTTOM
================================ */

.lmc-footer-bottom {
  background: rgba(0,0,0,0.1);
}

.lmc-footer-bottom a {
  color: #00D758;
  font-weight: 500;
}

.lmc-footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===============================
   BLOCS CONTACT – TEXTE BLANC
================================ */
.contact-block {
  color: #ffffff !important;       /* Force le texte en blanc */
}

.contact-block i {
  color: #ffffff !important;       /* Les icônes restent blanches */
}

.contact-block p {
  color: #ffffff !important;       /* Force les paragraphes à être blancs */
}

.contact-block a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: #00D758 !important;       /* Survol vert si nécessaire */
}


/* ===============================
   TYPOGRAPHIE ET BASE
================================ */
body {
  font-family: 'Poppins', sans-serif;
  color: #2b0a3d;
}

h2, h5 {
  color: #2b0a3d;
}

p, li {
  color: #000;
}

/* ===============================
   SECTIONS
================================ */
section {
  position: relative;
}

/* ===============================
   NOTRE HISTOIRE
================================ */
.history-content p {
  margin-bottom: 1rem;
}

.history-content ul {
  padding-left: 20px;
}

.history-content ul li {
  margin-bottom: 0.5rem;
}

/* ===============================
   ICON LINKEDIN
================================ */
.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0A66C2; /* bleu LinkedIn */
  color: #fff;
  border-radius: 12px; /* arrondi */
  width: 50px;          /* largeur personnalisable */
  height: 50px;         /* hauteur personnalisable */
  font-size: 1.5rem;    /* taille de l’icône */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linkedin-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(10,102,194,0.4);
  color: #fff;
}

.linkedin-icon:active {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(10,102,194,0.4);
  color: #fff;
}

@media (max-width: 767px) {
  .linkedin-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===============================
   NOS MISSIONS – CARDS AVEC NUMÉROS
================================ */
.mission-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px 25px 25px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
}

.mission-card:hover {
  transform: rotate(-10deg) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* NUMÉROS */
.mission-number {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: #2b0a3d; /* vert principal */
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 15px #2b0a3d9e;
}

/* TITRE */
.mission-card h5 {
  font-weight: 600;
  margin-top: 35px; /* espace sous le numéro */
  margin-bottom: 15px;
  color: #2b0a3d;
}

/* TEXTE */
.mission-card p {
  color: #3a3a3a;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .mission-card {
    padding: 25px 15px 20px 15px;
  }

  .mission-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    line-height: 50px;
    top: 3px;
  }

  .mission-card h5 {
    font-size: 1.1rem;
    margin-top: 30px;
  }

  .mission-card p {
    font-size: 0.9rem;
  }
}

/* ===============================
   NOS VALEURS – CARDS MODERNES
================================ */
.value-card {
  background: #00D7581A; /* vert léger */
  border-radius: 22px;
  padding: 50px 25px 25px 25px;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0,215,88,0.25);
  background: rgba(0,215,88,0.15);
}

/* ICONES DANS ROND */
.value-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #2b0a3d;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

/* Animation au hover */
.value-card:hover .value-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(43,10,61,0.4);
  background: #2b0a3d;
}

/* TITRE */
.value-card h5 {
  font-weight: 600;
  margin-top: 10px;
  color: #2b0a3d;
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .value-card {
    padding: 40px 15px 20px 15px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .value-card h5 {
    font-size: 1rem;
  }
}

/* ===============================
   NOS CIBLES – HIGH-TECH DESIGN
================================ */

/* Fond dégradé */
.bg-gradient-cibles {
  background: #00D7583D;
}

/* Cartes */
.target-card-modern {
  background: rgba(255, 255, 255, 0.89);
  border-radius: 25px;
  padding: 40px 20px 30px 20px;
  color: #fff;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.target-card-modern:hover {
  transform: rotate(-10deg) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Icônes */
.target-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: #2b0a3d;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.target-card-modern:hover .target-icon {
  transform: rotate(-10deg) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  
}

/* Titres et texte */
.target-card-modern h5 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.target-card-modern p {
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 767px) {
  .target-card-modern {
    padding: 25px 15px;
  }

  .target-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .target-card-modern h5 {
    font-size: 1rem;
  }

  .target-card-modern p {
    font-size: 0.9rem;
  }
}

/* ===============================
   TARGET VIDEO FULL CARD
================================ */
.target-card-video {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.target-card-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay sombre pour lisibilité */
.target-card-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
  z-index: 1;
}

/* Texte superposé */
.target-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
}

.target-overlay h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.target-overlay p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
}

/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 768px) {
  .target-card-video {
    height: 260px;
  }

  .target-overlay {
    padding: 18px;
    text-align: center;
    justify-content: center;
  }

  .target-overlay h5 {
    font-size: 1.1rem;
  }

  .target-overlay p {
    font-size: 0.9rem;
  }
}

/* ===============================
   NOS OFFRES DE FORMATION – HIGH-TECH
================================ */
.training-card-tech {
  position: relative;
  background: #00D7583D;
  border-radius: 25px;
  padding: 70px 30px 30px 30px; /* ↑ padding-top augmenté pour descendre tout le contenu */
  overflow: hidden;
  box-shadow: 0 8px 10px rgba(0, 215, 88, 0.8);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.training-card-tech:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 215, 88, 0.25);
}

.training-card-tech h5 {
  font-weight: 700;
  font-size: 1.3rem;
  color: #2b0a3d;
  margin-bottom: 15px;
  position: relative;
}

.training-card-tech .divider {
  height: 3px;
  width: 60px;
  background: #fff;
  margin: 10px 0 20px 0;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.training-card-tech:hover .divider {
  width: 100px;
}

.training-card-tech p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* BADGE / ICONE - maintenant dans le flux pour descendre avec le contenu */
.training-badge {
  display: block;            /* plus absolute */
  margin: 0 auto 20px auto;  /* centre et espace en dessous */
  width: 60px;
  height: 60px;
  background: #2b0a3d;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.training-card-tech:hover .training-badge {
  transform: rotate(-15deg) scale(1.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .training-card-tech {
    padding: 50px 20px 20px 20px; /* padding-top réduit pour mobile */
  }

  .training-card-tech h5 {
    font-size: 1.1rem;
  }

  .training-card-tech p {
    font-size: 0.9rem;
  }

  .training-badge {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

/* ===============================
   NOS ATOUTS & RÉSULTATS – HIGH-TECH
================================ */
.card-tech {
  background: rgba(255,255,255,0.95); /* légèrement translucide pour le fond vert */
  border-radius: 25px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.card-tech:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.card-tech h5 {
  font-weight: 700;
  color: #2b0a3d;
  margin-bottom: 15px;
  position: relative;
}

/* ICONE EN HAUT DE LA CARTE */
.card-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #2b0a3d;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-tech:hover .card-icon {
  transform: rotate(-10deg) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* LISTE */
.card-tech ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-tech ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #2b0a3d;
  position: relative;
  padding-left: 20px;
}

.card-tech ul li::before {
  content: "✔"; /* ou utiliser un icone FontAwesome si tu veux */
  position: absolute;
  left: 0;
  color: #00D758;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .card-tech {
    padding: 25px 15px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .card-tech h5 {
    font-size: 1.1rem;
  }

  .card-tech ul li {
    font-size: 0.9rem;
  }
}

/* ===============================
   ANIMATIONS
================================ */
.animate__animated {
  opacity: 0;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.animate__zoomIn {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.animate__delay-1s { animation-delay: 0.5s; }
.animate__delay-2s { animation-delay: 1s; }
.animate__delay-3s { animation-delay: 1.5s; }

/* ===============================
   ANIMATION KEYFRAMES
================================ */
@keyframes fadeInLeft {
  0% {opacity: 0; transform: translateX(-30px);}
  100% {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  0% {opacity: 0; transform: translateX(30px);}
  100% {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes zoomIn {
  0% {opacity: 0; transform: scale(0.8);}
  100% {opacity: 1; transform: scale(1);}
}

/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 767px) {
  .history-content, .card {
    padding: 20px;
  }

  .history-content ul {
    padding-left: 15px;
  }

  .history-content p, .card p {
    font-size: 0.9rem;
  }

  .history-content h2, .card h5 {
    font-size: 1.2rem;
  }
}

/* ===============================
   BOUTON CTA
================================ */
.btn-lmc {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 15px;
  background: #00D758;
  color: #2b0a3d !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 215, 88, 0.35);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.btn-lmc:hover {
  background: #2b0a3d;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 215, 88, 0.45);
}


.btn-lmc:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(0, 215, 88, 0.35);
}

@media (max-width: 767px) {
  .btn-lmc {
    padding: 10px 22px;
    font-size: .9rem;
  }
}

.text-muted {
  --bs-text-opacity:1;
  color:rgb(0, 0, 0) !important;
}

/* ===============================
  a propos
================================ */
/* ===============================
   GENERAL
================================ */
body {
  font-family: 'Poppins', sans-serif;
  color: #2b0a3d;
  background: #fff;
}

h2, h5 {
  color: #2b0a3d;
}

.text-white {
  color: #fff !important;
}

.text-white1 {
  color: #2b0a3d !important;
}


section {
  position: relative;
}

.lead {
  font-size: 1.1rem;
}

/* ===============================
   HERO
================================ */
.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 10, 61, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: 3rem;
}

.hero-overlay p {
  font-size: 1.25rem;
}

/* ===============================
   MEDIA CIRCLE STACK
================================ */

.media-circle-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* Cercle commun image / vidéo */
.media-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(43, 10, 61, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Images entières (pas coupées) */
.media-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vidéo entière */
.media-circle video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Effet premium au survol */
.media-circle:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 35px 80px rgba(0, 215, 88, 0.35);
}

/* Cercle vidéo légèrement différencié */
.media-circle-video {
  border: 4px solid rgba(0, 215, 88, 0.35);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .media-circle-stack {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .media-circle {
    width: 250px;
    height: 250px;
  }
}

/* ===============================
   MISSION CARDS
================================ */
.mission-card1 {
  background: #00D7583D;
  border-radius: 22px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 215, 88, 0.15);
}

.mission-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* ===============================
   VALEURS CARDS
================================ */
.value-card {
  background: #00D7583D;
  border-radius: 22px;
  padding: 50px 25px 25px 25px;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
  position: relative;
  color: #2b0a3d;
}

.value-card1 {
  background: rgb(255, 255, 255);
  border-radius: 22px;
  padding: 50px 25px 25px 25px;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
  position: relative;
  color: #2b0a3d;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0,215,88,0.35);
  background: rgba(0,215,88,0.55);
}

/* ICONES DANS ROND */
.value-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #2b0a3d;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(43,10,61,0.4);
}

/* ===============================
   TARGET / CIBLES CARDS
================================ */
.target-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.target-card1 {
  background: #00D7583D;
  border-radius: 22px;
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.target-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 215, 88, 0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 40vh;
  }

  .hero-overlay h1 {
    font-size: 1.9rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .mission-card, .value-card, .target-card .target-card1 {
    padding: 25px 15px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .mission-card h5, .value-card h5, .target-card .target-card1 h5 {
    font-size: 1rem;
  }

  .mission-card p, .value-card p, .target-card .target-card1 p {
    font-size: 0.9rem;
  }
}

/* ===============================
   ANIMATIONS
================================ */
.animate__animated {
  opacity: 0;
  animation-fill-mode: forwards;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
}

.animate__zoomIn {
  animation-name: zoomIn;
  animation-duration: 0.8s;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px);}
  100% { opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(30px);}
  100% { opacity: 1; transform: translateX(0);}
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.5);}
  100% { opacity: 1; transform: scale(1);}
}

/* ===============================
   SPECIFIC COLORS
================================ */
.bg-green {
  background: #00D758;
}

.text-white-important {
  color: #fff !important;
}

/* ===============================
   POURQUOI LMC – STYLE MANUSCRIT
================================ */

.why-lmc-section {
  background: #00D7583D;
}

/* Texte manuscrit pro */
.handwriting-text {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #000;
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* Image */
.why-lmc-img {
  max-width: 350px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-lmc-img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .handwriting-text {
    font-size: 1.3rem;
    text-align: center;
  }

  .why-lmc-img {
    max-width: 100%;
  }

  .why-lmc-section h2 {
    text-align: center;
  }
}

/* DOMAINES – IMAGES CIRCULAIRES */
.domain-icon-circle {
  width: 400px;
  height: 400px;
  background: #2b0a3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform .4s ease;
}

.domain-icon-circle img {
  max-width: 80%;
  max-height: 80%;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  border-radius: 24px;
}

.domain-icon-circle:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* Variante verte */
.domain-icon-circle.dark {
  background: #00D758;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .domain-icon-circle {
    width: 250px;
    height: 250px;
  }

  .domain-icon-circle img {
    max-width: 75%;
    max-height: 75%;
  }
}

/* ===============================
   PRICING TABLE – LMC
================================ */
.pricing-card {
  background: #fff;
  border: 3px solid #2b0a3d;
  border-radius: 24px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,215,88,0.25);
}

/* OFFRE MISE EN AVANT */
.pricing-card.featured {
  border: 3px solid #00D758;
  transform: scale(1.03);
}

.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2b0a3d;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* TITRES */
.pricing-title {
  font-weight: 700;
  color: #2b0a3d;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

/* PRIX */
.pricing-price {
  margin: 20px 0;
}

.pricing-price .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00D758;
}

.pricing-price .period {
  font-size: 0.9rem;
  color: #666;
}

/* FEATURES */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #e5e5e5;
  font-size: 0.95rem;
}

/* BOUTONS */
.btn-outline-lmc {
  border: 2px solid #2b0a3d;
  color: #2b0a3d;
  border-radius: 15px;
  font-weight: 600;
}

.btn-outline-lmc:hover {
  background: #00D758;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .pricing-card.featured {
    transform: none;
  }
}

/* ===============================
   NOS FORMATS
================================ */
.format-card {
  background: #00D7583D;
  border-radius: 22px;
  padding: 30px 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.format-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,215,88,0.25);
}

.format-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #2b0a3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.format-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.format-card li {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ===============================
   NOS ATOUTS
================================ */
.atout-card {
  background: #2b0a3d;
  border-radius: 22px;
  padding: 30px 20px;
  height: 100%;
}

.atout-card i {
  font-size: 2rem;
  margin-bottom: 15px;
}

.atout-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
/* ===============================
   TARIFICATION & FINANCEMENTS
================================ */
.pricing-info-box {
  background: #2b0a3d;
  border-radius: 22px;
  padding: 30px 25px;
  height: 100%;
}

.pricing-info-box h5 {
  color: #fff;
}

.pricing-info-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .pricing-info-box {
    text-align: center;
  }
}

.partner-logo {
  background: #2b0a3d;
  border-radius: 16px;
  padding: 40px 20px;
  font-weight: 600;
  color: #fff;
}

.result-card {
  background: #2b0a3d;
  border-radius: 22px;
  padding: 30px 20px;
  height: 100%;
}

.result-card h5 {
  font-weight: 600;
}

.why-card {
  background: #00D7583D;
  border-radius: 22px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}
@media (max-width: 767px) {
  .hero-overlay h1 {
    font-size: 0.9rem;
  }

  .hero-overlay p {
    font-size: 0.8rem;
  }

  .result-card,
  .why-card {
    padding: 20px;
  }
}

.bg-light1 {
  --bs-bg-opacity:1;
  background-color:#00D7583D !important;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===============================
   CONTACT – DESIGN MODERNE LMC
================================ */

.contact-section {
  background: #00D7583D;
}

.contact-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-card h3 {
  color: #2b0a3d;
}

/* Inputs */
.contact-card .form-control,
.contact-card .form-select {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  font-size: 0.95rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: #00D758;
  box-shadow: 0 0 0 3px rgba(0,215,88,0.15);
}

/* Bouton */
.contact-card .btn-lmc {
  padding: 14px;
  font-weight: 600;
  border-radius: 16px;
  font-size: 1rem;
}

/* Image */
.contact-image {
  max-width: 90%;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }
}

/* ===============================
   CONTACT – COORDONNÉES
================================ */

.contact-infos {
  background: #2b0a3d;
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 20px 25px;
  max-width: 380px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-infos .info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.95rem;
}

.contact-infos .info-item:last-child {
  margin-bottom: 0;
}

.contact-infos i {
  width: 38px;
  height: 38px;
  background: #00D758;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-infos a {
  color: #fff;
  text-decoration: none;
  transition: opacity .3s ease;
}

.contact-infos a:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-infos {
    margin: 0 auto;
    text-align: left;
  }
}

a img {
  transition: transform .3s ease, opacity .3s ease;
}

a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===============================
   COOKIE CONSENT
================================ */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: calc(100% - 40px);
  background: #2b0a3d;
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: #00D758;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.mt-5 {
  margin-top:1rem !important;
}

/* CTA IMAGE SLIDER */
.cta-image-slider {
  position: relative;
  width: 100%;
  max-width: 400px; /* ajustable selon vos besoins */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  height: 400px; /* Hauteur augmentée pour mieux voir l'affiche */
}

.cta-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Remplit le container */
  object-position: center; /* Centre l'image pour ne pas couper le sujet principal */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  border-radius: 16px;
}

/* Zoom léger pour agrandir l'image active */
.cta-image-slider img.active {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .cta-image-slider {
    height: 300px; /* Hauteur adaptée pour mobile */
  }

  .cta-image-slider img.active {
    transform: scale(1.02); /* Zoom légèrement réduit sur mobile */
  }
}

.team-card {
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.team-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 4px solid #00D758;
}

@media (max-width: 576px) {
  .team-photo {
    width: 110px;
    height: 110px;
  }

  .team-card {
    padding: 1.5rem;
  }
}
.img-fluid1 {
  max-width:40%;
  height:auto
}

@media (max-width: 768px) {
  .team-card .badge {
    font-size: 0.8rem;
    white-space: normal; /* permet retour à la ligne */
  }
}
