:root {
    --primary-green: #00a2ff;
    --secondary-yellow: #f1c40f;
    --accent-blue: #0c5af7;
    --text-dark: #2c3e50;
    --light-bg: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

.navbar {
    background-color: var(--primary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-yellow) !important;
}

.nav-link.active {
    color: var(--secondary-yellow) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-yellow);
}

.hero {
    background: var(--secondary-yellow);
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-yellow);
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-green);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-yellow);
    margin-bottom: 20px;
}

.about-content {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 40px;
}

.stats-box {
    background-color: var(--primary-green);
    color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-text {
    font-size: 1.1rem;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-green);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.job-card {
    border-radius: 10px;
    border-left: 5px solid var(--secondary-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.job-type {
    display: inline-block;
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

.contact-info {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-yellow);
    margin-bottom: 15px;
}

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* Animation pour les onglets */
.tab-pane {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Badge pour les postes rï¿½cents */
.badge-new {
    background-color: var(--accent-blue);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

/* Style pour la barre de progression */
.progress {
    height: 10px;
    margin-bottom: 15px;
}

.progress-bar {
    background-color: var(--primary-green);
}
