:root {
            --primary-color: #0d6efd;
            --secondary-color: #343a40;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 56px;
        }
        
        /* Navbar */
        .navbar {
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Hero */
        .hero-section {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0;
        }
        
      

 /* Styles pour la section À propos */
    .about-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
        opacity: 0.15;
        z-index: 0;
    }
    
    .about-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 2.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .about-container h3 {
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        font-weight: 700;
    }
    
    .about-container h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--primary-color, #3498db);
        border-radius: 2px;
    }
    
    .about-container p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #34495e;
        margin-bottom: 0;
    }
    
    /* Effet au survol */
    .about-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .about-section {
            padding: 3rem 1rem;
        }
        
        .about-container {
            padding: 1.5rem;
        }
        
        .about-container h3 {
            font-size: 1.8rem;
        }
        
        .about-container p {
            font-size: 1rem;
        }
    }


      /* Styles pour la section Profil */
    .profile-section {
        padding: 6rem 0;
        background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
        position: relative;
    }
    
    .profile-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .profile-image-container {
        flex: 1;
        min-width: 300px;
        position: relative;
    }
    
    .profile-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: perspective(1000px) rotateY(-5deg);
        transition: all 0.5s ease;
        height: 500px;
    }

    
    .profile-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
        opacity: 0.7;
    }
    
    .social-links {
        position: absolute;
        bottom: 30px;
        left: 30px;
        display: flex;
        gap: 15px;
        z-index: 2;
    }
    
    .social-links a {
        color: white;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .social-links a:hover {
        transform: translateY(-5px);
        color: #3498db;
    }
    
    .profile-content {
        flex: 1;
        min-width: 300px;
    }
    
    .profile-subtitle {
        display: inline-block;
        font-size: 1rem;
        color: #3498db;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .profile-title {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #3498db, #2ecc71);
        margin: 1.5rem 0;
        border-radius: 2px;
    }
    
    .profile-heading {
        font-size: 1.5rem;
        color: #34495e;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .profile-text {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #7f8c8d;
        margin-bottom: 2rem;
    }
    
    .profile-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .highlight-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(52, 152, 219, 0.1);
        padding: 0.8rem 1.2rem;
        border-radius: 50px;
        color: #3498db;
        font-weight: 500;
    }
    
    .highlight-item i {
        font-size: 1.2rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .profile-section {
            padding: 3rem 0;
        }
        
        .profile-container {
            flex-direction: column;
            gap: 2rem;
            padding: 0 1.5rem;
        }
        
        .profile-image {
            height: 400px;
            transform: none;
        }
        
        .profile-title {
            font-size: 2.2rem;
        }
        
        .profile-text {
            font-size: 1rem;
        }
    }


  /* Styles de base section service */
    .services-section {
        padding: 100px 0;
        background-color: #f9fafc;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-subtitle {
        display: block;
        font-size: 1rem;
        color: #3498db;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .section-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #3498db, #2ecc71);
        margin: 0 auto 25px;
        border-radius: 2px;
    }
    
    .section-description {
        font-size: 1.1rem;
        color: #7f8c8d;
        line-height: 1.7;
    }
    
    /* Grille des services */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }
    
    /* Carte de service */
    .service-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .service-image-container {
        height: 220px;
        position: relative;
        overflow: hidden;
    }
    
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-card:hover .service-image {
        transform: scale(1.05);
    }
    
    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(52, 152, 219, 0.8);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card:hover .service-overlay {
        opacity: 1;
    }
    
    .service-icon {
        color: white;
        font-size: 3rem;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: translateY(0);
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-content p {
        color: #7f8c8d;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .service-link {
        color: #3498db;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.3s ease;
    }
    
    .service-link i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .service-link:hover {
        color: #2980b9;
    }
    
    .service-link:hover i {
        transform: translateX(5px);
    }
    
    .service-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #e74c3c;
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        }



    /* Section Mission */
.about-section {
    padding: 60px 20px;
    background-color: #f0f4f8; /* Couleur de fond douce */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #046bab; /* Couleur accentuée */
}

.about-section p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6; /* Hauteur de ligne pour lisibilité */
}

/* Section Valeurs */
.about-valeurs {
    padding: 60px 20px;
    background-color: #ffffff; /* Fond blanc */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-valeurs h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #046bab; /* Couleur accentuée */
}

.valul {
    list-style-type: none; /* Enlève les puces */
    padding: 0; /* Enlève le padding */
}

.valli {
    font-size: 1.2rem; /* Taille de police */
    margin: 10px 0; /* Espacement entre les valeurs */
    padding: 10px 15px; /* Espace autour du texte */
    background-color: #e9f5ff; /* Fond clair */
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s; /* Effet de transition */
}

.valli:hover {
    background-color: #d1e7ff; /* Changement de couleur au survol */
    transform: translateY(-2px); /* Légère élévation au survol */
}

        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 2rem;
        }
        
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section .row {
                flex-direction: column-reverse;
            }
            
            .hero-section .col-lg-6 {
                margin-bottom: 1.5rem;
            }
            
            .contact-container .row {
                flex-direction: column;
            }
            
            .contact-info {
                margin-top: 2rem;
            }
        }