
        /* Variables globales */
        :root {
            --primary-color: #02a8a8;
            --primary-dark: #017878;
            --primary-light: rgba(2, 168, 168, 0.1);
            --gradient-primary: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            --secondary-color: #333;
            --accent-color: #FF6B6B;
            --accent-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            --text-color: #444;
            --light-color: #ffffff;
            --light-bg: #f8f9fa;
            --dark-color: #121212;
            --dark-gradient: linear-gradient(135deg, #121212 0%, #2d2d2d 100%);
            --border-radius: 12px;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --section-padding: 100px 0;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            color: var(--text-color);
            background-color: var(--light-bg);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Urbanist', 'Poppins', sans-serif;
            color: var(--secondary-color);
            font-weight: 700;
            line-height: 1.3;
        }

        p {
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col {
            padding: 0 15px;
        }

        /* Utilités */
        .accent {
            color: var(--primary-color);
        }

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

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

        .bg-gradient {
            background: var(--gradient-primary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title-small {
            color: var(--primary-color);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 25px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: #777;
            font-size: 1.1rem;
        }

        /* Boutons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
            text-align: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--light-color);
            box-shadow: 0 5px 15px rgba(2, 168, 168, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(2, 168, 168, 0.3);
        }

        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            border-radius: 50px;
        }

        .btn-primary:hover:before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .btn-light {
            background-color: var(--light-color);
            color: var(--secondary-color);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .btn-light:hover {
            background-color: var(--light-bg);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 11px 28px;
        }

        .btn-outline:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-3px);
        }

        .btn-lg {
            padding: 14px 35px;
            font-size: 1.1rem;
        }

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

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

        /* Animation des apparitions */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .fade-right {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .zoom-in.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            padding: 25px 0;
            transition: var(--transition);
        }

        .header.sticky {
            background-color: var(--light-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--light-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link {
            font-weight: 600;
            color: var(--light-color);
            position: relative;
            padding: 5px 0;
            font-size: 16px;
        }

        .header.sticky .nav-link {
            color: var(--secondary-color);
        }

        .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover:before,
        .nav-link.active:before {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light-color);
            font-size: 24px;
            cursor: pointer;
        }

        .header.sticky .mobile-toggle {
            color: var(--secondary-color);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            filter: brightness(1.2);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
            z-index: -1;
        }

        .hero-content {
            color: var(--light-color);
            max-width: 800px;
            animation: fadeInUp 1s ease;
            position: relative;
        }

        .hero-tag {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50px;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            font-weight: 500;
        }

        .hero-tag i {
            color: var(--primary-color);
            margin-right: 8px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            color: var(--light-color);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 90%;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--light-color);
            font-size: 0.9rem;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .hero-scroll-icon {
            width: 30px;
            height: 50px;
            border: 2px solid var(--light-color);
            border-radius: 15px;
            display: flex;
            justify-content: center;
            padding-top: 10px;
        }

        .hero-scroll-dot {
            width: 6px;
            height: 6px;
            background-color: var(--light-color);
            border-radius: 50%;
            animation: scroll 1.5s infinite;
        }

        /* Partenaires */
        .partners-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            overflow: hidden;
            padding: 20px 0;
        }

        .partners-scroller {
            overflow: hidden;
            white-space: nowrap;
        }

        .partners-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .partner-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
        }

        .partner-item img {
            height: 40px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            filter: brightness(0) invert(1);
        }

        .partner-item img:hover {
            opacity: 1;
        }

        /* Trusted Section */
        /* .trusted-by {
            background-color: var(--light-color);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .trusted-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .trusted-text {
            flex: 1;
            min-width: 300px;
        }

        .trusted-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            position: relative;
        }

        .trusted-text h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .trusted-text p {
            color: #777;
            margin-top: 25px;
        }

        .trusted-slider {
            flex: 2;
            overflow: hidden;
            max-width: 100%;
        }

        .slider-track {
            display: flex;
            animation: scroll-logos 30s linear infinite;
            gap: 80px;
        }

        .slider-track img {
            height: 45px;
            opacity: 0.6;
            transition: opacity 0.3s ease, transform 0.3s ease;
            filter: grayscale(100%);
        }

        .slider-track img:hover {
            opacity: 1;
            transform: scale(1.1);
            filter: grayscale(0%);
        } */

        /* À propos */
        .about {
            padding: var(--section-padding);
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .about:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--primary-light);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
            z-index: 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 70px;
            position: relative;
            z-index: 1;
        }

        .about-text {
            flex: 1;
            position: relative;
        }

        .about-stats {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .stat-item {
            padding-left: 20px;
            border-left: 3px solid var(--primary-color);
            position: relative;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateX(5px);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
            background: #ffffff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .stat-number1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .stat-description {
            color: #777;
            line-height: 1.6;
        }

        .expertise-section {
            margin-top: 40px;
            padding-left: 20px;
            border-left: 3px solid var(--primary-color);
            position: relative;
        }

        .expertise-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .expertise-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .expertise-list li {
            position: relative;
            padding-left: 25px;
            transition: transform 0.3s ease;
        }

        .expertise-list li:hover {
            transform: translateX(5px);
        }

        .expertise-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: var(--primary-color);
            border-radius: 50%;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .expertise-list li:hover:before {
            transform: scale(1.5);
            background: var(--gradient-primary);
        }

        .about-video {
            flex: 1;
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.6s ease;
        }

        .about-video:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
        }

        .video-element {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
            transition: opacity 0.3s ease;
        }

        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button i {
            color: var(--light-color);
            font-size: 30px;
            margin-left: 5px;
        }

        .video-caption {
            color: var(--light-color);
            text-align: center;
            position: absolute;
            bottom: 40px;
        }

        .video-caption h3 {
            font-size: 24px;
            color: var(--light-color);
            margin-bottom: 5px;
        }

        /* Tech Passion Section */
        .tech-passion {
            padding: var(--section-padding);
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .tech-passion:after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: 0;
            width: 100%;
            height: 120px;
            background: var(--primary-light);
            transform: skewY(-3deg);
            z-index: 0;
        }

        .innovation-wrapper {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .innovation-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .innovation-content {
            flex: 1;
        }

        .innovation-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
        }

        .innovation-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 60px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .mais-button {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 25px;
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
            background-color: white;
        }

        .service-icon1 {
            color: var(--light-color);
            font-size: 24px;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(2, 168, 168, 0.2);
        }

        .service-text {
            line-height: 1.7;
        }

        .hashtag {
            color: var(--primary-color);
            font-weight: 600;
            margin-left: 10px;
            position: relative;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .hashtag:hover {
            transform: translateY(-3px);
        }

        .innovation-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .logo-img {
            max-width: 80%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(2, 168, 168, 0.2));
            animation: float 6s infinite ease-in-out;
            position: relative;
            z-index: 1;
        }

        .innovation-bg-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary-light);
            z-index: 0;
        }

        /* Services */
        .services {
            background-color: var(--light-bg);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            position: relative;
            height: 350px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transform: translateY(0);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-bg {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            color: var(--light-color);
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .service-card:hover .service-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        .service-card:hover .service-icon {
            transform: scale(1.2);
        }

        .service-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light-color);
            font-weight: 600;
            text-transform: uppercase;
        }

        .service-details {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s ease, opacity 0.3s ease;
        }

        .service-card:hover .service-details {
            max-height: 200px;
            opacity: 1;
        }

        .service-list {
            margin-bottom: 15px;
        }

        .service-list li {
            margin-bottom: 5px;
            font-size: 14px;
            opacity: 0.9;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--light-color);
            font-size: 14px;
            font-weight: 600;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .service-card:hover .service-link {
            opacity: 1;
            transform: translateY(0);
        }

        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Points forts */
        .features {
            padding: var(--section-padding);
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .features-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: url('https://via.placeholder.com/1920x1080');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background-color: var(--light-color);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--gradient-primary);
            transition: height 0.5s ease;
            z-index: -1;
        }

        .feature-card:hover:before {
            height: 100%;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--gradient-primary);
            transform: rotate(10deg);
        }

        .feature-icon i {
            font-size: 32px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon i {
            color: var(--light-color);
            transform: scale(1.2);
        }

        .feature-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-title {
            color: var(--primary-color);
        }

        .feature-text {
            margin-bottom: 20px;
            color: #777;
            transition: var(--transition);
        }

        .feature-list {
            margin-top: 20px;
        }

        .feature-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list li i {
            color: var(--primary-color);
            font-size: 16px;
        }

        /* Process Section */
        .process {
            padding: var(--section-padding);
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .process-line {
            position: absolute;
            top: 100px;
            left: 140px;
            width: calc(100% - 280px);
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
            z-index: 0;
        }

        .process-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: var(--light-color);
            font-size: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 25px rgba(2, 168, 168, 0.2);
            position: relative;
            transition: var(--transition);
        }

        .process-item:hover .process-number {
            transform: scale(1.1);
        }

        .process-icon {
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 0;
            right: 0;
            color: var(--primary-color);
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .process-item:hover .process-icon {
            transform: rotate(360deg);
        }

        .process-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 600;
        }

        .process-text {
            color: #777;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Technologies */
        .technologies {
            padding: var(--section-padding);
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .tech-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .tech-tab {
            padding: 12px 25px;
            border-radius: 30px;
            background-color: var(--light-bg);
            color: var(--secondary-color);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            border: none;
        }

        .tech-tab.active, .tech-tab:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .tech-content {
            display: none;
        }

        .tech-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .tech-item {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .tech-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-shadow);
            background-color: var(--light-color);
        }

        .tech-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }

        .tech-item:hover:before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .tech-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
        transition: var(--transition);
        border-radius: 50%; /* Transforme l'image en cercle */
        object-fit: cover; /* Assure que l'image couvre bien l'espace */
        background-color: #f5f5f5; /* Couleur de fond optionnelle */
        padding: 5px; /* Optionnel pour créer un peu d'espace autour de l'image */
        /* box-shadow: 0 4px 8px rgba(0,0,0,0.1);  */
        }

        .tech-item:hover .tech-icon {
            transform: scale(1.1);
        }

        .tech-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .tech-level {
            width: 100%;
            height: 6px;
            background-color: #e9e9e9;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 15px;
        }

        .tech-progress {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 3px;
            position: relative;
            width: 0;
            transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .tech-item:hover .tech-progress {
            animation: pulse 1.5s infinite;
        }

        /* Stats */
        .stats-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            position: relative;
            overflow: hidden;
            color: var(--light-color);
            text-align: center;
        }

        .stats-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .stats-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: 0;
        }

        .stats-container {
            position: relative;
            z-index: 1;
        }

        .stats-header {
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .stats-header h2 {
            color: var(--light-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .stats-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background-color:#02a8a8;
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 40px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-15px);
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            color: var(--light-color);
        }

        .stat-number:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background-color: var(--light-color);
        }

        .stat-card h3 {
            font-size: 1.1rem;
            color: var(--light-color);
            font-weight: 500;
            opacity: 0.9;
        }

        /* Portfolio */
        .portfolio {
            padding: var(--section-padding);
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .portfolio-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-light);
        }

        .shape-1 {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            opacity: 0.3;
        }

        .shape-2 {
            bottom: 20%;
            right: 5%;
            width: 150px;
            height: 150px;
            opacity: 0.2;
        }

        .shape-3 {
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            opacity: 0.1;
            transform: translate(-50%, -50%);
        }

        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .portfolio-filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .portfolio-filter {
            padding: 8px 20px;
            border-radius: 30px;
            background-color: var(--light-color);
            color: var(--secondary-color);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            border: none;
            font-size: 0.9rem;
        }

        .portfolio-filter.active, .portfolio-filter:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .portfolio-title {
            font-size: 2.5rem;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .blue-highlight {
            background: var(--gradient-primary);
            color: var(--light-color);
            padding: 5px 25px;
            border-radius: 8px;
            font-size: 2rem;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(2, 168, 168, 0.2);
        }

        .view-all {
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 1rem;
            border: 1px solid rgba(2, 168, 168, 0.2);
            padding: 10px 20px;
            border-radius: 50px;
            transition: var(--transition);
        }

        .view-all:hover {
            background-color: rgba(2, 168, 168, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .view-all i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .view-all:hover i {
            transform: translateX(5px);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .project-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background-color: rgba(2, 168, 168, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .project-card:hover .project-image:before {
            opacity: 0.3;
        }

        .project-image img {
            max-width: 60%;
            max-height: 60%;
            transition: transform 0.4s ease;
            z-index: 2;
        }

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

        .client-logo-small {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            z-index: 3;
        }

        .client-logo-small img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .project-card:hover .client-logo-small {
            transform: scale(1.1) rotate(10deg);
        }

        .project-content {
            padding: 30px;
        }

        .project-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .project-tag {
            padding: 5px 12px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .project-title {
            font-size: 1.4rem;
            margin: 0 0 15px;
            transition: color 0.3s ease;
        }

        .project-card:hover .project-title {
            color: var(--primary-color);
        }

        .project-description {
            color: #777;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .view-project {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(2, 168, 168, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            transition: var(--transition);
        }

        .view-project:hover {
            background-color: rgba(2, 168, 168, 0.1);
            transform: translateY(-5px);
        }

        .view-project i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .view-project:hover i {
            transform: translateX(5px);
        }

        /* Testimonials */
        .testimonials {
            padding: var(--section-padding);
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            opacity: 0.02;
            z-index: 0;
        }

        .testimonials-wrapper {
            position: relative;
            z-index: 1;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
            padding: 30px 0;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-item {
            min-width: 100%;
            padding: 0 50px;
        }

        .testimonial-card {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--card-shadow);
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background-color: var(--light-color);
        }

        .testimonial-quote {
            position: absolute;
            top: -20px;
            left: 40px;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-color);
            font-size: 24px;
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .author-role {
            color: #777;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            margin-top: 10px;
            display: flex;
            gap: 5px;
        }

        .testimonial-rating i {
            color: gold;
            font-size: 14px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .testimonial-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-bg);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .testimonial-button:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

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

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light-bg);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active, .testimonial-dot:hover {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Team Section */
        .team {
            padding: var(--section-padding);
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .team-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

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

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

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-social {
            display: flex;
            gap: 15px;
        }

        .social-icon-team {
            width: 40px;
            height: 40px;
            background-color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 16px;
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
        }

        .team-card:hover .social-icon-team {
            transform: translateY(0);
            opacity: 1;
        }

        .team-card:hover .social-icon-team:nth-child(1) {
            transition-delay: 0.1s;
        }

        .team-card:hover .social-icon-team:nth-child(2) {
            transition-delay: 0.2s;
        }

        .team-card:hover .social-icon-team:nth-child(3) {
            transition-delay: 0.3s;
        }

        .social-icon-team:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-5px);
        }

        .team-content {
            padding: 25px;
            text-align: center;
        }

        .team-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
            transition: var(--transition);
        }

        .team-card:hover .team-name {
            color: var(--primary-color);
        }

        .team-role {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .team-description {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Blog */
        .blog {
            padding: var(--section-padding);
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .blog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }

        .blog-title {
            font-size: 2.5rem;
            margin: 0;
            position: relative;
        }

        .blog-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .blog-nav {
            display: flex;
            gap: 20px;
        }

        .blog-btn {
            display: flex;
            align-items: center;
            background-color: var(--light-bg);
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            gap: 10px;
            color: var(--secondary-color);
            font-weight: 500;
        }

        .blog-btn:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .blog-grid {
            display: flex;
            gap: 30px;
            overflow: hidden;
        }

        .blog-article {
            flex: 0 0 calc(33.333% - 20px);
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .blog-article:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .article-image {
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .article-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-primary);
            color: var(--light-color);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(2, 168, 168, 0.2);
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-article:hover .article-image img {
            transform: scale(1.1);
        }

        .article-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .article-category {
            display: inline-block;
            padding: 5px 15px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .article-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: var(--transition);
        }

        .blog-article:hover .article-title {
            color: var(--primary-color);
        }

        .article-meta {
            margin-bottom: 15px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #777;
        }

        .meta-item i {
            color: var(--primary-color);
        }

        .article-author {
            color: var(--primary-color);
            font-weight: 600;
        }

        .article-text {
            color: #777;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .article-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: auto;
            transition: var(--transition);
        }

        .article-link i {
            transition: transform 0.3s ease;
        }

        .article-link:hover i {
            transform: translateX(5px);
        }

        /* FAQ Section */
        .faq {
            padding: var(--section-padding);
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .accordion {
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            overflow: hidden;
            background-color: var(--light-color);
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .accordion:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .accordion-header {
            padding: 20px 30px;
            background-color: var(--light-color);
            position: relative;
            cursor: pointer;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition);
        }

        .accordion.active .accordion-header {
            background-color: var(--primary-light);
        }

        .accordion-title {
            font-size: 1.1rem;
            color: var(--secondary-color);
            font-weight: 600;
            transition: var(--transition);
            flex: 1;
            padding-right: 40px;
        }

        .accordion.active .accordion-title {
            color: var(--primary-color);
        }

        .accordion-icon {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .accordion.active .accordion-icon {
            background-color: var(--primary-color);
            transform: translateY(-50%) rotate(180deg);
        }

        .accordion-icon i {
            color: var(--primary-color);
            font-size: 12px;
            transition: var(--transition);
        }

        .accordion.active .accordion-icon i {
            color: var(--light-color);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .accordion-body {
            padding: 0 30px 30px;
            color: #777;
            line-height: 1.7;
        }

        /* Contact CTA */
        .contact-cta {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .cta-text {
            flex: 1;
        }

        .cta-text h2 {
            font-size: 2.5rem;
            color: var(--light-color);
            margin-bottom: 20px;
            position: relative;
        }

        .cta-text h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--light-color);
            border-radius: 3px;
        }

        .expertise-boxes {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 35px;
        }

        .expertise-box {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .expertise-box:hover {
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .expertise-box .circle {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--light-color);
            margin-right: 8px;
        }

        .cta-button {
            background-color: var(--light-color);
            color: var(--primary-color);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .cta-button i {
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Contact Section */
        .contact {
            padding: var(--section-padding);
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .contact-wrapper {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-title {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
        }

        .contact-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .contact-text {
            margin-bottom: 40px;
            color: #777;
            line-height: 1.7;
        }

        .contact-list {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-color);
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .contact-label {
            font-size: 0.9rem;
            color: #777;
        }

        .contact-value {
            font-size: 1.1rem;
            color: var(--secondary-color);
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-item:hover .contact-value {
            color: var(--primary-color);
        }

        .social-icons-contact {
            display: flex;
            gap: 15px;
        }

        .social-icon-contact {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 18px;
            transition: var(--transition);
        }

        .social-icon-contact:hover {
            background: var(--gradient-primary);
            color: var(--light-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .contact-form {
            flex: 1;
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            position: relative;
            transition: var(--transition);
        }

        .contact-form:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .form-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: var(--border-radius);
            font-size: 1rem;
            background-color: var(--light-color);
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(2, 168, 168, 0.1);
        }

        .form-label {
            position: absolute;
            top: 15px;
            left: 20px;
            pointer-events: none;
            transition: var(--transition);
            color: #777;
        }

        .form-control:focus ~ .form-label,
        .form-control:not(:placeholder-shown) ~ .form-label {
            top: -10px;
            left: 15px;
            padding: 0 5px;
            font-size: 0.8rem;
            color: var(--primary-color);
            background-color: var(--light-color);
        }

        textarea.form-control {
            height: 150px;
            resize: none;
        }

        .form-button {
            background: var(--gradient-primary);
            color: var(--light-color);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
            margin-top: 10px;
        }

        .form-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(2, 168, 168, 0.3);
        }

        /* Map */
        .map-section {
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        .map-container {
            width: 100%;
            height: 100%;
        }

        .map-overlay {
            position: absolute;
            top: 50px;
            left: 50px;
            background-color: var(--light-color);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            max-width: 350px;
            z-index: 1;
        }

        .map-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }

        .map-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .map-info {
            margin-top: 25px;
        }

        .map-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .map-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .map-text {
            font-size: 0.95rem;
            color: #777;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            opacity: 0.02;
            z-index: 0;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            margin-right: 30px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            color: var(--light-color);
        }

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

        .footer-desc {
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--light-color);
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--light-color);
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a i {
            color: var(--primary-color);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .newsletter-form {
            margin-top: 25px;
            position: relative;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 20px;
            padding-right: 60px;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50px;
            color: var(--light-color);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 5px 15px rgba(2, 168, 168, 0.1);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            width: 45px;
            height: 40px;
            background-color: var(--primary-color);
            border: none;
            border-radius: 50px;
            color: var(--light-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* back to top */
        .back-to-top {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
            bottom: 30px;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(2, 168, 168, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scroll-logos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }

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

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        @keyframes scroll {
            0% { transform: translateY(0); }
            25% { transform: translateY(5px); }
            50% { transform: translateY(0); }
            75% { transform: translateY(-5px); }
            100% { transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .services-grid,
            .features-grid,
            .portfolio-grid,
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid,
            .process-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .expertise-list {
                grid-template-columns: 1fr;
            }
            
            .footer-top {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .header {
                padding: 15px 0;
                background-color: var(--light-color);
            }
            
            .logo {
                color: var(--secondary-color);
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--light-color);
                flex-direction: column;
                align-items: flex-start;
                padding: 40px 20px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                transition: 0.3s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                color: var(--secondary-color);
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid rgba(245, 242, 242, 0.05);
            }
            
            .mobile-toggle {
                display: block;
                color: var(--secondary-color);
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                max-width: 100%;
            }
            
            .about-content, 
            .contact-wrapper,
            .innovation-container {
                flex-direction: column;
            }
            
            .about-video {
                margin-top: 40px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .portfolio-header, 
            .blog-header {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .cta-content {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .cta-text h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .expertise-boxes {
                justify-content: center;
            }
            
            .process-line {
                display: none;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid, 
            .features-grid,
            .portfolio-grid,
            .stats-grid,
            .process-grid,
            .team-grid,
            .tech-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-grid {
                flex-wrap: wrap;
            }
            
            .blog-article {
                flex: 0 0 100%;
                margin-bottom: 30px;
            }
            
            .testimonial-item {
                padding: 0 20px;
            }
            
            .testimonial-card {
                padding: 30px 20px;
            }
            
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                max-width: 100%;
                border-radius: 0;
            }
        }

        @media (max-width: 576px) {
            .hero-tag {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .innovation-title {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 20px 15px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .author-image {
                width: 50px;
                height: 50px;
            }
        }
         /* Variables pour les couleurs Mirahtec */
    :root {
        --mil-accent: var(--mil-accent, rgb(2, 168, 168)); /* Bleu Mirahtec */
        --mil-accent-light: rgb(2, 168, 168);
        --mil-dark: rgb(18, 18, 18);
        --mil-light: #ffffff;
    }

    /* Section vidéo héroïque */
    .mil-video-hero {
        position: relative;
        height: 650px; /* Hauteur réduite */
        overflow: hidden;
    }

    .mil-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .mil-video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Pour que la vidéo couvre toute la zone sans déformation */
    }

    .mil-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)); /* Overlay moins sombre pour mieux voir la vidéo */
        z-index: 2;
    }

    .mil-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        z-index: 3;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .mil-video-content {
        max-width: 800px; /* Plus large pour accommoder un texte plus grand */
        animation: fadeInUp 1s ease;
        padding-bottom: 80px; /* Espace pour les partenaires en bas */
    }

    .mil-hero-title {
        font-size: 50px;
        font-weight: 700;
        color: var(--mil-light);
        margin-bottom: 20px;
        line-height: 1.2;
        text-transform: none; /* Pour garder la casse comme dans l'image */
    }

    .mil-hero-subtitle {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 90%;
    }

    .mil-hero-cta {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }


    /* Animation pour le contenu */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .trusted-by {
    background-color: #ffffff;
    padding: 40px 0;
    color:rgb(59, 55, 55);
    overflow: hidden;
    }

    .trusted-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    flex-wrap: wrap;
    }

    .trusted-text {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    min-width: 250px;
    }

    .trusted-slider {
    flex: 2;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    }

    .slider-track {
    display: flex;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
    }

    .slider-track img {
    height: 40px;
    margin: 0 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    }

    .slider-track img:hover {
    opacity: 1;
    }

    @keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    }
    /* Réduire l'opacité de l'overlay pour rendre la vidéo plus visible */
    .mil-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)); /* Overlay moins opaque */
        z-index: 2;
    }

    /* Vous pouvez également ajouter des filtres à la vidéo pour la rendre plus claire */
    .mil-video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.2); /* Augmente la luminosité de 20% */
    }
    .galadrim-section {
        background-color: white;
        color: black;
        padding: 60px 20px;
        }

        .galadrim-images {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-bottom: 40px;
        }

        .galadrim-images img {
        width: 25%;
        height: 230px;
        object-fit: cover;
        display: block;
        }

        .galadrim-content {
        text-align: center;
        max-width: 1000px;
        margin: 0 auto;
        }

        .galadrim-content h2 {
        font-size: 32px;
        margin-bottom: 40px;
        font-weight: bold;
        }

        .color {
        color: #02a8a8;
        font-weight: bold;
        }

        .galadrim-columns {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
        text-align: left;
        }

        .galadrim-columns div {
        flex: 1 1 400px;
        max-width: 480px;
        }
        /* Styles spécifiques à la page réalisations */
        .mil-portfolio-hero {
            position: relative;
            padding: 180px 0 100px;
            overflow: hidden;
        }

        .mil-portfolio-hero .mil-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .mil-portfolio-hero .mil-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
            z-index: -1;
        }

        .mil-portfolio-hero-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .mil-portfolio-hero-content h1 {
            margin-bottom: 20px;
            font-size: 48px;
        }

        .mil-portfolio-hero-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .mil-portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 15px;
        }

        .mil-portfolio-filter {
            padding: 10px 25px;
            border-radius: 30px;
            background-color: white;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mil-portfolio-filter.active, 
        .mil-portfolio-filter:hover {
            background: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 168, 168, 0.2);
        }

        .mil-project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        @media (max-width: 992px) {
            .mil-project-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mil-project-grid {
                grid-template-columns: 1fr;
            }
        }

        .mil-project-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            background-color: white;
            transform: translateY(0);
        }

        .mil-project-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .mil-project-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .mil-project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .mil-project-item:hover .mil-project-image img {
            transform: scale(1.05);
        }

        .mil-client-logo {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .mil-client-logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .mil-project-item:hover .mil-client-logo {
            transform: scale(1.1) rotate(10deg);
        }

        .mil-project-details {
            padding: 25px;
        }

        .mil-project-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .mil-project-tag {
            padding: 5px 12px;
            border-radius: 20px;
            background-color: rgba(2, 168, 168, 0.1);
            color: #02a8a8;
            font-size: 12px;
            font-weight: 600;
        }

        .mil-project-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #121820;
            transition: color 0.3s ease;
        }

        .mil-project-item:hover .mil-project-title {
            color: #02a8a8;
        }

        .mil-project-description {
            color: rgba(18, 24, 32, 0.7);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .mil-view-project {
            display: inline-flex;
            align-items: center;
            color: #02a8a8;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .mil-view-project i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .mil-view-project:hover i {
            transform: translateX(5px);
        }

        .mil-case-study-section {
            padding: 120px 0;
            background-color: #f8f9fa;
        }

        .mil-case-study-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        @media (max-width: 992px) {
            .mil-case-study-content {
                flex-direction: column;
            }
        }

        .mil-case-study-image {
            flex: 1;
            position: relative;
        }

        .mil-case-study-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-case-study-image::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: #02a8a8;
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            z-index: -1;
            opacity: 0.2;
        }

        .mil-case-study-text {
            flex: 1;
        }

        .mil-case-study-text h2 {
            margin-bottom: 25px;
        }

        .mil-case-study-text p {
            margin-bottom: 25px;
            color: rgba(18, 24, 32, 0.7);
        }

        .mil-case-study-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .mil-metric-item {
            padding-left: 20px;
            border-left: 3px solid #02a8a8;
        }

        .mil-metric-value {
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .mil-metric-label {
            color: rgba(18, 24, 32, 0.7);
        }

        .mil-testimonial-box {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }

        .mil-testimonial-text {
            font-style: italic;
            color: #121820;
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }

        .mil-testimonial-text::before {
            content: '"';
            font-size: 60px;
            color: #02a8a8;
            position: absolute;
            top: -10px;
            left: 0;
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .mil-testimonial-author {
            display: flex;
            align-items: center;
        }

        .mil-author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .mil-author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mil-author-info h5 {
            margin-bottom: 5px;
        }

        .mil-author-info p {
            color: rgba(18, 24, 32, 0.6);
            font-size: 14px;
        }

        .mil-cta-section {
            background: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            color: white;
            text-align: center;
        }

        .mil-cta-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }

        .mil-cta-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
        }

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

        .mil-cta-content h2 {
            color: white;
            margin-bottom: 20px;
        }

        .mil-cta-content p {
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .mil-cta-button {
            background-color: white;
            color: #02a8a8;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .mil-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .mil-cta-button i {
            transition: transform 0.3s ease;
        }

        .mil-cta-button:hover i {
            transform: translateX(5px);
        }
        /* Styles spécifiques à la page projet */
        .mil-project-hero {
            position: relative;
            padding: 180px 0 100px;
            overflow: hidden;
        }

        .mil-project-hero .mil-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .mil-project-hero .mil-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
            z-index: -1;
        }

        .mil-project-hero-content {
            position: relative;
            z-index: 1;
            color: white;
        }

        .mil-project-hero-content .mil-breadcrumbs {
            margin-bottom: 30px;
            color: white;
        }

        .mil-project-hero-content h1 {
            margin-bottom: 20px;
            font-size: 48px;
            color: white;
        }

        .mil-project-hero-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 800px;
        }

        .mil-project-info-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .mil-project-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(18, 24, 32, 0.05);
            padding-bottom: 20px;
        }

        .mil-project-info-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }

        .mil-project-info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(2, 168, 168, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #02a8a8;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .mil-project-info-text h5 {
            margin-bottom: 5px;
            color: #121820;
        }

        .mil-project-info-text p {
            margin-bottom: 0;
            color: rgba(18, 24, 32, 0.7);
        }

        .mil-project-section {
            padding: 100px 0;
        }

        .mil-project-section.mil-bg-gray {
            background-color: #f8f9fa;
        }

        .mil-challenge-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        @media (max-width: 992px) {
            .mil-challenge-content {
                flex-direction: column;
            }
        }

        .mil-challenge-text {
            flex: 1;
        }

        .mil-challenge-image {
            flex: 1;
            position: relative;
        }

        .mil-challenge-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-challenge-image::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: #02a8a8;
            border-radius: 50%;
            bottom: -50px;
            right: -50px;
            z-index: -1;
            opacity: 0.2;
        }

        .mil-solution-feature {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .mil-solution-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-solution-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(2, 168, 168, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #02a8a8;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .mil-solution-feature h4 {
            margin-bottom: 15px;
            color: #121820;
        }

        .mil-solution-feature p {
            color: rgba(18, 24, 32, 0.7);
            margin-bottom: 0;
        }

        .mil-results-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        @media (max-width: 768px) {
            .mil-results-metrics {
                grid-template-columns: 1fr;
            }
        }

        .mil-metric-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .mil-metric-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-metric-value {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .mil-metric-label {
            color: #121820;
            font-weight: 500;
            font-size: 18px;
        }

        .mil-testimonial-large {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-bottom: 60px;
        }

        .mil-testimonial-large::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 40px;
            font-size: 160px;
            color: #02a8a8;
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .mil-testimonial-large p {
            position: relative;
            z-index: 1;
            font-size: 20px;
            color: #121820;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .mil-testimonial-author-large {
            display: flex;
            align-items: center;
        }

        .mil-author-image-large {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }

        .mil-author-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mil-author-info-large h4 {
            margin-bottom: 5px;
            color: #121820;
        }

        .mil-author-info-large p {
            margin-bottom: 0;
            color: rgba(18, 24, 32, 0.7);
            font-size: 16px;
        }

        .mil-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .mil-tech-item {
            background-color: white;
            border-radius: 10px;
            padding: 15px 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .mil-tech-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .mil-tech-icon {
            width: 30px;
            height: 30px;
            margin-right: 15px;
        }

        .mil-tech-name {
            font-weight: 500;
            color: #121820;
        }

        .mil-related-projects {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .mil-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        @media (max-width: 992px) {
            .mil-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mil-related-grid {
                grid-template-columns: 1fr;
            }
        }

        .mil-project-image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .mil-project-image-gallery {
                grid-template-columns: 1fr;
            }
        }

        .mil-gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
        }

        .mil-gallery-item.mil-large {
            grid-column: span 2;
            height: 400px;
        }

        @media (max-width: 768px) {
            .mil-gallery-item.mil-large {
                grid-column: span 1;
            }
        }

        .mil-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mil-gallery-item:hover img {
            transform: scale(1.05);
        }
        /* Styles spécifiques à la page projet */
        .mil-project-hero {
            position: relative;
            padding: 180px 0 100px;
            overflow: hidden;
        }

        .mil-project-hero .mil-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .mil-project-hero .mil-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
            z-index: -1;
        }

        .mil-project-hero-content {
            position: relative;
            z-index: 1;
            color: white;
        }
        .mil-project-hero-content .mil-breadcrumbs {
            margin-bottom: 30px;
        }
        .mil-project-hero-content h1 {
            margin-bottom: 20px;
            font-size: 48px;
        }

        .mil-project-hero-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 800px;
        }

        .mil-project-info-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .mil-project-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(18, 24, 32, 0.05);
            padding-bottom: 20px;
        }

        .mil-project-info-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }

        .mil-project-info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(2, 168, 168, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #02a8a8;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .mil-project-info-text h5 {
            margin-bottom: 5px;
            color: #121820;
        }

        .mil-project-info-text p {
            margin-bottom: 0;
            color: rgba(18, 24, 32, 0.7);
        }

        .mil-project-section {
            padding: 100px 0;
        }

        .mil-project-section.mil-bg-gray {
            background-color: #f8f9fa;
        }

        .mil-challenge-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        @media (max-width: 992px) {
            .mil-challenge-content {
                flex-direction: column;
            }
        }

        .mil-challenge-text {
            flex: 1;
        }

        .mil-challenge-image {
            flex: 1;
            position: relative;
        }

        .mil-challenge-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-challenge-image::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: #02a8a8;
            border-radius: 50%;
            bottom: -50px;
            right: -50px;
            z-index: -1;
            opacity: 0.2;
        }

        .mil-solution-feature {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .mil-solution-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-solution-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(2, 168, 168, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #02a8a8;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .mil-solution-feature h4 {
            margin-bottom: 15px;
            color: #121820;
        }

        .mil-solution-feature p {
            color: rgba(18, 24, 32, 0.7);
            margin-bottom: 0;
        }

        .mil-results-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        @media (max-width: 768px) {
            .mil-results-metrics {
                grid-template-columns: 1fr;
            }
        }

        .mil-metric-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .mil-metric-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-metric-value {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .mil-metric-label {
            color: #121820;
            font-weight: 500;
            font-size: 18px;
        }

        .mil-testimonial-large {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-bottom: 60px;
        }

        .mil-testimonial-large::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 40px;
            font-size: 160px;
            color: #02a8a8;
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .mil-testimonial-large p {
            position: relative;
            z-index: 1;
            font-size: 20px;
            color: #121820;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .mil-testimonial-author-large {
            display: flex;
            align-items: center;
        }

        .mil-author-image-large {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }

        .mil-author-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mil-author-info-large h4 {
            margin-bottom: 5px;
            color: #121820;
        }

        .mil-author-info-large p {
            margin-bottom: 0;
            color: rgba(18, 24, 32, 0.7);
            font-size: 16px;
        }

        .mil-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .mil-tech-item {
            background-color: white;
            border-radius: 10px;
            padding: 15px 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .mil-tech-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .mil-tech-icon {
            width: 30px;
            height: 30px;
            margin-right: 15px;
        }

        .mil-tech-name {
            font-weight: 500;
            color: #121820;
        }

        .mil-related-projects {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .mil-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        @media (max-width: 992px) {
            .mil-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mil-related-grid {
                grid-template-columns: 1fr;
            }
        }

        .mil-project-image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .mil-project-image-gallery {
                grid-template-columns: 1fr;
            }
        }

        .mil-gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
        }

        .mil-gallery-item.mil-large {
            grid-column: span 2;
            height: 400px;
        }

        @media (max-width: 768px) {
            .mil-gallery-item.mil-large {
                grid-column: span 1;
            }
        }

        .mil-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mil-gallery-item:hover img {
            transform: scale(1.05);
        }

        .mil-app-mockup {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .mil-app-mockup img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .mil-architecture-diagram {
            margin-top: 60px;
            text-align: center;
        }

        .mil-architecture-diagram img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .mil-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 60px;
            counter-reset: step-counter;
        }

        .mil-process-step {
            flex: 0 0 calc(25% - 30px);
            margin-bottom: 40px;
            position: relative;
            padding-left: 70px;
        }

        @media (max-width: 992px) {
            .mil-process-step {
                flex: 0 0 calc(50% - 30px);
            }
        }

        @media (max-width: 768px) {
            .mil-process-step {
                flex: 0 0 100%;
            }
        }

        .mil-process-step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #02a8a8 0%, #04c4c4 100%);
            color: white;
            font-weight: 700;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mil-process-step h4 {
            margin-bottom: 15px;
            color: #121820;
        }

        .mil-process-step p {
            color: rgba(18, 24, 32, 0.7);
            margin-bottom: 0;
        }

/* Scroll Indicator Styles */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    color: var(--light-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.scroll-arrow {
    margin-top: 10px;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 24px;
    color: #02a8a8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
    .scroll-indicator {
        margin-top: 20px;
    }
}
/* Partenaires responsive */
.mil-partners-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 15px 0;
    z-index: 4;
}

.mil-partners-scroller {
    overflow: hidden;
    white-space: nowrap;
}

.mil-partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.mil-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.mil-partner-item img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.mil-partner-item img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive styles pour les partenaires */
@media screen and (max-width: 768px) {
    .mil-partners-overlay {
        padding: 10px 0;
    }
    
    .mil-partner-item {
        padding: 0 20px;
    }
    
    .mil-partner-item img {
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .mil-partner-item {
        padding: 0 15px;
    }
    
    .mil-partner-item img {
        height: 25px;
    }
}
/* Styles responsive pour la section hero */
.mil-video-hero {
    position: relative;
    height: 100vh; /* Utilisation de la hauteur de la fenêtre */
    min-height: 500px; /* Hauteur minimale pour éviter les problèmes sur les petits écrans */
    overflow: hidden;
}

.mil-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mil-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.mil-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 2;
}

.mil-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.mil-video-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    /* padding-bottom: 50px; */
}

.mil-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mil-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.mil-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Animation pour le contenu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles responsive */
@media screen and (max-width: 1200px) {
    .mil-hero-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 992px) {
    .mil-video-hero {
        height: 90vh;
    }
    
    .mil-hero-title {
        font-size: 36px;
    }
    
    .mil-hero-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .mil-video-hero {
        height: auto;
        min-height: 80vh;
    }
    
    .mil-hero-title {
        font-size: 32px;
    }
    
    .mil-video-content {
        padding: 100px 0;
    }
    
    .mil-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mil-hero-cta .mil-button {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .mil-hero-title {
        font-size: 28px;
    }
    
    .mil-hero-subtitle {
        font-size: 14px;
    }
    
    .mil-video-content {
        padding: 80px 0;
    }
}

/* Fix spécifique pour les petits mobiles */
@media screen and (max-width: 375px) {
    .mil-hero-title {
        font-size: 24px;
    }
    
    .mil-hero-subtitle {
        font-size: 13px;
    }
    
    .mil-video-content {
        padding: 60px 0;
    }
    
    .mil-button {
        font-size: 14px;
        height: 50px;
        padding: 0 20px;
    }
}
/* Key Features Section Styles */
.mil-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.mil-feature-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mil-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mil-feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.mil-feature-icon i {
    font-size: 30px;
}

.mil-feature-text {
    flex: 1;
}

.mil-feature-text h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mil-feature-text p {
    color: #666;
    margin-bottom: 0;
}

/* Responsive styles */
@media (min-width: 768px) {
    .mil-features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mil-feature-item {
        flex-direction: column;
        text-align: center;
        height: 100%;
    }
    
    .mil-feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .mil-features-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animation for fade-in elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}
/* Style pour les liens de navigation actifs */
.mil-navigation nav ul li a.mil-active,
.mil-navigation nav ul li.mil-has-children a.mil-active {
    color: rgb(2, 168, 168) !important;
}

/* Style pour le menu transparent */
.mil-top-panel-transparent .mil-navigation nav ul li a.mil-active,
.mil-top-panel-transparent .mil-navigation nav ul li.mil-has-children a.mil-active {
    color: rgb(2, 168, 168) !important;
}

/* S'assurer que le lien Services reste en vert quand une sous-page est active */
.mil-navigation nav ul li.mil-has-children ul li a.mil-active {
    color: rgb(2, 168, 168) !important;
}
        /* Style pour les liens de navigation actifs */
.mil-navigation nav ul li a.mil-active {
    color: rgb(2, 168, 168) !important; /* Couleur turquoise de votre thème */
}

/* Style pour le menu transparent aussi */
.mil-top-panel-transparent .mil-navigation nav ul li a.mil-active {
    color: rgb(2, 168, 168) !important;
}
/* Assurer que la couleur active reste visible pendant le défilement */
.mil-top-panel.mil-sticky .mil-navigation nav ul li a.mil-active,
.mil-top-panel.mil-animated .mil-navigation nav ul li a.mil-active,
.mil-top-panel.mil-top-panel-transparent.mil-animated .mil-navigation nav ul li a.mil-active,
.mil-top-panel.mil-hide-top .mil-navigation nav ul li a.mil-active {
    color: rgb(2, 168, 168) !important;
}

/* S'assurer que cela fonctionne aussi pour les items de menu avec sous-menus */
.mil-top-panel.mil-sticky .mil-navigation nav ul li.mil-has-children a.mil-active,
.mil-top-panel.mil-animated .mil-navigation nav ul li.mil-has-children a.mil-active,
.mil-top-panel.mil-top-panel-transparent.mil-animated .mil-navigation nav ul li.mil-has-children a.mil-active,
.mil-top-panel.mil-hide-top .mil-navigation nav ul li.mil-has-children a.mil-active {
    color: rgb(2, 168, 168) !important;
}
