
        /* Les tokens de design (--nb-*) sont définis dans root.css */

        /* ── Base ────────────────────────────────────────────── */
        body {
            color: var(--nb-text);
            background: var(--nb-white);
        }

        /* ── Timeline ────────────────────────────────────────── */
        .timeline-wrapper {
            position: relative;
            padding-top: 12px;
        }

        .timeline-line {
            position: absolute;
            top: 40px;
            left: calc(12.5% + 20px);
            right: calc(12.5% + 20px);
            height: 2px;
            background: linear-gradient(90deg, var(--default-color) 0%, var(--accent-color) 100%);
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .timeline-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--nb-white);
            border: 2px solid var(--nb-border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 1.3rem;
            color: var(--accent-color);
            transition: transform .25s, box-shadow .25s, border-color .25s;
            box-shadow: var(--nb-shadow);
        }

        .timeline-item:hover .timeline-icon-wrap {
            transform: translateY(-4px);
            border-color: var(--accent-color);
            box-shadow: var(--nb-shadow-lg);
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent-color);
            margin: 0 auto 10px;
            border: 2px solid var(--nb-white);
            box-shadow: 0 0 0 3px var(--accent-color);
        }

        .timeline-year, .timeline-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 4px;
        }

        .timeline-desc {
            font-size: .8rem;
            color: var(--nb-muted);
            line-height: 1.5;
            padding: 0 8px;
        }

        /* ── Vision / Mission / Valeurs ──────────────────────── */
               .vision-card,
        .valeurs-card {
            background: var(--nb-white);
            border: 1px solid var(--nb-border);
            border-radius: var(--nb-radius-lg);
            padding: 2rem;
            height: 100%;
            box-shadow: var(--nb-shadow);
            transition: transform .25s, box-shadow .25s;
        }

        .vision-card:hover,
        .valeurs-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--nb-shadow-lg);
        }

        .mission-card {
            background: linear-gradient(145deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
            border-radius: var(--nb-radius-lg);
            padding: 2rem;
            height: 100%;
            color: var(--nb-white);
            box-shadow: var(--nb-shadow-lg);
            transition: transform .25s;
        }

        .mission-card:hover {
            transform: translateY(-4px);
        }

        .mission-card p {
            color: rgba(255, 255, 255, .85);
            font-size: .95rem;
            line-height: 1.7;
        }

        .vmv-icon-sq {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .icon-sq-white {
            background: rgba(255, 255, 255, .15);
            color: var(--nb-white);
        }

        .icon-sq-accent {
            background: rgba(0, 194, 255, .12);
            color: var(--default-color);
        }

        .valeur-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .valeur-item:last-child {
            margin-bottom: 0;
        }

        .valeur-check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(26, 59, 170, .1);
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .7rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .valeur-item strong {
            font-size: .92rem;
            color: var(--nb-text);
            display: block;
            margin-bottom: 2px;
        }

        .valeur-item span {
            font-size: .83rem;
            color: var(--nb-muted);
            line-height: 1.5;
        }

        .mission-item .valeur-check {
            background: rgba(255, 255, 255, .18);
            color: var(--nb-white);
        }

        .mission-item strong {
            color: var(--nb-white);
        }

        .mission-item span {
            color: rgba(255, 255, 255, .85);
        }

       /*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  /* background: color-mix(in srgb, var(--contrast-color), transparent 25%); */
  background: var(--contrast-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--accent-color);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-color);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}


        /* ── Partenaires & Certifications ────────────────────── */
        .partners-section {
            background: var(--nb-white);
        }

        .partners-grid,
        .certs-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .partner-logo,
        .cert-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--nb-border);
            border-radius: var(--nb-radius);
            background: var(--nb-white);
            padding: 14px 20px;
            min-width: 120px;
            transition: box-shadow .2s, border-color .2s, transform .2s;
        }

        .partner-logo:hover,
        .cert-badge:hover {
            border-color: var(--accent-color);
            box-shadow: var(--nb-shadow);
            transform: translateY(-2px);
        }

        .partner-logo img,
        .cert-badge img {
            max-height: 38px;
            max-width: 110px;
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter .2s;
        }

        .partner-logo:hover img,
        .cert-badge:hover img {
            filter: grayscale(0%);
        }

        /* Fallback text logos */
        .logo-text {
            font-size: .85rem;
            font-weight: 700;
            color: var(--nb-muted);
            white-space: nowrap;
            letter-spacing: -.01em;
        }

        .logo-text .logo-accent {
            color: var(--accent-color);
        }

        /* ── Utility ─────────────────────────────────────────── */
        .divider-accent {
            width: 48px;
            height: 4px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--default-color));
            margin-bottom: 1.5rem;
        }

        /* ── Responsive ──────────────────────────────────────── */
        @media (max-width: 768px) {
            .about-hero {
                min-height: 360px;
            }

            .about-hero .hero-logo-badge {
                display: none;
            }

            .timeline-line {
                display: none;
            }

            .timeline-item {
                margin-bottom: 20px;
            }

            .partner-logo,
            .cert-badge {
                min-width: 100px;
                padding: 10px 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                transition: none !important;
                animation: none !important;
            }
        }



        .about-history-image{
    position:relative;
}

.about-history-image img{
    border-radius:20px;
}

.history-card{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:#fff;
    padding:20px 28px;
    border-radius:16px;
    min-width:180px;
}

.history-card h3{
    color:var(--accent-color);
    font-weight:700;
    margin-bottom:0;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(var(--bs-primary-rgb),.08);
    color:var(--accent-color);
    font-weight:600;
}















/* ///////////////////////////////////////////// */



     .history .icon-wrap {
            width: 56px;
            height: 56px;
            padding: 20px;
            margin-right: 10px;
            border-radius: 50%;
            background: var(--nb-white);
            border: 2px solid var(--nb-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent-color);
            transition: transform .25s, box-shadow .25s, border-color .25s;
            box-shadow: var(--nb-shadow);
        }

        .history .icon-box:hover .icon-wrap {
            transform: translateY(-4px);
            border-color: var(--accent-color);
            box-shadow: var(--nb-shadow-lg);
        }
