* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Top Social Bar */
        .top-bar {
            background: #003366;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            background: #FDB714;
            color: #003366;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            font-size: 14px;
            transition: transform 0.3s;
        }
         .logo{
        width: 250px;
        height: 80px;
        margin-left: 30px;
    }


        .social-icon:hover {
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 48px;
            width: 100%;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #003366;
        }

        nav a.active {
            color: #003366;
        }
        .menu-item {
    position: relative;
    display: inline-block;
    }

    .selectZone {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
    }

    /* underline effect */
    .selectZone::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #f4b400;
    transition: width 0.3s ease;
    }

    .menu-item:hover .selectZone::after {
    width: 100%;
    }

    /* DROPDOWN */
    .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    min-width: 240px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    }

    .dropdown li {
    list-style: none;
    }

    .dropdown a {
    display: block;
    padding: 12px 20px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    }

    .dropdown a:hover {
    background: #2a2a2a;
    color: #fff;
    }



    .menu {
    list-style: none;
    }

    .menu-item:hover .dropdown {
    display: block;
    }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FDB714;
        }

        .lang-switcher {
            display: flex;
            gap: 10px;
        }

        .lang-switcher img {
            width: 24px;
            height: 18px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .lang-switcher img:hover {
            opacity: 1;
        }

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 800px;
            overflow: hidden;
        }

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for readability */
.carousel-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Text container */
.hero-content {
    position: absolute;
    z-index: 2;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

/* Text fade + slide */
.carousel-slide .hero-content {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    transition: all 1s ease;
}

.carousel-slide.active .hero-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #003366;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
}
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #003366;
            z-index: 10;
            transition: background 0.3s;
        }

        .carousel-nav:hover {
            background: white;
        }

        .carousel-nav.prev {
            left: 30px;
        }

        .carousel-nav.next {
            right: 30px;
        }

        /* Tabs Section */
        .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

/* Show only the active tab content */
.tab-content.active {
    display: block;
}

/* Fade-in animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container for tabs section */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Tabs section styling */
.tabs-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Tab buttons container */
.tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Individual tab button styling */
.tab {
    padding: 20px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
}

.tab:hover {
    background: #e0e0e0;
}

/* Active tab styling */
.tab.active {
    background: #003366;
    color: white;
}

.tab i {
    font-size: 18px;
}

/* About section styling */
.about-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 60px 40px;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    color: #003366;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text h3 {
    color: #003366;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text strong {
    color: #003366;
    font-weight: 600;
}

