<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Author:Matthias */
/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background: #ff0000;
    padding: 2rem;
}

.key-figures .counter {
    transition: transform 0.3s ease-in-out;
}

.key-figures .counter:hover {
    transform: scale(1.1);
}

.counter {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: var(--white);
}

.counter:hover {
    transform: translateY(-10px);
}

.counter i {
    font-size: 48px;
    color: var(--green);
    margin-bottom: 20px;
}

.counter .count {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin: 15px 0;
    display: block;
}

.counter p {
    color: #666;
    font-size: 18px;
    margin: 0;
}


.service-icon {

    background-color: #86B64F;

}


/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}
/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--green);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-pagination-bullet-active {
    background: var(--green);
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .counter {
        margin-bottom: 30px;
    }

    .service-card {
        margin-bottom: 30px;
    }

    .news-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Section Title */
/* .realizations-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 2rem;
} */

/* .realizations-section .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #86B64F;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
} */

/* Realization Card */
/* .realization-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
} */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.swiper-wrapper {
    transition-timing-function: ease-in-out !important; /* Courbe douce */
}


.realization-card {
    width: 100%;
    max-width: 600px; /* Taille maximale pour chaque carte */
    height: auto;
}


.realization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Realization Image */
.realization-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9; /* Proportion dynamique */
    width: 100%;
}

.realization-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1); /* Courbe plus douce */
}

.realization-image:hover .realization-img {
    transform: scale(1.1);
}



/* Realization Content */
.realization-content {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.realization-content h3 {
    font-size: 1.5rem;
    color: #86B64F;
    margin-bottom: 10px;
    font-weight: bold;
}

.realization-content p {
    font-size: 1rem;
    color: #2c3e50;
    margin: 10px 0;
    line-height: 1.6;
    font-weight: bold;
}

.realization-content .client {
    font-size: 1rem;
    color: #ff0000;
    font-style: italic;
    font-weight: bold;
}
.swiper-button-next,
.swiper-button-prev {
    transition: all 0.7s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1); /* Zoom lÃ©ger au survol */
    color: #86B64F; /* Couleur de mise en valeur */
}


/* Swiper Controls */
/* .swiper-pagination {
    bottom: 10px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #86B64F;
    transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #2c3e50;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .realization-image {
        height: 150px;
    }

    .realization-content h3 {
        font-size: 1.2rem;
    }

    .realization-content p {
        font-size: 0.8rem;
    }
}

/* General Section Styling */
.partners-section {
    background: #f8f9fa; /* Soft light background */
    padding: 60px 20px;
}

/* Title Styling */
.section-title {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Partner Logos */
.partner-logo {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

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

/* Certification Items */
.certification-item {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.certification-item img {
    max-height: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.certification-item h4 {
    font-size: 1.25rem;
    color: #1abc9c;
    font-weight: bold;
    margin-bottom: 10px;
}

.certification-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.certification-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Grid Layout */
.centered-grid .col-md-4,
.centered-grid .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .partner-logo img {
        max-height: 60px;
    }

    .certification-item img {
        max-height: 80px;
    }
}

/* Section d'actualitÃ©s */
.news-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Titre de la section */
.news-section .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Carte d'actualitÃ© */
.news-card {
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Image */
.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Contenu */
.news-content {
    padding: 20px;
    position: relative;
}

.news-title {
    font-size: 1.25rem;
    background-color: #86B64F;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}

.news-summary {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: justify;
}

/* Date en bas Ã&nbsp; droite */
.news-date {
    font-size: 0.9rem;
    color: #111;
    /* background-color: #2c3e50; */
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-style: italic;
}

/* Bouton Lire la suite */
.btn-custom {
    font-size: 0.9rem;
    font-weight: bold;
    /* text-transform: uppercase; */
    background-color: #86B64F;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.btn-custom:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

/* Section Notre mÃ©thode */
.methode-section {
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
    padding: 60px 0;
}

/* .methode-section .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.methode-section .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #86B64F;
    margin: 10px auto 0;
    border-radius: 2px;
} */

/* Carte de methode */
.methode-card {
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 30px 20px;
    height: 250px;  /* Hauteur uniforme pour toutes les cartes */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.methode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

/* IcÃ´ne */
.methode-icon {
    width: 80px;
    height: 80px;
    background: #86B64F;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(134, 182, 79, 0.3);
    transition: background 0.3s ease;
}

.methode-card:hover .methode-icon {
    background: #e74c3c;
}

/* Titre */
.methode-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* Description */
.methode-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Animation supplÃ©mentaire */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
}

[data-aos][data-aos-delay] {
    transition-delay: calc(var(--aos-delay) * 1ms);
}

/* Section Ã€ propos */
.about-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.about-section .section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.about-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #86B64F;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Introduction */
.about-section p {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.8;
}

/* Mission */
.about-section .text-center {
  margin-bottom: 40px;
}

/* Notre Ã©quipe */
.team-member {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-member:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.team-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2c3e50;
}

.team-role {
  font-size: 1rem;
  color: #7f8c8d;
}

.team-bio {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

/* Valeurs */
.about-section .list-unstyled {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.8;
}

.about-section .bi-check-circle {
  color: #86B64F;
}

/* Contact */
.about-section .btn {
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  padding: 12px 25px;
  background-color: #86B64F;
  color: white;
  transition: background-color 0.3s ease;
}

.about-section .btn:hover {
  background-color: #b21f1f;
}

.contact-section {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #1abc9c;
    text-transform: uppercase;
}

.text-secondary {
    color: #6c757d;
    font-size: 1.2rem;
}

.card {
    border: none;
    border-radius: 15px;
}

.card h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 1rem;
    color: #495057;
}

.form-control:focus {
    border-color: #1abc9c;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
}

.btn-primary {
    background-color: #1abc9c;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #16a085;
}

.map-container iframe {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</pre></body></html>