.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

footer {
    background-color: #0F1B2D;
    color: white;
}

footer a {
    color: #C6A85D;
}
footer a:hover {
    text-decoration: underline;
}
#contact a {
    color: #C6A85D;
}
#contact a:hover {
    text-decoration: underline;
}







/* NAVBAR GLASS EFFECT */
#navbar {
    transition: background-color 0.4s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(13, 27, 42, 0.40); /* bleu pétrole transparent */
}
.navbar .nav-link {
    color: #C6A85D;
    font-weight: bold;
    /*font-weight: 400;*/
    transition: color 0.3s;
}

/* Dès qu'on scroll : fond visible */
#navbar.scrolled {
    background-color: #FFFFFF; /* bleu pétrole foncé opaque */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

}






.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #C6A85D;
    text-decoration: underline;
}


.btn-gold {
    background-color:#C6A85D;
    color: #fff;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease-in-out;
}
.btn-gold:hover {
    background-color: #b09447;
    color: #fff;
}
section:nth-of-type(even) {
    background-color: #F8F7F4;
}

/* NAVBAR avec fond sombre et opacité constante */
#navbar {
    background-color: rgba(15, 27, 42, 0.75); /* bleu pétrole avec opacité */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}




/* Par défaut : navbar transparente */
#navbar {
    transition: all 0.3s ease-in-out;
    background-color: rgba(13, 27, 42, 0.0); /* transparent */
    backdrop-filter: blur(10px);
}







/*background-color: rgba(13, 27, 42, 0.90); !* bleu pétrole foncé opaque *!*/
/*footer {*/
/*    background-color: #0F1B2A;*/
/*    color: white;*/
/*}*/
/*footer a {*/
/*    color: #C6A85D;*/
/*    text-decoration: none;*/
/*}*/
/*footer a:hover {*/
/*    text-decoration: underline;*/
/*}*/

#hero video {
    filter: brightness(0.5);
}




.expertise-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    transition: transform 0.3s ease;
}

.expertise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* assombrit l'image */
    z-index: 0;
}
.expertise-card h5,
.expertise-card p {
    z-index: 1;
    position: relative;
}
.card-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

#references .shadow-sm {
    transition: transform 0.3s ease;
}
#references .shadow-sm:hover {
    transform: translateY(-5px);
}

.service-card {
    background-color: #F8F9FA;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.icon i {
    color: #C6A85D;
}



#about {
    background-size: cover;
    background-position: center;
    position: relative;
}
#about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85); /* effet de voile blanc */
    backdrop-filter: blur(4px);
    z-index: 0;
}
#about .container {
    position: relative;
    z-index: 1;
}
.card-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* Style des cartes */
.job-card {
    background-color: #2b2b2b;
    border-left: 4px solid #C6A85D;
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}

.job-card:hover {
    background-color: #343434;
}

/* Style des badges */
.badge-soft {
    display: inline-block;
    background-color: rgba(198,168,93, 0.1);
    color: #C6A85D;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

/* Placeholder visible et clair */
::placeholder {
    color: #aaa !important;
    opacity: 1;
}
footer input,
footer textarea {
    background-color: #1f1f1f;
    border: 1px solid #444;
    color: #eee;
}

footer input:focus,
footer textarea:focus {
    background-color: #262626;
    border-color: #C6A85D;
    color: #fff;
}

footer input::placeholder,
footer textarea::placeholder {
    color: #bbb;
}
footer {
    font-family: 'Poppins', sans-serif;
}

footer i {
    vertical-align: middle;
}

footer .text-muted {
    color: #aaa !important;
}

footer .fw-medium {
    font-weight: 500;
}

footer .fw-semibold {
    font-weight: 600;
}
.service-card:hover {
    box-shadow: 0 8px 20px rgba(198, 168, 93, 0.4);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}






