@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0 0 0) !important;
    font-weight: 600;
}
.HeaderRight a{
    font-size: 20px;
    color: #cb111c;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.HeaderRight a i{
    font-size: 25px;
    color: #cb111c;
    padding-right: 5px;
}
.HeaderRight a:hover{
    color: #cb111c;
}

.contaiiner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-contaiiner {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 600px; /* ou la largeur que vous préférez */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
.select-field {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    padding: 10px 20px;
    margin-top: 10px;
    margin-right: 10px; /* Espace entre les boutons si nécessaire */
    border: none;
    border-radius: 5px;
    background-color: #cb111c;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #cb111c;
    color: white;
}

.btn:last-child {
    margin-right: 0;
}

/* Style pour la navigation du formulaire */
.step {
    display: none; /* Les étapes sont cachées par défaut, contrôlées par JS */
}

.step.active {
    display: block; /* Affiche l'étape active */
}


/* banner section here  */
.bannerSec{
    height: 100vh;
    width: 100%;
    background: url(./img/devis.png);
    color: #fff;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerSec h1{
    font-size: 80px;
    font-weight: bold;
}

/* first section here  */
.firstSec{
    height: auto;
    width: 100%;
    padding: 50px 0;
}
.firstSec h4{
    text-align: center;
    color: black;
    padding-bottom: 20px;
}

.carSec{
    height: auto;
    width: 100%;
    padding: 20px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 19px 0px;
}


.carSec h6{
    color: #000;
    font-weight: bold;
}
.leftSide{
    border-right: 1px solid #000;
}
.cars{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.pricesSec{
    display: flex;
    justify-content: space-between;
}

.pricesSec h6 span{
    color: #cb111c;
    font-size: 15px;
}
.carSec p{
    font-size: 10px;
}
.buttons{
    display: flex;
    margin-top: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.modal-item {
    margin-bottom: 10px; /* Ajoute un espace entre chaque élément */
  }
  
.leftBtn, .rightBtn{
    height: auto;
    width: 240px;
    padding: 8px 15px;
    text-align: center;
    text-transform: uppercase;
    background-color: #cb111c;
    color: #fff;

}

.leftBtn1 {
    height: auto;
    width: 240px;
    padding: 8px 15px;
    text-align: center;
    text-transform: uppercase;
    background-color: #cb111c;
    color: #fff;
    margin-right: 10px;
}

.leftBtn{
    margin-right: 10px;
}
.rightBtn{
    margin-left: 10px;
}

/* footer section  */

.footerSec{
    height: auto;
    width: 100%;
    padding: 50px 0;
    
}

.leftFooter{
    display: flex;
    height: 120px;
    align-items: center;
    border-right: 1px solid #000;
}
.RightFooter{
    display: flex;
    align-items: center;
    height: 120px;
}
.RightFooter p{
    font-weight: bold;
}

.middleFooter{
    border-right: 1px solid #000;
    height: 120px;
    text-align: center;
}

.img-fluid {
    margin-top: 15px;
}


.leftFooter p{
    font-weight: bold;
    color: #000;
}

.contactFooter ul{
    list-style: none;
}
.contactFooter ul li{
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.contactFooter ul li i{
    font-size: 25px;
    padding-right: 5px;
}
.contactFooter ul li:hover{
    color: #cb111c;
}
.Icons ul{
    list-style: none;
    display: flex;
    align-content: space-between;
}
.Icons ul li{
    color: #000;
    font-weight: bold;
    
}
.Icons ul li {
    font-size: 25px;
    padding: 0 5px;
    
}
.Icons ul li i:hover{
    color: #cb111c;
    cursor: pointer;
    
}
.quote-form-container {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    counter-reset: step;
}

.progress-bar .step {
    text-align: center;
    width: 24%;
    position: relative;
}

.progress-bar .step:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 2px solid #cb111c;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}




.step.completed + .step:after {
    background-color: #cb111c;
}

/* Style pour les champs de formulaire et les boutons */
input[type="date"],
select,
input[type="number"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #cb111c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}

.rating {
    display: inline-block;
    font-size: 2em;
    color: #ffc107;
}

.rating-note {
    display: block;
    font-size: 1.2em;
    color: #333;
}

.see-all {
    color: #cb111c;
    font-weight: bold;
    text-decoration: none;
}

.card {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    border: none;
}

.card .card-title strong {
    color: #333;
}

.card-text {
    color: #666;
}

.card-subtitle {
    font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
    .buttons {
        display: block;
    }

    .rightBtn, .leftBtn {
        margin-left: 0;
        width: 100%;
    }

    .pricesSec {
        display: block;
        justify-content: space-between;
    }

    .leftBtn {
        margin-bottom: 10px; /* Réduit de 20px à 10px */
    }

    .leftSide {
        border-right: 0 solid #000;
    }

    hr {
        visibility: hidden;
    }

    .bannerSec h1 {
        font-size: 40px; /* Légèrement réduit pour l'espace */
    }

    .middleFooter, .leftFooter, .RightFooter {
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .Icons ul {
        list-style: none;
        display: flex;
        align-content: space-between;
        margin-right: 20px; /* Réduit pour l'espace */
    }

    .contactFooter {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bannerSec {
        height: 40vh; /* Ajusté pour moins d'espace */
    }

    .cars, .cars1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        margin-bottom: 10px; /* Espaces réduits */
    }

    .navbar-brand {
        justify-content: center;
        width: 100%;
        margin-left: -15px; /* Ajusté si nécessaire */
    }

    .navbar-toggler {
        position: absolute;
        right: 10px;
    }

    .leftFooter, .contactFooter {
        width: 100%;
        padding: 0 10px; /* Ajouté pour réduire l'espace interne */
    }

    .contactFooter ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contactFooter ul a {
        justify-content: center;
        width: 100%;
        padding: 5px 0; /* Réduit l'espace vertical */
    }

    .contactFooter ul a li {
        justify-content: center;
        align-items: center;
    }
}
