
        tailwind.config = {
            darkMode: 'class',
            theme: {
                extend: {
                    colors: {
                        primary: {
                            50: '#e6f4ff',
                            100: '#b3dfff',
                            200: '#80caff',
                            300: '#4db5ff',
                            400: '#1aa0ff',
                            500: '#0088e6',
                            600: '#006bb3',
                            700: '#004d80',
                            800: '#00304d',
                            900: '#001a2b'
                        },
                        accent: {
                            light: '#00a8ff',
                            DEFAULT: '#0066cc',
                            dark: '#003d7a'
                        }
                    },
                    fontFamily: {
                        'heading': ['Montserrat', 'sans-serif'],
                        'body': ['Poppins', 'sans-serif']
                    }
                }
            }
        }


       :root {
           --gradient-primary: linear-gradient(135deg, #00a8ff 0%, #0066cc 50%, #003d7a 100%);
           --gradient-dark: linear-gradient(135deg, #d3dee6 0%, #003d7a 100%);
           --glass-bg: rgba(255, 255, 255, 0.1);
           --glass-border: rgba(255, 255, 255, 0.2);
           --nav-bg: #e3dcdc; /* Blanc pour la navigation */
           --card-bg: #ffffff; /* Blanc pour les cartes */
           --text-primary: #1a202c; /* Couleur de texte foncée pour contraste */
           --text-secondary: #0d0d0e; /* Couleur de texte secondaire */
       }

       .dark {
           --glass-bg: rgba(0, 0, 0, 0.3);
           --glass-border: rgba(255, 255, 255, 0.1);
           --nav-bg: #ffffff; /* Garde la navigation blanche même en dark mode */
           --card-bg: #ffffff; /* Garde les cartes blanches même en dark mode */
           --text-primary: #1a202c; /* Texte foncé pour contraste */
           --text-secondary: #4a5568;
       }



       /* Styles pour les cartes */
       .card, [class*="card"], [class*="Card"], .service-card, .glass, .bg-gray-800, .bg-gray-900, .bg-dark, [class*="bg-"] {
           background-color: var(--card-bg) !important;
           color: var(--text-primary) !important;
           border: 1px solid rgba(22, 22, 22, 0.1) !important;
       }

       /* Ajustement des couleurs de texte dans les éléments blancs */
       nav *, .navbar *, header *, .card *, [class*="card"] *, .service-card * {
           color: var(--text-primary) !important;
       }

       /* Ajustement spécifique pour les liens dans la navigation */
       nav a, .navbar a, header a {
           color: var(--text-primary) !important;
       }

       nav a:hover, .navbar a:hover, header a:hover {
           color: #0066cc !important;
       }

       /* Ajustement pour les titres dans les cartes */
       .card h1, .card h2, .card h3, .card h4, .card h5, .card h6,
       [class*="card"] h1, [class*="card"] h2, [class*="card"] h3,
       [class*="card"] h4, [class*="card"] h5, [class*="card"] h6 {
           color: var(--text-primary) !important;
       }

       /* Ajustement pour les paragraphes dans les cartes */
       .card p, [class*="card"] p {
           color: var(--text-secondary) !important;
       }

       /* Ajustement pour les effets glass sur fond blanc */
       .glass {
           background: rgba(221, 217, 217, 0.95) !important;
           backdrop-filter: blur(10px) !important;
           -webkit-backdrop-filter: blur(10px) !important;
           border: 1px solid rgba(0, 0, 0, 0.1) !important;
       }

       /* Ajustement pour les boutons dans les cartes */
       .card button, [class*="card"] button {
           background-color: #0066cc !important;
           color: rgb(187, 183, 183) !important;
           border: none !important;
       }

       .card button:hover, [class*="card"] button:hover {
           background-color: #0052a3 !important;
       }

       /* Ajustement pour les bordures et ombres */
       .card, .service-card {
           box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
       }

       .card:hover, .service-card:hover {
           box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2) !important;
       }

       /* Ajustement pour le scrollbar */
       ::-webkit-scrollbar-track {
           background: #b4b1b1 !important;
       }

       ::-webkit-scrollbar-thumb {
           background: linear-gradient(180deg, #00a8ff, #0066cc) !important;
       }

       /* Ajustement pour les états hover sur navigation */
       nav a:hover, .navbar a:hover {
           background-color: rgba(0, 102, 204, 0.1) !important;
       }

       /* Ajustement pour le dropdown menu */
       .dropdown-menu {
           background-color: white !important;
           color: var(--text-primary) !important;
           border: 1px solid rgba(0, 0, 0, 0.1) !important;
       }

       .dropdown-menu a {
           color: var(--text-primary) !important;
       }

       .dropdown-menu a:hover {
           background-color: rgba(0, 102, 204, 0.1) !important;
           color: #0066cc !important;
       }

       /* Pour s'assurer que tous les éléments de type section avec fond sombre deviennent blancs */
       section, .section, [class*="section"] {
           background-color: transparent !important;
       }

       /* Exception pour le hero section si elle existe */
       .hero-bg {
           background: linear-gradient(-45deg, #001a2b, #003d7a, #0066cc, #00a8ff) !important;
           background-size: 400% 400% !important;
           animation: gradientShift 15s ease infinite !important;
       }

       /* Garde le texte gradient pour certains éléments spécifiques */
       .gradient-text {
           background: var(--gradient-primary) !important;
           -webkit-background-clip: text !important;
           -webkit-text-fill-color: transparent !important;
           background-clip: text !important;
       }

        .dark {
            --glass-bg: rgba(0, 0, 0, 0.3);
            --glass-border: rgba(255, 255, 255, 0.1);
            --nav-bg: #ffffff;
            --card-bg: #ffffff;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
        }

        * {
            scroll-behavior: smooth;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .dark .glass {
            background: rgba(17, 24, 39, 0.95);
        }

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

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }

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

        .animate-slide-left { animation: slideInLeft 0.8s ease-out forwards; }
        .animate-slide-right { animation: slideInRight 0.8s ease-out forwards; }
        .animate-slide-up { animation: slideInUp 0.8s ease-out forwards; }

        .animation-delay-100 { animation-delay: 0.1s; }
        .animation-delay-200 { animation-delay: 0.2s; }
        .animation-delay-300 { animation-delay: 0.3s; }
        .animation-delay-400 { animation-delay: 0.4s; }

        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(0, 168, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle 8s ease-in-out infinite;
        }

        @keyframes floatParticle {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
            25% { transform: translate(100px, -100px) rotate(90deg); opacity: 0.8; }
            50% { transform: translate(50px, -200px) rotate(180deg); opacity: 0.5; }
            75% { transform: translate(-50px, -100px) rotate(270deg); opacity: 0.7; }
        }

        .geo-shape {
            animation: float 10s ease-in-out infinite;
        }

        .service-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .modal {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            z-index: 100;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .gallery-container {
            position: relative;
            overflow: hidden;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-slide {
            min-width: 100%;
            position: relative;
        }

        .gallery-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 1.5rem;
        }

        @media (max-width: 768px) {
            .gallery-image {
                height: 300px;
            }
        }

        .gallery-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .gallery-nav-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-nav-btn.prev { left: 20px; }
        .gallery-nav-btn.next { right: 20px; }

        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(186, 196, 206, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .gallery-dot.active {
            background: #0066cc;
            transform: scale(1.2);
        }

        .drop-zone {
            border: 3px dashed #0066cc;
            border-radius: 1rem;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            background: rgba(0, 102, 204, 0.05);
            cursor: pointer;
        }

        .drop-zone:hover,
        .drop-zone.drag-over {
            border-color: #00a8ff;
            background: rgba(0, 168, 255, 0.1);
            transform: scale(1.02);
        }

        .drop-zone.has-file {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.1);
        }

        .form-input {
            transition: all 0.3s ease;
            border: 2px solid transparent;
            font-size: 16px;
        }

        .form-input:focus {
            border-color: #0066cc;
            box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        }

        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 1rem;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            border: none;
            transition: transform 0.3s ease;
        }

        .lightbox-close:hover {
            transform: scale(1.1);
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #00a8ff, #0066cc);
            border-radius: 5px;
        }

        @media (max-width: 640px) {
            .whatsapp-btn {
                bottom: 20px;
                right: 20px;
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            .gallery-nav-btn {
                width: 40px;
                height: 40px;
            }
        }

        .spinner {
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .toast {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #1e9dff;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .toast.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .toast.error {
            background: #ef4444;
        }

        .hero-bg {
            background: linear-gradient(-45deg, #001a2b, #003d7a, #0066cc, #00a8ff) !important;
            background-size: 400% 400% !important;
            animation: gradientShift 15s ease infinite !important;
        }

        /* Full screen modal styles */
        .fullscreen-modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow-y: auto;
        }

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

        .fullscreen-modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
        }

        .fullscreen-modal-content {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 2rem;
        }

        .fullscreen-modal-inner {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 2rem 0;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }

        .fullscreen-modal.active .fullscreen-modal-inner {
            transform: translateY(0);
            opacity: 1;
        }

        .modal-close-btn {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.25rem;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
            transition: transform 0.3s ease;
            color: #333;
        }

        .modal-close-btn:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .fullscreen-modal-content {
                padding: 1rem;
            }

            .fullscreen-modal-inner {
                margin: 1rem 0;
            }

            .modal-close-btn {
                top: 10px;
                right: 10px;
            }
        }
