:root {
    --primary-color: #1a365d;
    --secondary-color: #2b6cb0;
}

body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.5s ease;
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.hero-section {
    margin-top: -5rem;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('/cootralim/img/camion1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stat-card {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.progress-bar {
    width: 0;
    transition: width 1.5s ease-in-out;
}

.floating-contact-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

.floating-contact-button {
    transition: all 0.3s ease;
}

.floating-contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

section {
    position: relative;
    z-index: 1;
}

#language-menu {
    z-index: 1000;
    /* Assurez-vous que le z-index est suffisamment élevé */
    position: absolute;
    /* Assurez-vous que le positionnement est correct */
    right: 0;
    margin-top: 0.5rem;
    /* Ajustez selon vos besoins */
    width: 12rem;
    /* Ajustez selon vos besoins */
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}