

        /* Variables */
        :root {
            --sonet-primary: #1e3c72;
            --sonet-secondary: #2a5298;
            --sonet-accent: #e67e22;
            --sonet-light: #f8f9fa;
            --sonet-dark: #1a2a3a;
            --sonet-gray: #6c757d;
        }
        
/* Hero Carousel - Sans filtre, texte centré */
.hero-carousel {
    height: 600px;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 600px;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
    left: 15%;
    right: 15%;
    background: transparent; /* Pas de fond */
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-carousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: none; /* Pas d'ombre */
}

.hero-carousel .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: none; /* Pas d'ombre */
}

.hero-carousel .carousel-caption .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-carousel .carousel-indicators {
    margin-bottom: 2rem;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: white;
    opacity: 0.5;
}

.hero-carousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel, .hero-carousel .carousel-item {
        height: 500px;
    }
    
    .hero-carousel .carousel-caption {
        left: 5%;
        right: 5%;
    }
    
    .hero-carousel .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .hero-carousel .carousel-caption .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-carousel .carousel-caption .btn-group a {
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-carousel, .hero-carousel .carousel-item {
        height: 400px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero-carousel, .hero-carousel .carousel-item {
        height: 500px;
    }
    
    .hero-carousel .carousel-caption {
        background: rgba(0, 0, 0, 0.6);
        padding: 1.5rem;
        left: 5%;
        right: 5%;
    }
    
    .hero-carousel .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .hero-carousel .carousel-caption .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-carousel .carousel-caption .btn-group a {
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-carousel, .hero-carousel .carousel-item {
        height: 400px;
    }
}
        
        /* Projets en avant - Design épuré */
        .project-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #eee;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(30,60,114,0.15);
            border-color: transparent;
        }
        
        .project-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.05);
        }
        
        .project-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--sonet-accent);
            color: white;
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .project-status.completed {
            background: #27ae60;
        }
        
        .project-content {
            padding: 1.5rem;
        }
        
        .project-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--sonet-dark);
        }
        
        .project-description {
            color: var(--sonet-gray);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .project-category {
            background: var(--sonet-light);
            color: var(--sonet-primary);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .project-date {
            color: var(--sonet-gray);
            font-size: 0.85rem;
        }
        
        .project-progress {
            margin: 1rem 0;
        }
        
        .progress {
            height: 6px;
            border-radius: 3px;
            background: #eee;
        }
        
        .progress-bar {
            background: var(--sonet-accent);
            border-radius: 3px;
        }
        
        .project-link {
            display: inline-block;
            color: var(--sonet-primary);
            font-weight: 500;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            color: var(--sonet-accent);
            transform: translateX(5px);
        }
        
        .project-link i {
            transition: transform 0.3s ease;
        }
        
        .project-link:hover i {
            transform: translateX(5px);
        }
        
        /* Partenaires défilants */
        .partners-section {
            background: white;
            padding: 3rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--sonet-primary);
            margin-bottom: 0.5rem;
        }
        
        .section-title p {
            color: var(--sonet-gray);
            font-size: 1.1rem;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--sonet-accent);
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        
        .partners-slider {
            padding: 1rem 0;
        }
        
        .partner-item {
            padding: 1.5rem;
            text-align: center;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .partner-item:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        
        .partner-item img {
            max-width: 150px;
            max-height: 80px;
            filter: grayscale(0%);
            transition: all 0.3s ease;
        }
        
        .partner-item:hover img {
            filter: grayscale(0%);
        }
        
        /* Slick Carousel customization */
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            background: var(--sonet-primary);
            border-radius: 50%;
            z-index: 1;
        }
        
        .slick-prev:hover, .slick-next:hover {
            background: var(--sonet-secondary);
        }
        
        .slick-prev {
            left: -20px;
        }
        
        .slick-next {
            right: -20px;
        }
        
        .slick-prev:before, .slick-next:before {
            font-size: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-carousel, .hero-carousel .carousel-item {
                height: 500px;
            }
            
            .hero-carousel .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .hero-carousel .carousel-caption p {
                font-size: 1.1rem;
            }
            
            .slick-prev {
                left: 10px;
            }
            
            .slick-next {
                right: 10px;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Projets en avant - Version compacte */
.project-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30,60,114,0.15);
}

.project-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--sonet-accent);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.project-status.completed {
    background: #27ae60;
}

.project-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--sonet-dark);
    line-height: 1.3;
}

.project-description {
    color: var(--sonet-gray);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.project-category {
    background: var(--sonet-light);
    color: var(--sonet-primary);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-date {
    color: var(--sonet-gray);
    font-size: 0.75rem;
}

.project-progress {
    margin: 0.5rem 0;
}

.progress {
    height: 4px;
    border-radius: 2px;
    background: #eee;
}

.progress-bar {
    background: var(--sonet-accent);
    border-radius: 2px;
}

.project-link {
    display: inline-block;
    color: var(--sonet-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--sonet-accent);
}

.project-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(3px);
}