/* Style Section Bureau */

h2, h3 {

    font-family: 'Poppins', sans-serif;
    text-align:start;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    text-align: left;
}

.card-body h5 {
    color: #3a3a3a;
    font-weight: 600;
}

.card-body p {
    font-size: 1rem;
    color: #555;
}

.card-body i {
    margin-right: 10px;
}

.row .col-md-6 {
    margin-bottom: 30px;
}

/* Carousel */
.carousel-item img {
    border-radius: 1px;
    object-fit: cover;
    height: 600px;
    transition: transform 0.5s ease;
}

.carousel-item img:hover {
    transform: scale(1.05);
}

/* Slider principal */
.carousel-item {    
    height: 85vh;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
    }
}

.dark-mode .card-title {
    background-color: #1f1f1f;
    color: #ffffff;
}
.dark-mode .card-text {
    background-color: #1f1f1f;
    color: #ffffff;
}

/* commu */
.temoignages-section {
    padding: 80px 0;
    
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 180px;
    margin-bottom: 20px;
}
.dark-mode .testimonial-card {
    background: #1f1f1f;
    color: #ffffff;
}

.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    color: #333;
}
.dark-mode .testimonial-card p {
    color: #ffffff;
}

.testimonial-card strong {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
}

.dark-mode .testimonial-card strong {
    color: #ffffff;
}
.testimonial-card span {
    font-size: 14px;
    color: #666;
}

/* Texte à droite */
.temoignages-text .red-text {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
}

.temoignages-text h2 {
    font-weight: bold;
    font-size: 28px;
    margin: 10px 0;
}
.temoignages-text h6 {
    line-height: 1.8; /* Ajuste l'espacement entre les lignes */
    font-size: 16px; /* Ajuste si nécessaire */
    color: #333; /* Assure une bonne lisibilité */
}
.dark-mode .temoignages-text h6 {
    color: #ffffff;
}
.temoignages-text p {
    color: #333;
    font-size: 16px;
}

.btn-danger a {
    background: red;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease-in-out;
    background-color: red;
}

.btn-danger:hover {
    background: rgb(6, 90, 185);
    color: white;
    border-color:  rgb(6, 90, 185);
}
@media (max-width: 768px) {
    .btn-danger {
        width: 100%;
    }
}
