
.fixed-nav {
    background-color: #ffffff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);


}
.fixed-nav a {
   color: #000000;


}

html, body {
    height: 100%;
    margin: 0;
}
.main_content{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

 /*Le body est un conteneur flex en colonne */
body {
    display: flex;
    flex-direction: column;
}

/*DEBUT CONTAINER PRINCIPAL BI*/
/* Le conteneur principal occupe tout l'espace disponible */
#app-content {
    flex: 1;
}
.login_form,.register_form{
    margin-top: 50px;
}
.register_form_img,.img_login{
    height: fit-content;
    width: 100%;
    margin-top: 30px;
    margin-right: 100px;
}


/*CONTAINER PRINCIPAL  FIN BI*/

/* DEBUT HEADERS*/
.header_welcom{
    background: url("https://cdn.pixabay.com/photo/2016/03/26/13/09/cup-of-coffee-1280537_640.jpg") no-repeat center center;
    background-size: cover;
    height: 70vh;
    width: 100%;


}


.header_freelance {
    background: url("https://img.freepik.com/photos-gratuite/etudiant-africain-inspire-dans-verres-tenant-ordinateur-portable-blanc-pigiste-masculin-noir-insouciant-souriant_197531-20160.jpg?t=st=1740359254~exp=1740362854~hmac=a47d63fd72a5c92b600cab5fc4127d7a67fa6b2978159641bb676079b3654943&w=1060") no-repeat center center;
    background-size: cover;
    height: 70vh;
    width: 100%;


}
.header_client {
    background: url("https://img.freepik.com/photos-gratuite/etudiant-africain-inspire-dans-verres-tenant-ordinateur-portable-blanc-pigiste-masculin-noir-insouciant-souriant_197531-20160.jpg?t=st=1740359254~exp=1740362854~hmac=a47d63fd72a5c92b600cab5fc4127d7a67fa6b2978159641bb676079b3654943&w=1060") no-repeat center center;
    background-size: cover;
    height: 70vh;
    width: 100%;


}
/*section contact*/
#contactForm {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
#contactForm.show {
    opacity: 1;
    transform: translateY(0);
}

/*fin contact*/
/*HEADERS FIN*/
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step-box {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.step-box.active {
    background: #007bff;
    color: white;
}
.step-line {
    flex-grow: 1;
    height: 4px;
    background: #ddd;
    margin: 0 5px;
}
.step-box.completed {
    background: green;
    color: white;
}

#testimonials {
    background: #f8f9fa;
}
.carousel-item .partner-logo {
    width: 250px;
    height: 250px;
    object-fit: cover;

}

/*Caroussel temoignage*/
.carousel-item .temoinImg {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #007bff;
}

.carousel-item p {
    font-style: italic;
    max-width: 600px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
}



.testimonial {
    background: white;
    border-left: 4px solid #007bff;
}


/*footer*/
.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    color: #b0b0b0;
    font-size: 20px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/**/
.carousel-partenaire {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: 300px;
    background: #fff;
}

.carousel-track {
    margin-top:50px;
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.carousel-track img {
    height: 200px;
    width: 250px;
    margin: 0 50px;

}


@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