/* Call-to-action box */
.cta-box {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,51,102,0.3);
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.phone {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #003366;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive design */
@media (max-width: 968px) {
    .tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .tab {
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .tabs {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 30px 20px;
    }

    .phone {
        font-size: 24px;
    }
}

        /* Values Section */
        .values-section {
            padding: 80px 40px;
            background: #F5F5F5;
        }

        .values-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .values-header h2 {
            font-size: 36px;
            color: #003366;
            margin-bottom: 20px;
        }

        .values-header p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .values-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            max-width: 1800px;
            margin: 0 auto;
            flex-wrap: wrap;
            padding: 20px 0;
        }

        .value-item {
            position: relative;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .value-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        .value-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 51, 102, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .value-text {
            color: white;
            font-size: 22px;
            font-weight: 600;
            padding: 20px;
            line-height: 1.3;
        }

        .value-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: #FDB714;
            color: #003366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
        }

        .value-connector {
            width: 60px;
            height: 2px;
            background: repeating-linear-gradient(
                to right,
                #003366 0px,
                #003366 5px,
                transparent 5px,
                transparent 10px
            );
            flex-shrink: 0;
        }

        /* Moyens Section */
        .moyens-section {
            padding: 80px 40px;
            background: white;
        }

        .moyens-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .moyens-header h2 {
            font-size: 48px;
            color: #003366;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .moyens-header p {
            font-size: 20px;
            color: #003366;
            font-weight: 500;
        }

        .moyens-carousel {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .moyens-slide {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: center;
        }

        .moyens-slide.active {
            display: grid;
        }

        .moyens-text {
            background: #003366;
            color: white;
            padding: 80px 60px;
        }

        .moyens-text h3 {
            font-size: 32px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .moyens-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .moyens-button {
            display: inline-block;
            padding: 15px 40px;
            background: #FDB714;
            color: #003366;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 5px;
            transition: transform 0.3s;
        }

        .moyens-button:hover {
            transform: translateY(-2px);
        }

        .moyens-image {
            height: 100%;
            overflow: hidden;
            min-height: 500px;
        }

        .moyens-image img {
            width: 100%;
            padding-top: 40px;
            height: 460px;
            object-fit: cover;
        }

        .moyens-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .moyens-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .moyens-dot.active {
            background: #FDB714;
            transform: scale(1.2);
        }


        .references-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .references-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .references-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .references-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .references-image:hover img {
            transform: scale(1.05);
        }

        .references-content {
            padding: 20px;
        }

        .references-content h2 {
            color: #003366;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .references-content p {
            color: #666;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .sectors-list {
            list-style: none;
        }

        .sector-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .sector-item:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
        }

        .sector-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #F2A516 0%, #E89B0C 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .sector-item:hover .sector-icon {
            transform: rotate(360deg);
            background: linear-gradient(135deg, #003366 0%, #004080 100%);
        }

        .sector-icon i {
            color: white;
            font-size: 24px;
        }

        .sector-text {
            color: #003366;
            font-size: 20px;
            font-weight: 600;
        }

        .scroll-indicator {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-indicator.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-indicator:hover {
            background: #004080;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
        }

        @media (max-width: 968px) {
            .references-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .references-content h2 {
                font-size: 36px;
            }

            .sector-item {
                padding: 15px;
            }

            .sector-icon {
                width: 50px;
                height: 50px;
            }

            .sector-icon i {
                font-size: 20px;
            }

            .sector-text {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .references-section {
                padding: 40px 15px;
            }

            .references-content h2 {
                font-size: 28px;
            }

            .references-content p {
                font-size: 16px;
            }

            .sector-item {
                gap: 15px;
            }

            .sector-text {
                font-size: 16px;
            }
        }

        /* Animation for sector items */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .sector-item {
            animation: slideIn 0.6s ease forwards;
        }

        .sector-item:nth-child(1) { animation-delay: 0.1s; }
        .sector-item:nth-child(2) { animation-delay: 0.2s; }
        .sector-item:nth-child(3) { animation-delay: 0.3s; }
        .sector-item:nth-child(4) { animation-delay: 0.4s; }
        .sector-item:nth-child(5) { animation-delay: 0.5s; }

        /* Savoir Faire Section */
        .savoir-faire-section {
            padding: 80px 40px;
            background: #F5F5F5;
        }

        .savoir-faire-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .savoir-faire-header h2 {
            font-size: 42px;
            color: #003366;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .savoir-faire-header p {
            font-size: 20px;
            color: #003366;
            font-weight: 500;
        }

        .savoir-faire-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        .savoir-faire-video {
            position: relative;
        }

        .savoir-faire-video img {
            width: 100%;
            border-radius: 8px;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: #FDB714;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .video-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-btn i {
            font-size: 32px;
            color: white;
            margin-left: 5px;
        }

        .video-links {
            margin-top: 20px;
            display: flex;
            gap: 20px;
        }

        .video-links a {
            color: #003366;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .video-links a:hover {
            color: #FDB714;
        }

        .savoir-faire-accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .accordion-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .accordion-header {
            background: #003366;
            color: white;
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.3s;
        }

        .accordion-header:hover {
            background: #004080;
        }

        .accordion-header.active {
            background: #003366;
        }

        .accordion-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 20px;
            font-weight: 600;
        }

        .accordion-title i {
            font-size: 24px;
        }

        .accordion-toggle {
            font-size: 24px;
            transition: transform 0.3s;
        }

        .accordion-toggle.active {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-content.active {
            max-height: 500px;
        }

        .accordion-body {
            padding: 30px;
            background: linear-gradient(135deg, #1a4d7a 0%, #003366 100%);
            color: white;
        }

        .accordion-body p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .accordion-body a {
            display: inline-block;
            padding: 12px 35px;
            background: #FDB714;
            color: #003366;
            text-decoration: none;
            font-weight: 600;
            border-radius: 5px;
            transition: transform 0.3s;
        }

        .accordion-body a:hover {
            transform: translateY(-2px);
        }

        /* Actualites Section */
        .actualites-section {
            padding: 80px 40px;
            background: white;
        }

        .actualites-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .actualites-header h2 {
            font-size: 42px;
            color: #003366;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .actualites-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .actualite-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .actualite-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }

        .actualite-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .actualite-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .actualite-card:hover .actualite-image img {
            transform: scale(1.1);
        }

        .actualite-content {
            padding: 25px;
        }

        .actualite-content h3 {
            font-size: 20px;
            color: #003366;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .actualite-divider {
            width: 40px;
            height: 3px;
            background: #FDB714;
            margin-bottom: 15px;
        }

        .actualite-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        .site-footer {
            background: #2d2d2d;
            color: white;
            padding: 60px 40px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 15px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .footer-social-icon:hover {
            background: #FDB714;
        }

        .footer-links h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: #FDB714;
        }

        .footer-contact h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .footer-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-form input,
        .footer-form select,
        .footer-form textarea {
            padding: 12px 15px;
            background: #3d3d3d;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 14px;
        }

        .footer-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .footer-form button {
            padding: 12px 30px;
            background: #FDB714;
            color: #003366;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .footer-form button:hover {
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 100;
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 1200px) {
            .values-container {
                justify-content: center;
            }

            .value-connector {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .about-content,
            .moyens-slide {
                grid-template-columns: 1fr;
            }

            .values-container {
                flex-direction: column;
            }
        }




        @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in from left animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade-in from right animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale and fade animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Elements that will animate on scroll */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When element is visible */
.scroll-animate.animate-visible {
    opacity: 1;
}

/* Different animation classes */
.animate-fade-up {
    transform: translateY(50px);
}

.animate-fade-up.animate-visible {
    transform: translateY(0);
}

.animate-fade-left {
    transform: translateX(-50px);
}

.animate-fade-left.animate-visible {
    transform: translateX(0);
}

.animate-fade-right {
    transform: translateX(50px);
}

.animate-fade-right.animate-visible {
    transform: translateX(0);
}

.animate-scale {
    transform: scale(0.9);
}

.animate-scale.animate-visible {
    transform: scale(1);
}

/* Delay classes for staggered animations */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}