
    :root {
            --primary-green: #0c2510;
            --secondary-green: #55b666;
            --accent-blue: #0d77f0;
            --dark-gray: #212529;
            --light-gray: #f8f9fa;
            --footer-wave-color: #198754;
            --linearback: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
            --lineardrap: linear-gradient(45deg, orange, white,green);
        }

    dl, ol, ul {all: unset;}

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            background-color: #cecece;
            position: relative;
        }
        /* body::after{
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            z-index: -1;
            backdrop-filter: blur(10px);
            background: rgba(37, 37, 37, 0.61);

        }
    */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow : 0 8px 30px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            background: rgba(61, 61, 61, 0.486);
            color: white;
            border-bottom: 1px solid #f0f0f0f5;
           }
        
        .header.whity {
            background : rgba(255, 255, 255, 0.98);
            color: rgb(39, 39, 39);
            border-color: #949494;
        }

     

        .drapZone{position: absolute;left: 0; top: 0; width: 100%;}
        .drapZone div{
            min-width: 100px;
            width: 33%;
            height: 2px;
        }
        .drapZone div:nth-child(1){
            background-color: #fc6f1e;
        }
        .drapZone div:nth-child(3){
            background-color: #156d24;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.1rem 0.5rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            background: linear-gradient(to right, orange 30%,white 60%,green 30%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
  .header.whity   .logo-img {
            background :var(--linearback)
        }
        .logo-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .logo-img:hover::before {
            left: 100%;
        }

        .logo-img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(25, 135, 84, 0.4);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.6rem;
            font-weight: 700;
            /* color: #198754; */
            background: linear-gradient(to right, orange 20%,white 30%,green 50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
 
       .header.whity  .logo-title {
            background :var(--linearback);;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo-subtitle {
            font-size: 0.80rem;
            color: #d8d8d8;
            margin-top: -3px;
            font-weight: 500;
        }
        
        .header.whity  .logo-subtitle {
             color: #6c757d;
        }
        
        .main-nav {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
        }

        .main-nav a {
            text-decoration: none;
            color: #f0f0f0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            position: relative;
            overflow: hidden;
        }

        .main-nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(25, 135, 84, 0.1), rgba(32, 201, 151, 0.1));
            transition: left 0.3s ease;
        }

        .main-nav a:hover::before {
            left: 0;
        }

        .main-nav a:hover {
            color: #198754;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
        }
      .header.whity .main-nav a {
            color: #424242;
        }
        
        .main-nav a i {
            font-size: 1rem;
            transition: all 0.3s ease;
        }


        .cta-nav {
            background: var(--linearback) !important;
            color: white !important;
            box-shadow: 0 6px 20px rgba(25, 135, 84, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-nav::before {
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.137)) !important;
        }

        .cta-nav:hover {
            background-position-x: left;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(25, 135, 84, 0.4);
            color: white !important;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #ffffff;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(25, 135, 84, 0.1);
            color: #198754;
        }
        .header.whity   .mobile-menu-btn  {
                color: #424242;
            }


            
        main{
                width: 100%;
                display: flex;
                align-items: center;
                flex-direction: column;
                
        }
         section{
             padding: 0 2rem;
             z-index: 88;
             backdrop-filter: blur(80px);
             margin: 20px;
             width: 100%;
        }

            
        .section-container {
            border-top: 1px solid #504f4f;
            border-bottom: 1px solid #504f4f;
            border-radius: 10px;
            padding: 6px;
            padding-top: 0px;
            background-color: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1rem;
        }

       

   .section-header {
      display: flex;
      align-items: stretch;
      /* border-radius: 4px; */
      overflow: hidden;
      background: rgb(230, 230, 230);
    }

    .section-header h2.section-title {
      font-weight: 700;
      margin: 0;
      background: var(--linearback);
      color: white;
      padding: 2px 10px;
      padding-right:20px;
      font-size: 1.5rem;
      clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
      display: flex;
      align-items: center;
      white-space: nowrap;
    }

    .section-header  .section-subtitle {
        color: #1d1d1d;
        padding: 5px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        border-left: none;
        white-space: nowrap;
    }


        /* Hero Section avec Background Forêt */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url(/static/assets/files/images/bg3.jpg) center/cover;
            color: white;
            padding: 20px 0;
            margin: 0;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
            min-height: 400px;
        }
 
        .hero-particles {
            position: absolute;
            bottom: 50%;
            right: 0;
            opacity: 0.4;
            font-size: 25px !important;
            animation: particleFloat 15s ease-in-out infinite;
        }

        @keyframes particleFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-30px, -20px) rotate(2deg); }
            66% { transform: translate(20px, -30px) rotate(-2deg); }
        }

        .hero-leaves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .leaf {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(19, 65, 23, 0.493);
            border-radius: 0 100% 0 100%;
            animation: leafFall 10s linear infinite;
        }

        .leaf:nth-child(1) { left: 10%; animation-delay: 0s; }
        .leaf:nth-child(2) { left: 30%; animation-delay: 2s; }
        .leaf:nth-child(3) { left: 50%; animation-delay: 4s; }
        .leaf:nth-child(4) { left: 70%; animation-delay: 6s; }
        .leaf:nth-child(5) { left: 90%; animation-delay: 8s; }

        @keyframes leafFall {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }
   

        .hero-text {
            backdrop-filter: blur(1px);
            text-align: center;
            padding: 20px;
            border-radius: 6px;
            border: 1px solid #aaa9a927;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-tagline {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #e8f5e8;
            font-weight: 500;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary,.btn-outline {
            background: #ffffff09;
            backdrop-filter: blur(15px);
            color: #ffffff;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover, .btn-outline:hover {
            background: #ffffffd2;
            border: 1px solid #15912a;
            color: #15912a;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        

        .stats-wrapper {
            padding: 0.2rem;
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        .stat-card {
            background: #3a3a3a46;
            backdrop-filter: blur(10px);
            padding: 0.3rem;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid #e4e4e4c4;
            backdrop-filter: blur(10px);
        }


        .stat-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 10px 25px rgba(25, 135, 84, 0.15);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 0.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            transition: all 0.4s ease;
        }


        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-green);
            color: white;
            display: block;
            margin-bottom: 0.3rem;
            background: linear-gradient(45deg, white, var(--primary-green));
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #4a5568;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        /* ===========================CONTEXTE */
    .context-section {
        padding-bottom: 15px;
    }
        .context-content {
            background: #f8f9fa;
            padding: 1rem 2rem;
            text-align: justify;
            border-radius: 15px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .context-highlight {
            color: white;
            border-radius: 4px;
            font-weight: 700;
            color: #225a1b;
        }

        /* Section Objectifs Stratégiques Modernisée */
        .objectives-section {
            position: relative;
            overflow: hidden;
        }

 
        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .objective-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 0.8rem 1.3rem;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            backdrop-filter: blur(10px);
        }
        
        .objective-card:hover {
            transform: translateY(-15px) scale(1.3);
            box-shadow: 0 5px 10px rgba(19, 105, 26, 0.15);
        }
        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
             left: 0;
            transition: width 0.6s ease;
             width: 0;
            height: 6px;
            background: linear-gradient(90deg, #156d24, #6abe6e);
            background-size: 200% 100%;
            animation: gradientSlide 3s ease infinite;
        }

        .objective-card:hover::before {
            width: 100%;
        }

        .objective-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #1c5e1c, #5cb863);
            box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
            color: white;
            text-align: center;
            transition: all 0.3s ease;
            transition: all 0.4s ease;
            display: inline-block;
            position: relative;
        }

        .objective-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
            position: absolute;
            top: 18px;
            left: 80px;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .objective-card:hover .objective-title {
            color: #198754;
        }

        .objective-desc {
            color: #64748b;
            line-height: 1.8;
            font-size: 1rem;
            position: relative;
            z-index: 2;
        }
        .objective-card:hover .objective-desc { color: #000000;
        }

        .objective-number {
            position: absolute;
            bottom: 0.5rem;
            right: 1.5rem;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: #6b6e6b 1px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(86, 87, 86);
            font-weight: bold;
            font-size: 1rem;
        }
 

    .desContainer-section {
            width: 100%;
            position: relative;
    }
        
    /* Style pour la section description */
    .description-section {
        margin: 0 auto 10px;
        padding: 50px;
        padding-bottom: 10px;
        background: linear-gradient(145deg, #f8fbf8 0%, #ffffff 100%);
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(46, 125, 50, 0.08);
        position: relative;
        overflow: hidden;
        border: 1px solid #e0f0e3;
    }

    .description-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, #2E7D32, #81C784);
    }

    .description-section p.para {
        margin-bottom: 25px;
        color: #4a4a4a;
        font-size: 1.1em;
        line-height: 1.7;
    }

    .description-section h3 {
        color: #388E3C;
        margin: 40px 0 20px;
        font-size: 1.6em;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    .description-section h3{
        color: #388E3C;
        margin: 40px 0 20px;
        font-size: 1.6em;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    .diagram-zone h3{
       margin:  0px !important; 
    }

    .description-section h3::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        background: #4CAF50;
        border-radius: 50%;
        margin-right: 12px;
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
    }

    /* Style pour les cartes */
    .carders-container {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        position: relative;
    }
    .carders-container::after{
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 3px;
        background-color: #187518;
        z-index: 1;
    }


  
    .carder {
        position: relative;
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #e0f0e3;
        transition: all 0.3s ease;
        z-index: 88888;
    }

    .carder:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
        border-color: #c8e6c9;
    }

    .card-title {
        font-size: 1.2em;
        font-weight: 600;
        color: #2E7D32;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .card-title::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #4CAF50;
        border-radius: 50%;
        margin-right: 10px;
    }

 

    .card-content {
        color: #555;
        font-size: 0.95em;
        line-height: 1.6;
    }

    .description-section strong {
        background: #2E7D32;
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: 500;
    }

    /* Animation subtile */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .description-section h2,
    .description-section p,
    .description-section h3,
    .cards-container {
        animation: fadeIn 0.6s ease-out forwards;
    }

    .description-section p { animation-delay: 0.1s; }
    .description-section h3 { animation-delay: 0.2s; }
    .cards-container { animation-delay: 0.3s; }

    /* Responsive */
    @media (max-width: 768px) {
        .description-section {
            padding: 30px 20px;
            margin-bottom: 40px;
        }
        .description-section h2 {
            font-size: 1.8em;
        }
        .description-section h3 {
            font-size: 1.4em;
        }
        .cards-container {
            grid-template-columns: 1fr;
        }
    }
        
        .diagram-zone {
            border-radius: 15px;
            padding: 10px 5%;
            border: 1px solid #5a5a5a79;
        }
        .diagram-container {
            position: relative;
            max-width: 1000px;
            height: 500px;
            margin: 0 auto;;
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px #38373714 inset;
            border: 1px solid #5a5a5a79;
            background-color: #eeeeeec0;
            border-radius: 15px;
        }
        
        .svg-connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        
        .connection-line {
            stroke: #4CAF50;
            stroke-width: 3;
            fill: none;
            opacity: 0.7;
            stroke-dasharray: 10, 5;
            animation: dash 2s linear infinite;
        }
        
        .connection-line.active {
            stroke: #81C784;
            stroke-width: 4;
            opacity: 1;
            filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
        }
        
        @keyframes dash {
            to {
                stroke-dashoffset: -15;
            }
        }
        
        .arrow-marker {
            fill: #4CAF50;
        }
        
        .node {
            position: absolute;
            z-index: 10;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
        }
        
    
        
        .system-node {
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f5faf5, #e8f5e9, #c8e6c9);
            padding: 10px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
            border: 2px solid #4CAF50;
            text-align: center;
            min-width: 400px;
        }
        
        .system-node h2 {
            font-size: 1.6em;
            font-weight: bold;
            margin: 0;
            color: #2E7D32;
        }
        
        .structure-node {
            background: linear-gradient(135deg, #f5faf5, #ffffff);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid #81C784;
            width: 200px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .structure-node:hover {
            border-color: #4CAF50;
            box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2);
        }
        
        .structure-node.active {
            border-color: #2E7D32;
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
            background: linear-gradient(135deg, #e2e2e2, #ffffff);
        }
        
        .minef { top: 180px; left: 05%; }
        .oipr { top: 180px; left: 40%; transform: translateX(-50%); }
        .sodefor { top: 180px; right: 25%; }
        .partners { top: 180px; right: 2%; }
        
        .structure-name {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 8px;
            color: #2E7D32;
        }
        
        .zone-type {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .role-hierarchy {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .role-item {
            background: rgba(76, 175, 80, 0.1);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.85em;
            border-left: 3px solid #4CAF50;
            transition: all 0.3s ease;
            color: #555;
        }
        
        .role-item:hover {
            background: rgba(76, 175, 80, 0.2);
            border-left-color: #2E7D32;
            /* transform: translateX(3px); */
        }
        
        .partners-node {
            background: linear-gradient(135deg, #f5faf5, #f6f7f6);
            border: 2px solid #FF8F00;
        }
        
        .partners-node:hover {
            border-color: #E65100;
            box-shadow: 0 12px 30px rgba(255, 143, 0, 0.2);
        }
        
        .access-method {
            background: rgba(255, 143, 0, 0.1);
            padding: 8px;
            border-radius: 6px;
            margin: 7px 0;
            font-size: 0.8em;
            color: #555;
            border-left: 3px solid #FF8F00;
        }
        
       
        
        .info-panel {
            position: absolute;
            top: 20px;
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #f5faf5, #e8f5e9);
            border-radius: 15px;
            padding: 10px;
            border: 2px solid #4CAF50;
            max-width: 300px;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .info-panel.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .panel-header{display: flex;justify-content: space-between;}
        .panel-back{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90px;
            height: 90px;
            border-radius: 10%;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.411); 
            overflow: hidden;
        }
        .panel-back img{width: 80px;;}

        .header-info{display: flex;flex-direction: column;}
        .info-panel h3 {
            color: #2E7D32;
            font-size: 1.7em;
        }
        
        .info-panel p {
            margin-top: 5px;
            border-top: 1px solid #000;
            border-bottom: 1px solid #000;
            padding: 3px 8px;
            border-radius: 15px;
            color: #333333;
            font-style: italic;
            text-align: center;
            font-size: 0.9em;
            background-color: #fff;
        }
  
        
        @media (max-width: 1400px) {
            .container {
                min-width: 1000px;
                padding: 10px;
            }
            
        
            .system-node {
                min-width: 300px;
                padding: 10px 20px;
            }
            
        }







        /* Section Carte Heatmap */
        .map-section {
            position: relative;
        }

        .map-container {
            margin-top: 1rem;
        }

        .map-wrapper {
            position: relative;
            background: rgba(73, 73, 73, 0.9);
            /* border-radius: 20px; */
            padding: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }
        
        .map {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) inset;
            width: 100%;
            height: 500px;
             /* border-radius: 20px; */
            position: relative;
            overflow: hidden;
            border: 1px solid #eeeeee;
        }

        .map-controls {
            position: absolute;
            top: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }

        .control-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            /* min-width: 250px; */
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

      

        .panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            cursor: pointer;
            padding: 0.2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .panel-header:hover {
            background: rgba(25, 135, 84, 0.05);
        }

        .panel-title {
            color: var(--primary-green);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
        }

        .panel-toggle {
            background: none;
            border: none;
            color: var(--primary-green);
            font-size: 1rem;
            cursor: pointer;
            padding: 0.3rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
        }

        .panel-toggle:hover {
            background: rgba(25, 135, 84, 0.1);
            transform: scale(1.1);
        }

        .panel-toggle i {
            transition: transform 0.3s ease;
        }

         .map-controls.collapsed .panel-toggle i {
            transform: rotate(180deg);
        }

        .panel-content {
            transition: all 0.3s ease;
            max-height: 500px;
            opacity: 1;
            overflow: hidden;
        }

        .map-controls.collapsed .panel-content {
            max-height: 0;
            opacity: 0;
            margin: 0;
            padding: 0;
        }

        .control-panel h4 {
            display: none; /* Caché car remplacé par panel-header */
        }

        .layer-controls {
            display: flex;
            flex-direction: column;
            /* gap: 0.8rem; */
        }

        .layer-control {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .layer-control:hover {
            background: rgba(25, 135, 84, 0.05);
        }

        .layer-control input[type="checkbox"] {
            display: none;
        }

        .checkmark {
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 4px;
            position: relative;
            transition: all 0.3s ease;
        }

        .layer-control input[type="checkbox"]:checked + .checkmark {
            background: var(--primary-green);
            border-color: var(--primary-green);
        }

        .layer-control input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: -2px;
            left: 2px;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .layer-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #4a5568;
        }

        .layer-color {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mapcolor { background: #198754; }
        .alert-color { background: #dc3545; }
        .agent-color { background: #6f42c1; }
        .heat-color { background: linear-gradient(45deg, #ffc107, #dc3545); }

        .legend-items {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: #4a5568;
        }

        .legend-color {
            width: 12px;
            height: 12px;
            border-radius: 3px;
        }

        .legend {
            margin-top: 10px;
            padding: 3px 10px;
            background: #ffffffe6;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .legend-gradient {
            height: 25px;
            width: 100%;
            margin: 5px 0;
            border-radius: 4px;
            background: linear-gradient(to right, #ffffff 0%, #ff0000 100%, #ffff00 30%, #ffa500 60%)
        }
        .legend-labels {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #555;
            }
     .map-controls.collapsed {
            padding: 0.8rem;
            width: 30px;
            text-align: center;display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-controls.collapsed  .control-panel{
            padding: 0rem;
            border-radius:0px;
            width: 30px;
            height: 30px;
             max-width: 30px;
             min-width: 30px;
             max-height: 30px;
             min-height: 30px;
        }
        



        /* NOUVELLE SECTION WORKFLOW AMÉLIORÉE */
        .workflow-section {
            position: relative;
            overflow: hidden;
        }

        .workflow-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(25,135,84,0.1)" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="rgba(32,201,151,0.1)" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="5s" repeatCount="indefinite"/></circle><circle cx="50" cy="10" r="1" fill="rgba(13,202,240,0.1)" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle></svg>');
            animation: backgroundFloat 30s ease-in-out infinite;
        }

        @keyframes backgroundFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(-10px, -5px) scale(1.02); }
            50% { transform: translate(10px, -10px) scale(0.98); }
            75% { transform: translate(-5px, 10px) scale(1.01); }
        }

        .workflow-container {
            max-width: 1400px;
            margin: 0 auto;
            /* padding: 0 2rem; */
            position: relative;
            z-index: 2;
        }

        .workflow-header {
            text-align: center;
            margin-bottom: 1rem;
        }

        .workflow-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-bottom: 18px;
            padding: 0 20px;
            padding-bottom: 20px;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--accent-blue));
            border-radius: 2px;
            z-index: 1;
            box-shadow: 0 2px 10px rgba(25, 135, 84, 0.3);
        }

        .timeline-step {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 3;
            box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.9);

        }



        .timeline-step.active {
            transform: scale(1.2);
            background: linear-gradient(135deg, #0c112b, var(--accent-blue));
            box-shadow: 0 10px 20px rgba(13, 202, 240, 0.6);
        }

        .timeline-step::after {
            content: attr(data-label);
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-green);
            text-align: center;
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.95);
            padding: 0.2rem 0.6rem;
            border-radius: 5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(25, 135, 84, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            z-index: 4;
        }

        .timeline-step:hover::after {
            color: var(--accent-blue);
            border-color: var(--accent-blue);
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 6px 20px rgba(13, 202, 240, 0.3);
        }

        .timeline-step.active::after {
            color: var(--accent-blue);
            border-color: var(--accent-blue);
            background: rgba(255, 255, 255, 1);
            font-weight: 700;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        .workflow-content {
            min-height: 350px;
            position: relative;
            margin-top: 2rem;
        }

        .workflow-step-detail {
            margin-top: 15px;
            display: none;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .workflow-step-detail.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
            animation: slideInUp 0.8s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .step-info {
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem 1.5rem;
            border-radius: 25px;
            width: 100%;
            margin: 8px auto;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .step-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--accent-blue));
            background-size: 200% 100%;
        }


        .step-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            margin-top: 10px;
            align-items: flex-start;
        }

        .step-header{
            min-width: 400px !important;
            width: 100%;
            display: flex;
            gap: 10px;
        }
        .step-number {
            display: inline-flex;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
            box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
        }

        .step-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-green);
            background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: underline;
        }

        .step-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #475569;
        }

        .step-features {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .step-features li {
            font-style: italic;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #1e1e1f;
            transition: all 0.3s ease;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            /* flex-grow: 1; */
            width: fit-content;
        }

        .step-features li:hover {
            color: var(--primary-green);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 15px rgba(25, 135, 84, 0.1);
        }

        .step-features li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background:var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.8rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
        }

        .step-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 120px;
            height: 120px;
            position: relative;
        }

        .step-icon-large {
            font-size: 4rem;
            color: var(--secondary-green);
            transition: all 0.4s ease;
            filter: drop-shadow(0 10px 20px rgba(32, 201, 151, 0.3));
        }

        .step-icon-large:hover {
            color: var(--accent-blue);
            transform: scale(1.1);
        }

        .step-decorative {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(32, 201, 151, 0.3);
            border-radius: 20px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
        }





        /* Section Carrousel */
        .carousel-section {
            position: relative;
            overflow: hidden;
        }

        .carousel-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(25,135,84,0.1)" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="1.5" fill="rgba(25,135,84,0.1)" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="4s" repeatCount="indefinite"/></circle><circle cx="50" cy="10" r="1" fill="rgba(25,135,84,0.1)" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
        }

        .carousel-container {
            max-width: 1600px;
            margin: 0 auto;
            /* padding: 0 2rem; */
            position: relative;
            z-index: 2;
        }


        .carousel-wrapper {
            position: relative;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            padding: 0.2rem;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
        }

        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            gap: 0.1rem;
            padding: 0.5rem 0;  
        }

        .slide-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            height: 460px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: brightness(180%);
            border-radius: 20px;
            object-fit: cover;
        }

        /* Images spécifiques pour chaque slide */
         .slide-image.cover-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url(/static/assets/files/images/cover.png);
        }
        .slide-image.ai-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url(/static/assets/files/images/AI.png);
        }

        .slide-image.satellite-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url(/static/assets/files/images/photointer.png);
        }

        .slide-image.experts-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url(/static/assets/files/images/agent.jpg);
        }

       


        .slide-image:hover {
           filter: brightness(200%);
        }

        .slide-content {
            flex: 1;
            padding: 0.5rem 2rem;
            position: relative;
        }
        
        .slide-content h3 {
            font-size: 2.2rem;
            color: #198754;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
            padding: 6px;
            border-radius: 6px;
         
        }

        .slide-content h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #198754, #20c997);
            border-radius: 2px;
        }

        .slide-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 1.5rem;
        }

        .slide-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .slide-features li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #374151;
            transition: all 0.3s ease;
        }

        .slide-features li:hover {
            color: #198754;
        }

        .slide-features li i {
            color: #198754;
            font-size: 1.2rem;
            width: 20px;
        }

        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #198754, #20c997);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(25, 135, 84, 0.3);
        }

        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(25, 135, 84, 0.4);
            background: linear-gradient(45deg, #20c997, #0dcaf0);
        }

        .slide-btn i {
            transition: transform 0.3s ease;
        }

        .slide-btn:hover i {
            transform: translateX(5px);
        }

        /* Navigation du carrousel */
        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 5px 0;
            margin-top: 1rem;
            backdrop-filter: blur(40px);
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            border: none;
            border-radius: 50%;
            background: linear-gradient(45deg, #198754, #20c997);
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 12px 35px rgba(25, 135, 84, 0.4);
            background: linear-gradient(45deg, #20c997, #0dcaf0);
        }

        .carousel-btn:active {
            transform: translateY(0) scale(0.95);
        }

        .carousel-indicators {
            display: flex;
            gap: 1rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(25, 135, 84, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .indicator.active {
            background: #198754;
            transform: scale(1.3);
        }

        .indicator:hover {
            background: #20c997;
            transform: scale(1.2);
        }

        .progress-ring {
            position: absolute;
            top: -8px;
            left: -8px;
            width: 28px;
            height: 28px;
        }

        .progress-ring circle {
            fill: none;
            stroke: #198754;
            stroke-width: 2;
            stroke-dasharray: 75;
            stroke-dashoffset: 75;
            transform-origin: center;
            transform: rotate(-90deg);
            transition: stroke-dashoffset 0.1s linear;
        }

        .indicator.active .progress-ring circle {
            animation: progressRing 5s linear;
        }

        @keyframes progressRing {
            from { stroke-dashoffset: 75; }
            to { stroke-dashoffset: 0; }
        }

        /* Section Call to Action */
        .cta-section {
           
            background: linear-gradient(135deg, #198754 0%, #0f5132 100%);
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }




   
        .technologies-section {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        
        /* Carrousel Container */
        .technologies-section .carousel-container {
            background-color: #4d4d4db7; 
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            padding: 0.5rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .technologies-section .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 350px;
            perspective: 1000px;
            border-radius: 20px;
            background-color: #4d4d4db7; 
            border: 1px solid #f5f5f5ce;
            backdrop-filter: blur(30px);
            overflow: hidden;
        }

        .technologies-section .carousel-track {
            display: flex;
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1.5rem;
        }

        .technologies-section  .techno-card {
            position: absolute;
            width: 350px;
            height: 100%;
            background: rgb(255, 255, 255);
            padding: 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.664);
            backdrop-filter: blur(10px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        /* States for cards */
        .technologies-section .techno-card.active {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            border: 1px solid rgba(7, 167, 34, 0.904);
            box-shadow: 0px 0px 8px #ffffff;
            z-index: 8;
            color: #000;
            filter: none;
        }

            
        .technologies-section .techno-card.prev {
            opacity: 0.5;
            transform: translateX(-150%) scale(0.9);
            z-index: 1;
            filter: grayscale(0.7);
        }

        .technologies-section .techno-card.next {
            opacity: 0.5;
            transform: translateX(50%) scale(0.9);
            z-index: 1;
            filter: grayscale(0.7);
        }

        .technologies-section .techno-card.hidden {
            opacity: 0;
            transform: translateX(-50%) scale(0.8);
            z-index: 0;
            pointer-events: none;
        }

        .technologies-section .impact-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .technologies-section .impact-title i {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #387041 0%, #5cc461 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin: 0;
            box-shadow: 0 8px 25px rgba(56, 112, 65, 0.3);
            transition: all 0.4s ease;
        }

        .technologies-section .techno-card.active .impact-title i {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(56, 112, 65, 0.4);
        }

        .technologies-section .techno-card p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1rem;
            margin: 0;
        }
     .technologies-section .techno-card.active p {
            color: #343536;
        }
        /* Navigation Controls */
        .technologies-section  .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #387041;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .technologies-section .carousel-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .technologies-section .carousel-nav.prev {
            left: 1rem;
        }

        .carousel-nav.next {
            right: 1rem;
        }

        /* Dots Navigation */
        .technologies-section  .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            
        }

        .technologies-section  .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            background-color: #4d4d4db7; 
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .technologies-section  .dot.active {
            background: #079632;
            transform: scale(1.3);
            box-shadow: 0 2px 10px #53535366;
        }


        /* Card Counter */
        .technologies-section  .carousel-counter {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #387041;
            font-weight: 600;
            z-index: 10;
        }


        /* Hover effect on inactive cards */
        .techno-card.prev:hover,
        .techno-card.next:hover {
            opacity: 0.7;
            cursor: pointer;
        }




        /* PARTENAIRES */
        .partners-section {
            background: rgb(185, 185, 185);
            backdrop-filter: blur(10px);
            margin: 0 auto;
            margin-top: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-top: 2px solid var(--dark-gray);
        }

        .partners-section .part-title {
                font-size: 1.6rem;
                max-width: fit-content;
                margin-bottom: 1.5rem;
                padding-right: 10px;
                font-weight: 700;
                border-radius: 0 0 8px 0;
                color: #ffffff;
                letter-spacing: 2px;
                background-color: var(--dark-gray);
                border-bottom: 1px solid white;
                text-decoration: none;
            }

        .partners-section .section-subtitle {
                text-align: center;
                color: #666;
                margin-bottom: 50px;
                font-size: 1.1rem;
            }

        .partners-section .part-carousel-container {
                overflow: hidden;
                position: relative;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto;
                padding:  10px;
            }

        .partners-section .part-carousel-track {
                display: flex;
                align-items: center;
                text-align: center;
                justify-content: center;
                animation: scroll 50s linear infinite;
                width: calc(200px * 16);
            }

        .partners-section .partner-logo {
                width: 200px;
                height: 120px;
                margin: 0 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: white;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                flex-shrink: 0;
                position: relative;
                overflow: hidden;
                cursor: pointer;
            }

        .partners-section .partner-logo::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(55, 105, 14, 0.705), transparent);
                transition: left 0.5s ease;
            }

        .partners-section .partner-logo:hover {
                transform: scale(1.05);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            }

        .partners-section .partner-logo:hover::before {
                left: 100%;
            }

        .partners-section .logo-placeholder {
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                font-weight: bold;
                position: relative;
                z-index: 2;
            }
        .partners-section .logo-placeholder img{
            max-height: 140px !important;
        }

        @keyframes scroll {
            0% {transform: translateX(6000px); opacity: 0; }
            10% {transform: translateX(500px); opacity: 1; }
            100% { transform: translateX(calc(-200px * 8 - 100px * 7));}
        }

        .partners-section .part-carousel-track:hover {
                animation-play-state: paused;
        }

            /* Effet de fade sur les bords */
        .partners-section .part-carousel-container::before,
        .partners-section .part-carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 30px;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

      .partners-section .part-carousel-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
        }

      .partners-section .part-carousel-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
        }






        /* MODAL DE CONTACT */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.342);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.7) translateY(-50px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: -1rem;
            right: -1rem;
            width: 40px;
            height: 40px;
            border: none;
            background: linear-gradient(45deg, #dc3545, #e74c3c);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        }

        .modal-title {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f9fafb;
            font-family: inherit;
        }

        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: var(--primary-green);
            background: white;
            box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-label {
            position: absolute;
            top: 1rem;
            left: 1.2rem;
            color: #6b7280;
            font-size: 1rem;
            transition: all 0.3s ease;
            pointer-events: none;
            background: transparent;
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label,
        .form-textarea:focus + .form-label,
        .form-textarea:not(:placeholder-shown) + .form-label {
            top: -0.5rem;
            left: 0.8rem;
            font-size: 0.8rem;
            color: var(--primary-green);
            background: white;
            padding: 0 0.4rem;
            font-weight: 600;
        }

        .form-select {
            cursor: pointer;
        }

        .submit-btn {
            padding: 1.2rem 2rem;
            background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            max-width: 280px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 0 auto;
            margin-top: 0.5rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(25, 135, 84, 0.4);
        }

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

        /* Footer */
        .footer {
            background: #212529;
            color: white;
            padding: 10px 0px;
        }

        .footer-wave {
            width: 100%;
            height: 40px;
            background-color: var(--footer-wave-color);
            margin-bottom: 10px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23212529' opacity='1'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 2rem;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .footer-section h4 {
            color: #20c997;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section li {
            color: #adb5bd;
            line-height: 1.6;
            margin-bottom: 0.8rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #20c997;
        }

        .footer-bottom {
            border-top: 1px solid #495057;
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: #6c757d;
        }


        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }



        /* === max-width: 1200px === */
        @media (max-width: 1200px) {
            .partners-section .part-carousel-track {
                animation: scroll 50s linear infinite;
            }
            .objective-number{
                transform: scale(0.9);
                bottom: 0.4rem;
            }
            .workflow-timeline {
                flex-wrap: wrap;
                gap: 1rem;
                margin: 4rem 0 4rem 0;
            }

            .timeline-step {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }

            .timeline-step::after {
                font-size: 0.7rem;
                bottom: -40px;
            }

            .carousel-slide {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .slide-image {
                height: 300px;
            }

            .hero-section {
                background-attachment: scroll;
            }

            .objectives-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .stat-card {
                padding: 1.2rem 0.8rem;
            }

            .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .stat-number {
                font-size: 1.6rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .stat-description {
                font-size: 0.7rem;
            }

            .techno-card {
                width: 300px;
            }
        }

        /* === max-width: 768px === */
        @media (max-width: 768px) {
                 .carders-container {flex-wrap: wrap}

            .carders-container::after{
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                height: 100%;
                width: 3px;
            }
             .step-header{
                flex-direction: column;
            }
            .step-title{
                transform: scale(0.7);
                display: inline-block;
                width: 100%;
            }
            .main-nav {
                display: none;
            }
            .objective-number{
                bottom: 0.2rem;
                transform: scale(0.8);
            }
            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .timeline-step {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }

            .timeline-step::after {
                font-size: 0.65rem;
                padding: 0.3rem 0.6rem;
                bottom: -50px;
                max-width: 80px;
                white-space: normal;
                line-height: 1.1;
                display: none;
            }

            .step-info {
                padding: 2rem 1.5rem;
            }

            .step-visual {
                width: 100px;
                height: 100px;
            }

            .step-icon-large {
                font-size: 3rem;
            }

            .objectives-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }


            .objective-number {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .stat-card {
                padding: 1rem 0.6rem;
            }

            .stat-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .stat-description {
                font-size: 0.65rem;
            }

            .carousel-slide {
                flex-direction: column;
                gap: 2rem;
            }

            .carousel-title h2 {
                font-size: 2rem;
            }

            .carousel-wrapper {
                padding: 2rem 1rem;
                height: 350px;
            }

            .carousel-nav {
                gap: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .slide-image {
                height: 250px;
            }

            .slide-image i {
                font-size: 4rem;
            }

            .hero-section {
                background-attachment: scroll;
                padding: 100px 0 60px;
            }

            .leaf {
                width: 15px;
                height: 15px;
            }

            .logo-img {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
            }

            .logo-title {
                font-size: 1.4rem;
            }

            .nav-container {
                padding: 0.8rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 2rem 1.5rem;
            }

            .workflow-title {
                font-size: 2.2rem;
            }

            .stats-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .carousel-container {
                padding: 2rem 0.5rem;
            }

            .techno-card {
                width: 280px;
                padding: 1.5rem 1rem;
            }

            .techno-card.prev {
                transform: translateX(-120%) scale(0.85);
            }

            .techno-card.next {
                transform: translateX(20%) scale(0.85);
            }
        }

        /* === max-width: 480px === */
        @media (max-width: 480px) {
            .carders-container {flex-wrap: wrap}

            .carders-container::after{
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                height: 100%;
                width: 3px;
            }
               .step-header{
                flex-direction: column;
            }
               .step-title{
                display: inline-block;
                width: 100%;
                transform: scale(0.6);
            }
             .objective-number{
                bottom: 0.1rem;
                transform: scale(0.6);
            }
            .workflow-timeline {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
                margin: 4rem 0 6rem 0;
            }

            .timeline-line {
                display: none;
            }

            .timeline-step {
                width: 50px;
                height: 50px;
                font-size: 1rem;
                border-radius: 15px;
            }

            .timeline-step::after {
                font-size: 0.6rem;
                padding: 0.25rem 0.4rem;
                bottom: -55px;
                max-width: 70px;
                white-space: normal;
                line-height: 1.1;
                display: none;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .step-title {
                font-size: 1.6rem;
            }

            .objective-card {
                padding: 2rem 1.5rem;
            }

            .objective-icon {
                font-size: 2.5rem;
            }

            .objective-title {
                font-size: 1.3rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .step-features {
                grid-template-columns: 1fr;
            }

            .step-features li {
                padding: 0.8rem;
            }

            .map-controls {
                position: static;
                flex-direction: row;
                gap: 1rem;
                margin-top: 1rem;
                justify-content: center;
            }

            .control-panel {
                flex: 1;
                max-width: 300px;
                min-width: auto;
            }

            .map {
                height: 400px;
            }
        }

      #control-panel.collapsed {
            opacity: 0;
            transform: translateX(-200%);
        }
        #control-panel {
            bottom: 8px;
            left: 10px;
        }


.section-containers {
    padding: 5px 0;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, rgb(25, 135, 84) 0%, rgb(15, 81, 50) 100%);
}
     

        :root {
            --primary-color: #2c5e1a;
            --secondary-color: #3a7d22;
            --light-green: #a7cc977a;
            --dark-text: #333;
            --light-text: #555;
        }
    .cardi .subtitle {
            font-size: 1.2rem;
            color: var(--light-text);
            font-style: italic;
        }
        
         .cardi h2, 
         .context-content h2 
         {
            color: var(--secondary-color);
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
            position: relative;
        }
        
         .cardi h2:after,
         .context-content h2:after
          {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .cardi {
            background-color: white;
            padding: 10px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
         .cardi .highlighti {
            background-color: var(--light-green);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            margin: 5px 0;
            font-size: 1.05rem;
            text-align: justify;
        }


        /* .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
        }

        .background-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 50, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.4) 100%
            );
            z-index: 1;
        } */