:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --gold: #fbbf24;
    --secondary-black : #000000
}

body {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-cyan) 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-black));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.expertise-scroll {
    scroll-snap-type: x mandatory;
}

.expertise-card {
    scroll-snap-align: start;
    min-width: 280px;
}

/* Remplacer dans le CSS */
/* CORRECTION URGENTE - Services Événementiels */
.bg-light-gray {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
}

.service-category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-category-card:hover::before {
    left: 100%;
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 30px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.category-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon {
    color: #1d4ed8;
    transform: scale(1.1);
}

.service-category-card h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-category-card p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list li {
    color: #374151;
    font-weight: 500;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.service-list li:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.category-cta .inline-block {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-cta .inline-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}


.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
    100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
}

.typing-animation {
    overflow: hidden;
    border-right: 2px solid var(--secondary-blue);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary-blue) }
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.6);
    pointer-events: none;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
    transform-origin: left;
}

.talent-bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: bubble-float 8s ease-in-out infinite;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

.impact-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    animation: wave-expand 3s linear infinite;
}

@keyframes wave-expand {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.simple-analogy {
    background-color: #f0f9ff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.analogy-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.analogy-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.analogy-before, .analogy-after {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.analogy-before::before, .analogy-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.analogy-before::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.analogy-after::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.analogy-before h4, .analogy-after h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.analogy-before ul, .analogy-after ul {
    list-style: none;
    padding: 0;
}

.analogy-before li, .analogy-after li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.analogy-arrow {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-blue);
    animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.service-category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-category-card:hover::before {
    left: 100%;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 2.5rem;
    color:  rgb(153, 31, 31);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.about-us-excerpt {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-layout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-statement {
    font-style: italic;
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-blue);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.vision-statement::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: serif;
}

.cta-bottom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle span {
    font-weight: 600;
    color: var(--gold);
}

/* Animation du réseau de talents */
.talent-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Effet de particules */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Styles pour les informations de contact */
.contact-info-wrapper {
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-cyan);
    min-width: 30px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: white;
    text-decoration: underline;
}

.follow-us-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--accent-cyan);
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
}

.contact-social-icons .fa-whatsapp:hover {
    background: #25D366;
}

.contact-social-icons .fa-linkedin-in:hover {
    background: #0077B5;
}

.contact-social-icons .fa-facebook-f:hover {
    background: #1877F2;
}

@media (max-width: 768px) {
    .expertise-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem;
        scroll-behavior: smooth;
    }
    
    .analogy-comparison {
        flex-direction: column;
    }
    
    .analogy-arrow {
        transform: rotate(90deg);
    }
    
    .section-layout-two-col {
        grid-template-columns: 1fr;
    }
    
    .services-categories-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .service-category-card {
        min-width: 280px;
    }
    
    .typing-animation {
        white-space: normal;
        border-right: none;
        animation: none;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-social-icons {
        justify-content: center;
    }


    
}