        :root {
            --primary: #ff6e00;
            --primary-dark: #084b8a;
             --secondary: #0a66c2;
            --accent: #ffab00;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
            --radius: 16px;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(232, 245, 255, 0.7) 0%, rgba(255, 255, 255, 0) 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(0);
            transition: var(--transition);
        }

        header.scrolled {
            padding: 0.8rem 5%;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero-training {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            margin-top: 80px;
            padding-bottom: 50px;
        }

        .hero-content {
            max-width: 650px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
        }

        .hero-training h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
        }

        .hero-training h1 span {
            color: var(--primary);
            position: relative;
        }

        .hero-training h1 span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 15px;
            background: rgba(10, 102, 194, 0.15);
            z-index: -1;
        }

        .hero-training p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--gray);
            max-width: 600px;
        }

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

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            transform: translateY(0);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        /* Blob Animation */
        .blob-container {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            z-index: 1;

         
            
           
        }

          .blob {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 100%);
            filter: blur(0);
            opacity: 0.1;
            animation: blob-animate 15s infinite alternate ease-in-out;

            
            
        }

        .blob:nth-child(2) {
            animation-delay: -5s;
            background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 100%);
            width: 90%;
            height: 90%;
            filter: blur(0);
            opacity: 0.15;
        }

        .blob:nth-child(3) {
            animation-delay: -10s;
            background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 100%);
            width: 80%;
            height: 80%;
            filter: blur(0);
            opacity: 0.2;
        }

        /* Formations Section */
        .training-section {
            padding: 6rem 5%;
            background: linear-gradient(to bottom, #ffffff 0%, #f8fafd 100%);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .training-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform-style: preserve-3d;
            perspective: 1000px;
            position: relative;
            transform: translateY(30px);
            opacity: 0;
        }

        .training-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .training-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: var(--shadow-hover);
        }

        .training-card:hover::before {
            transform: scaleX(1);
        }

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

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

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

        .card-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .card-content {
            padding: 2rem;
        }

        .card-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }

        .card-content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            min-height: 80px;
        }

        .card-content .btn {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            width: 100%;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .training-card:hover .card-content .btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* Avantages Section */
        .advantages-section {
            padding: 6rem 5%;
            background: white;
            position: relative;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .advantage-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: rgba(10, 102, 194, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .advantage-icon i {
            font-size: 2.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .advantage-card:hover .advantage-icon {
            background: var(--primary);
        }

        .advantage-card:hover .advantage-icon i {
            color: white;
            transform: scale(1.2);
        }

        .advantage-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }

        .advantage-card p {
            color: var(--gray);
        }

        /* Process Section */
        .process-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
            position: relative;
        }

        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .process-container::before {
            content: '';
            position: absolute;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 70%;
            background: var(--light-gray);
            z-index: 0;
        }

        .process-card {
            width: calc(50% - 60px);
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
            transform: translateY(30px);
            opacity: 0;
        }

        .process-card:nth-child(odd) {
            padding-right: 60px;
            text-align: right;
        }

        .process-card:nth-child(even) {
            padding-left: 60px;
            margin-top: 200px;
        }

        .process-number {
            position: absolute;
            top: 0;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
            transition: var(--transition);
        }

        .process-card:nth-child(odd) .process-number {
            right: 0;
        }

        .process-card:nth-child(even) .process-number {
            left: 0;
        }

        .process-card:hover .process-number {
            transform: scale(1.1);
            background: var(--secondary);
        }

        .process-content {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .process-card:hover .process-content {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .process-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
        }

        .process-content p {
            color: var(--gray);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 5%;
            background: white;
            position: relative;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .swiper {
            width: 100%;
            height: 400px;
            border-radius: var(--radius);
            overflow: visible;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            height: auto;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
            border: 3px solid var(--light-gray);
        }

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

        .testimonial-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }

        .testimonial-info p {
            color: var(--secondary);
            font-weight: 500;
        }

        .testimonial-rating {
            display: flex;
            margin: 1rem 0;
        }

        .testimonial-rating i {
            color: #FFD700;
            font-size: 1.2rem;
            margin-right: 0.2rem;
        }

        .testimonial-content {
            font-style: italic;
            color: var(--gray);
            position: relative;
            padding-left: 2rem;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 0;
            font-size: 4rem;
            font-family: Georgia, serif;
            color: var(--light-gray);
            line-height: 1;
        }

        .swiper-button-next, 
        .swiper-button-prev {
            color: var(--primary);
            background: rgba(10, 102, 194, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .swiper-button-next:hover, 
        .swiper-button-prev:hover {
            background: var(--primary);
            color: white;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button:hover {
            background: #e65c00;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-button a {
            color: white;
            text-decoration: none;
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: 1;
        }

        /* Footer */
        footer {
            background: linear-gradient(to bottom, #4b4b4a 0%, #232528 100%);
            color: white;
            padding: 5rem 5% 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .footer-column p, 
        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.8rem;
            display: block;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }

        .contact-info {
            margin-top: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 1rem;
        }

        .contact-item i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1200px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Animations */
        @keyframes blob-animate {
            0% { 
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
                transform: translate(-50%, -50%) rotate(0deg);
            }
            50% { 
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; 
                transform: translate(-50%, -50%) rotate(180deg);
            }
            100% { 
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-training h1 {
                font-size: 3rem;
            }
            
            .blob-container {
                width: 400px;
                height: 400px;
            }
            
            .process-card {
                width: 100%;
                padding: 0 0 0 80px !important;
                text-align: left !important;
                margin-top: 0 !important;
            }
            
            .process-card:nth-child(even) {
                margin-top: 0;
            }
            
            .process-number {
                left: 0 !important;
                right: auto !important;
            }
            
            .process-container::before {
                left: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: var(--transition);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                transform: translateX(0);
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero-training {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                height: auto;
                padding: 120px 5% 80px;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .blob-container {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                width: 100%;
                height: 300px;
                margin-top: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-training h1 {
                font-size: 2.3rem;
            }
            
            .hero-training p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .training-grid, .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-content h2 {
                font-size: 2.3rem;
            }
        }



     /* logo */


        .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
    max-height: 50px; /* Ajuste selon ta navbar */
}

.logo img {
    height: 100%;
    max-height: 60px; /* Limite la hauteur du logo */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px; /* Optionnel : si tu veux des coins arrondis */
}

/* Effet au survol */
.logo img:hover {
    transform: scale(1.05);
}





