 :root { 
            --blue: #002d72; 
            --orange: #ff7900; 
            --navy: #001b44;
            --light-bg: #f8fafc;
        }
        
        * {
            margin: 0;
            padding: 0;
        }
        
        body { 
            font-family:'Times New Roman', Times, serif; 
            color: #1a2c3e; 
            margin: 0;
            overflow-x: hidden;
        }

        /* NAVBAR */
        .navbar { 
            background: white; 
            padding: 15px 0; 
            border-bottom: 1px solid rgba(0,45,114,0.1);
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.03);
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .navbar-brandfff {
            display: flex;
            align-items: start;
            text-decoration: none;
        }
        
        .navbar-brandfff img {
            width: 200px;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .navbar-brandfff:hover img {
            transform: scale(1.05);
        }
        
        .nav-link { 
            color: var(--blue) !important; 
            font-weight: 500; 
            font-size: 0.9rem; 
            padding: 0 16px !important;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--orange) !important;
        }
        
        .btn-seminaire { 
            background: var(--orange); 
            color: white !important; 
            padding: 8px 24px; 
            border-radius: 30px; 
            font-weight: 600; 
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-seminaire:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,121,0,0.3);
            background: #9a9897;
        }

        /* HERO SECTION */
        .hero { 
            position: relative;
            padding: 100px 0 200px; 
            color: #fbfcfd;
            /* On remplace le bleu par un dégradé blanc transparent */
            background: url('images/HAUT.PNG');
            /* 100% */
             background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;

        }

       
        
        @keyframes pulseLight {
            0%, 100% { transform: scale(0.8); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.9; }
        }

        .hero-content { 
            position: relative; 
            z-index: 10; 
        }
        
        .hero-title { 
            font-size: 4.0rem; 
            font-weight: 10; 
            line-height: 1.5; 
            font-family: bold;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-subtitle { 
            font-size: 1.2rem; 
            opacity: 0.9; 
            margin-bottom: 35px;
            animation: fadeInUp 0.8s ease-out 0.1s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-orange { 
            background: var(--orange); 
            color: white; 
            border: none; 
            padding: 14px 35px; 
            border-radius: 40px; 
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,121,0,0.3);
        }
        
        .btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255,121,0,0.4);
            background: #e56c00;
        }
        
        .btn-outline { 
            border: 2px solid white; 
            color: white; 
            padding: 12px 32px; 
            border-radius: 40px; 
            text-decoration: none; 
            font-weight: 600;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--blue);
            transform: translateY(-3px);
        }

        .wave-bottom {
            position: absolute; 
            bottom: -2px; 
            left: 0; 
            width: 100%; 
            z-index: 15;
        }
        
        .wave-bottom svg { 
            fill: white; 
            width: 100%; 
            height: 100px;
        }

        /* SECTION À PROPOS - ENRICHIE */
        .about-section {
            padding: 20px 0 20px;
        }
        
        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image-wrapper:hover img {
            transform: scale(1.03);
        }
        
        .about-image-wrapper::after {
            content: "";
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            opacity: 0.9;
            z-index: 2;
            animation: pulseGlow 1.5s infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
        }
        
        .stats-box {
            background: var(--light-bg);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .stats-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--orange);
        }
        
        .mission-vision-box {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 25px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .mission-vision-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-item {
            text-align: center;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,121,0,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: var(--orange);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .value-item:hover .value-icon {
            background: var(--orange);
            color: white;
            transform: scale(1.1);
        }

        /* SERVICES CARDS AVEC IMAGE DE FOND */
        .services-section {
            position: relative;
            padding: 100px 0;
            background-image: url('images/services-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }
        
        .services-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 35, 70, 0.75);
            z-index: 1;
        }
        
        .services-section .container {
            position: relative;
            z-index: 2;
        }
        
        .services-section h2 {
            color: white !important;
        }
        
        .services-section .section-line {
            background: var(--orange) !important;
        }
        
        .card-service {
            border: none; 
            padding: 40px 30px; 
            border-radius: 20px; 
            background: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
            height: 100%; 
            text-align: center;
            transition: all 0.4s ease;
        }
        
        .card-service:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0,0,0,0.2);
        }
        
        .s-icon { 
            font-size: 3rem; 
            margin-bottom: 20px; 
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .card-service:hover .s-icon {
            transform: scale(1.1);
        }
        
        /* DÉTAILS SERVICES */
        .service-detail-section {
            padding: 60px 0;
            background: white;
        }
        
        .domain-list {
            list-style: none;
            padding: 0;
        }
        
        .domain-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .domain-list li:hover {
            transform: translateX(5px);
        }
        
        .domain-list li i {
            color: var(--orange);
            width: 20px;
            transition: transform 0.3s ease;
        }
        
        .domain-list li:hover i {
            transform: scale(1.2);
        }
        
        .format-badge {
            background: var(--light-bg);
            padding: 6px 14px;
            border-radius: 30px;
            display: inline-block;
            margin: 4px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .format-badge:hover {
            background: var(--orange);
            color: white;
            transform: translateY(-2px);
        }
        
        .livrable-box {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 16px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .livrable-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* SECTION POURQUOI CHOISIR */
        .why-section {
            padding: 80px 0;
        }
        
        .why-box { 
            padding: 30px 25px; 
            text-align: center; 
            border-radius: 20px; 
            background: white;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,45,114,0.05);
            height: 100%;
        }
        
        .why-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,45,114,0.1);
            border-color: rgba(255,121,0,0.2);
        }
        
        .why-icon {
            font-size: 2.5rem;
            color: var(--orange);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .why-box:hover .why-icon {
            transform: scale(1.1);
        }
        
        /* SECTION CLIENTS - AVEC IMAGE DE FOND */
        .clients-section {
            padding: 80px 0;
            position: relative;
           width: 100%;
           height: 100%;
            overflow: hidden;
        }
        
        .clients-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .clients-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 40%, rgba(255,121,0,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .client-logo {
            text-align: center;
            padding: 25px 15px;
            background: white;
            border-radius: 16px;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            cursor: default;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(0px);
        }
        
        .client-logo:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 35px rgba(0,45,114,0.15);
            background: linear-gradient(135deg, white, #fff9f0);
        }
        
        .client-logo span {
            font-weight: 600;
            color: var(--blue);
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .client-logo:hover span {
            color: var(--orange);
        }
        
        /* SECTION PROGRAMME - AVEC IMAGE DE FOND */
        .programme-section {
            padding: 80px 0;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
            overflow: hidden;
        }
        
        .programme-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://placehold.co/1920x800/ff7900/white?text=Calendar+Pattern');
            background-size: 400px;
            background-repeat: repeat;
            opacity: 0.03;
            pointer-events: none;
            animation: slowDrift 60s linear infinite;
        }
        
        @keyframes slowDrift {
            0% { background-position: 0 0; }
            100% { background-position: 400px 400px; }
        }
        
        .programme-section::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .programme-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .programme-table:hover {
            box-shadow: 0 20px 40px rgba(0,45,114,0.15);
            transform: translateY(-3px);
        }
        
        .programme-table th {
            background: linear-gradient(135deg, var(--blue) 0%, #004090 100%);
            color: white;
            font-weight: 600;
            padding: 15px;
            text-align: center;
        }
        
        .programme-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .programme-table tr:hover td {
            background: linear-gradient(90deg, rgba(255,121,0,0.05), rgba(255,121,0,0.02));
        }
        
        .programme-table td:first-child {
            font-weight: 600;
            color: var(--blue);
        }
        
        .programme-date {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255,121,0,0.1), rgba(255,121,0,0.05));
            padding: 5px 14px;
            border-radius: 25px;
            font-size: 0.85rem;
            color: var(--orange);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        tr:hover .programme-date {
            background: var(--orange);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 3px 8px rgba(255,121,0,0.3);
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            position: relative;
            padding: 100px 0 200px; 
            color: #fbfcfd;
            
            /* On remplace le bleu par un dégradé blanc transparent */
            background: url('images/BASE.png');
            
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .cta-content {
            position: relative;
            z-index: 5;
        }
        
        .cta-title {
            font-size: 4.0rem; 
            font-family:bold;
            /* font-weight: 10; 
            line-height: 1.2; 
            margin-bottom: 20px; */
            animation: fadeInUp 0.8s ease-out;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 10px;
            text-align: left;
            animation: fadeInUp 0.8s ease-out 0.1s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        .cta-btn-orange {
            background: var(--orange);
            color: white;
            border: none;
            padding: 14px 42px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,121,0,0.3);
        }
        
        .cta-btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255,121,0,0.4);
            background: #e56c00;
        }
        
        .cta-contact-info {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            justify-content: flex-start;
        }
        
        .cta-contact-info span {
            font-size: 1rem;
            font-weight: 500;
            background: rgba(255,255,255,0.12);
            padding: 10px 24px;
            border-radius: 50px;
            backdrop-filter: blur(4px);
            transition: all 0.3s ease;
        }
        
        .cta-contact-info span i {
            color: var(--orange);
            margin-right: 8px;
        }
        
        .cta-contact-info span:hover {
            background: rgba(255,121,0,0.25);
            transform: translateY(-2px);
        }
        
        .cta-wave-bottom {
            position: absolute;
            bottom: 0;
            line-height: 0;
            left: 0;
            width: 100%;
            z-index: 15;
        }
        
        .cta-wave-bottom svg {
            fill: white;
            width: 100%;
            height: 100px;
        }
        
        /* MODAL STYLES */
        .modal-content {
            border-radius: 24px;
            border: none;
            overflow: hidden;
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--blue) 0%, #003a8c 100%);
            color: white;
            border-bottom: none;
            padding: 25px 30px;
        }
        
        .modal-header .btn-close {
            filter: brightness(0) invert(1);
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            padding: 8px;
            opacity: 0.8;
        }
        
        .modal-header .btn-close:hover {
            opacity: 1;
        }
        
        .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .form-control, .form-select {
            border-radius: 12px;
            padding: 12px 16px;
            border: 1px solid #e0e4e8;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(255,121,0,0.2);
        }
        
        .modal-footer {
            border-top: none;
            padding: 20px 30px 30px;
        }
        
        .btn-submit {
            background: var(--orange);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background: #e56c00;
            transform: translateY(-2px);
        }
        
        /* FOOTER */
        .footer {
            background: #002d72;
            color: white;
            padding: 20px 0;
            font-size: 0.9rem;
        }

        .footer-logo {
            width: 100px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: #ff7900;
        }

        .footer-social i {
            color: white;
            background: rgba(255,255,255,0.1);
            padding: 8px;
            border-radius: 50%;
            font-size: 0.8rem;
            transition: 0.3s;
        }

        .footer-social i:hover {
            background: #ff7900;
            transform: translateY(-2px);
        }
        
        .copyright {
            font-size: 0.85rem;
            color: #6c7a8e;
        }
        
        [data-aos] {
            opacity: 0;
            transition-property: opacity, transform;
        }
        
        [data-aos].aos-animate {
            opacity: 1;
        }

        @media (max-width: 991px) {
            .hero-image-wrapper, .cta-image-wrapper { display: none; }
            .hero { text-align: center; padding: 60px 0 100px; }
            .hero-title { font-size: 2.2rem; text-align: center; }
            .hero-subtitle { text-align: center; }
            .cta-title { font-size: 2rem; text-align: center; }
            .cta-subtitle { text-align: center; }
            .cta-contact-info { justify-content: center; }
            .d-flex.gap-3 { justify-content: center; }
            .services-section {
                background-attachment: scroll;
            }
            .cta-section {
                text-align: center;
                padding: 30px 0 40px;
            }
            .programme-table {
                font-size: 0.75rem;
            }
            .programme-table th, .programme-table td {
                padding: 6px;
            }
            .programme-date {
                padding: 3px 8px;
                font-size: 0.7rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 1.8rem; }
            .cta-title { font-size: 1.6rem; }
            .btn-orange, .btn-outline, .cta-btn-orange { padding: 10px 20px; font-size: 0.9rem; }
            .navbar-brandfff img {
                width: 70px;
            }
            .cta-contact-info span {
                font-size: 0.85rem;
                padding: 6px 16px;
            }
            .modal-body {
                padding: 20px;
            }
            .client-logo span {
                font-size: 0.9rem;
            }
        }
  