                                                                                /********** Template CSS **********/

                                                                                :root {
                                                                                    --primary: #32C36C;
                                                                                    --light: #F6F7F8;
                                                                                    --dark: #1A2A36;
                                                                                }

                                                                                body {
                                                                                    background-color: #F6F7F8;
                                                                                }

                                                                                .fw-medium {
                                                                                    font-weight: 500 !important;
                                                                                }

                                                                                .fw-bold {
                                                                                    font-weight: 700 !important;
                                                                                }

                                                                                .fw-black {
                                                                                    font-weight: 900 !important;
                                                                                }

                                                                                .back-to-top {
                                                                                    position: fixed;
                                                                                    display: none;
                                                                                    right: 45px;
                                                                                    bottom: 45px;
                                                                                    z-index: 99;
                                                                                }

                                                                                /* Add these styles to your CSS file or in a <style> tag */
                                                                                /* Feature Section - Center align on mobile */

                                                                                @media (max-width: 768px) {
                                                                                    .container-xxl.py-5 .row.g-5>div {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .container-xxl.py-5 .row.g-5 .d-flex.align-items-center {
                                                                                        justify-content: center !important;
                                                                                    }
                                                                                }

                                                                                /* Carousel - Center text on mobile */

                                                                                @media (max-width: 991px) {
                                                                                    .owl-carousel-inner .col-10.col-lg-8 {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .owl-carousel-inner h1,
                                                                                    .owl-carousel-inner p {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .owl-carousel-inner .btn {
                                                                                        margin: 0 auto;
                                                                                        display: inline-block;
                                                                                    }
                                                                                }

                                                                                /* About Section - Center text on mobile */

                                                                                @media (max-width: 991px) {
                                                                                    .about-text .p-lg-5 {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .about-text h6,
                                                                                    .about-text h1,
                                                                                    .about-text p {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .about-text .btn {
                                                                                        display: inline-block;
                                                                                    }
                                                                                }

                                                                                /* Feature Section (Why Choose Us) - Center on mobile */

                                                                                @media (max-width: 991px) {
                                                                                    .feature-text .p-lg-5 {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .feature-text h6,
                                                                                    .feature-text h1,
                                                                                    .feature-text p {
                                                                                        text-align: center;
                                                                                    }
                                                                                }

                                                                                /* Projects Section - Center titles on mobile */

                                                                                @media (max-width: 768px) {
                                                                                    .portfolio-item .pt-3 {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .portfolio-item hr {
                                                                                        margin-left: auto;
                                                                                        margin-right: auto;
                                                                                    }
                                                                                }

                                                                                /* Footer - Center on mobile */

                                                                                @media (max-width: 991px) {
                                                                                    .footer .col-lg-3.col-md-6 {
                                                                                        text-align: center;
                                                                                    }

                                                                                    .footer .col-lg-3.col-md-6 i {
                                                                                        margin-right: 0.5rem;
                                                                                    }
                                                                                }

                                                                                /* Navbar - Center logo on mobile */

                                                                                @media (max-width: 991px) {
                                                                                    .navbar-brand {
                                                                                        margin: 0 auto;
                                                                                    }
                                                                                }

                                                                                /* Testimonial/Partners Section - Already centered */

                                                                                .text-center {
                                                                                    text-align: center;
                                                                                }

                                                                                /*** Spinner ***/

                                                                                #spinner {
                                                                                    opacity: 0;
                                                                                    visibility: hidden;
                                                                                    transition: opacity .5s ease-out, visibility 0s linear .5s;
                                                                                    z-index: 99999;
                                                                                }

                                                                                #spinner.show {
                                                                                    transition: opacity .5s ease-out, visibility 0s linear 0s;
                                                                                    visibility: visible;
                                                                                    opacity: 1;
                                                                                }

                                                                                /*** Button ***/

                                                                                .btn {
                                                                                    font-weight: 500;
                                                                                    transition: .5s;
                                                                                }

                                                                                .btn.btn-primary,
                                                                                .btn.btn-outline-primary:hover {
                                                                                    color: #FFFFFF;
                                                                                }

                                                                                .btn-square {
                                                                                    width: 38px;
                                                                                    height: 38px;
                                                                                }

                                                                                .btn-sm-square {
                                                                                    width: 32px;
                                                                                    height: 32px;
                                                                                }

                                                                                .btn-lg-square {
                                                                                    width: 48px;
                                                                                    height: 48px;
                                                                                }

                                                                                .btn-square,
                                                                                .btn-sm-square,
                                                                                .btn-lg-square {
                                                                                    padding: 0;
                                                                                    display: flex;
                                                                                    align-items: center;
                                                                                    justify-content: center;
                                                                                    font-weight: normal;
                                                                                }

                                                                                .generator-container {
                                                                                    max-width: 1200px;
                                                                                    margin: 0 auto;
                                                                                    background: white;
                                                                                    padding: 30px;
                                                                                    border-radius: 10px;
                                                                                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                                                                                    margin-bottom: 30px;
                                                                                }

                                                                                .generator-header {
                                                                                    text-align: center;
                                                                                    margin-bottom: 30px;
                                                                                    padding-bottom: 20px;
                                                                                    border-bottom: 3px solid #2c3e50;
                                                                                }

                                                                                .generator-header h1 {
                                                                                    color: #2c3e50;
                                                                                    margin-bottom: 10px;
                                                                                }

                                                                                .generator-header p {
                                                                                    color: #7f8c8d;
                                                                                }

                                                                                .controls {
                                                                                    display: flex;
                                                                                    gap: 15px;
                                                                                    margin-bottom: 30px;
                                                                                    flex-wrap: wrap;
                                                                                    justify-content: center;
                                                                                }

                                                                                .btn {
                                                                                    padding: 12px 25px;
                                                                                    border: none;
                                                                                    border-radius: 5px;
                                                                                    font-size: 16px;
                                                                                    cursor: pointer;
                                                                                    transition: all 0.3s;
                                                                                    font-weight: 600;
                                                                                }

                                                                                .btn-primary {
                                                                                    background: #32C36C;
                                                                                    color: white;
                                                                                }

                                                                                .btn-primary:hover {
                                                                                    background: #32C36C;
                                                                                }

                                                                                .btn-success {
                                                                                    background: #27ae60;
                                                                                    color: white;
                                                                                }

                                                                                .btn-success:hover {
                                                                                    background: #229954;
                                                                                }

                                                                                .project-list {
                                                                                    display: grid;
                                                                                    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                                                                                    gap: 20px;
                                                                                    margin-top: 20px;
                                                                                }

                                                                                .project-item {
                                                                                    background: #f8f9fa;
                                                                                    padding: 15px;
                                                                                    border-radius: 8px;
                                                                                    border-left: 4px solid #32C36C;
                                                                                    cursor: pointer;
                                                                                    transition: all 0.3s;
                                                                                }

                                                                                .project-item:hover {
                                                                                    background: #e9ecef;
                                                                                    transform: translateX(5px);
                                                                                }

                                                                                .project-item h3 {
                                                                                    color: #2c3e50;
                                                                                    font-size: 14px;
                                                                                    margin-bottom: 8px;
                                                                                }

                                                                                .project-item p {
                                                                                    color: #7f8c8d;
                                                                                    font-size: 12px;
                                                                                }

                                                                                .preview-container {
                                                                                    max-width: 900px;
                                                                                    margin: 0 auto;
                                                                                    background: white;
                                                                                    min-height: 400px;
                                                                                }

                                                                                /* Style pour la page projet individuelle */

                                                                                .project-page {
                                                                                    background: white;
                                                                                    padding: 0;
                                                                                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                                                                                }

                                                                                .project-header {
                                                                                    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                                                                                    color: white;
                                                                                    padding: 40px;
                                                                                    text-align: center;
                                                                                }

                                                                                .project-logo {
                                                                                    max-width: 150px;
                                                                                    margin-bottom: 20px;
                                                                                }

                                                                                .project-header h1 {
                                                                                    font-size: 28px;
                                                                                    margin-bottom: 10px;
                                                                                    text-transform: uppercase;
                                                                                    letter-spacing: 1px;
                                                                                }

                                                                                .project-header p {
                                                                                    opacity: 0.9;
                                                                                    font-size: 16px;
                                                                                }

                                                                                .project-content {
                                                                                    padding: 50px 40px;
                                                                                    max-width: 800px;
                                                                                    margin: 0 auto;
                                                                                }

                                                                                .info-section {
                                                                                    margin-bottom: 40px;
                                                                                    padding: 30px;
                                                                                    background: #f8f9fa;
                                                                                    border-radius: 10px;
                                                                                    border-left: 5px solid #32C36C;
                                                                                }

                                                                                .info-label {
                                                                                    font-size: 12px;
                                                                                    color: #7f8c8d;
                                                                                    text-transform: uppercase;
                                                                                    letter-spacing: 2px;
                                                                                    margin-bottom: 12px;
                                                                                    font-weight: 600;
                                                                                }

                                                                                .info-value {
                                                                                    font-size: 18px;
                                                                                    color: #2c3e50;
                                                                                    line-height: 1.6;
                                                                                }

                                                                                .montant-label {
                                                                                    font-size: 14px;
                                                                                    opacity: 0.9;
                                                                                    margin-bottom: 15px;
                                                                                    letter-spacing: 2px;
                                                                                }

                                                                                .montant-value {
                                                                                    font-size: 42px;
                                                                                    font-weight: bold;
                                                                                }

                                                                                /*** Navbar ***/

                                                                                .navbar.sticky-top {
                                                                                    top: -100px;
                                                                                    transition: .5s;
                                                                                }

                                                                                .mb-4 {
                                                                                    color: black;
                                                                                }

                                                                                .mb-1 {
                                                                                    color: black;
                                                                                }

                                                                                .navbar .navbar-brand,
                                                                                .navbar a.btn {
                                                                                    height: 75px;
                                                                                }

                                                                                .navbar .navbar-nav .nav-link {
                                                                                    margin-right: 30px;
                                                                                    padding: 25px 0;
                                                                                    color: var(--dark);
                                                                                    font-size: 15px;
                                                                                    font-weight: 500;
                                                                                    text-transform: uppercase;
                                                                                    outline: none;
                                                                                }

                                                                                .navbar .navbar-nav .nav-link:hover,
                                                                                .navbar .navbar-nav .nav-link.active {
                                                                                    color: var(--primary);
                                                                                }

                                                                                .navbar .dropdown-toggle::after {
                                                                                    border: none;
                                                                                    content: "\f107";
                                                                                    font-family: "Font Awesome 5 Free";
                                                                                    font-weight: 900;
                                                                                    vertical-align: middle;
                                                                                    margin-left: 8px;
                                                                                }

                                                                                @media (max-width: 991.98px) {
                                                                                    .navbar .navbar-nav .nav-link {
                                                                                        margin-right: 0;
                                                                                        padding: 10px 0;
                                                                                    }

                                                                                    .navbar .navbar-nav {
                                                                                        border-top: 1px solid #EEEEEE;
                                                                                    }
                                                                                }

                                                                                @media (min-width: 992px) {
                                                                                    .navbar .nav-item .dropdown-menu {
                                                                                        display: block;
                                                                                        border: none;
                                                                                        margin-top: 0;
                                                                                        top: 150%;
                                                                                        opacity: 0;
                                                                                        visibility: hidden;
                                                                                        transition: .5s;
                                                                                    }

                                                                                    .navbar .nav-item:hover .dropdown-menu {
                                                                                        top: 100%;
                                                                                        visibility: visible;
                                                                                        transition: .5s;
                                                                                        opacity: 1;
                                                                                    }
                                                                                }

                                                                                .navbar .dropdown-toggle1::after {
                                                                                    border: none;
                                                                                    content: "\f107";
                                                                                    font-family: "Font Awesome 5 Free";
                                                                                    font-weight: 900;
                                                                                    vertical-align: middle;
                                                                                    margin-left: 8px;
                                                                                }

                                                                                @media (max-width: 991.98px) {
                                                                                    .navbar .navbar-nav .nav-link {
                                                                                        margin-right: 0;
                                                                                        padding: 10px 0;
                                                                                    }

                                                                                    .navbar .navbar-nav {
                                                                                        border-top: 1px solid #EEEEEE;
                                                                                    }
                                                                                }

                                                                                @media (min-width: 992px) {
                                                                                    .navbar .nav-item .dropdown-menu {
                                                                                        display: block;
                                                                                        border: none;
                                                                                        margin-top: 0;
                                                                                        top: 150%;
                                                                                        opacity: 0;
                                                                                        visibility: hidden;
                                                                                        transition: .5s;
                                                                                    }

                                                                                    .navbar .nav-item:hover .dropdown-menu {
                                                                                        top: 100%;
                                                                                        visibility: visible;
                                                                                        transition: .5s;
                                                                                        opacity: 1;
                                                                                    }
                                                                                }

                                                                                /*** Header ***/

                                                                                .owl-carousel-inner {
                                                                                    position: absolute;
                                                                                    width: 100%;
                                                                                    height: 100%;
                                                                                    top: 0;
                                                                                    left: 0;
                                                                                    display: flex;
                                                                                    align-items: center;
                                                                                    background: rgba(0, 0, 0, .1);
                                                                                }

                                                                                @media (max-width: 768px) {
                                                                                    .header-carousel .owl-carousel-item {
                                                                                        position: relative;
                                                                                        min-height: 500px;
                                                                                    }

                                                                                    .header-carousel .owl-carousel-item img {
                                                                                        position: absolute;
                                                                                        width: 100%;
                                                                                        height: 100%;
                                                                                        object-fit: cover;
                                                                                    }

                                                                                    .header-carousel .owl-carousel-item p {
                                                                                        font-size: 16px !important;
                                                                                    }
                                                                                }

                                                                                .header-carousel .owl-dots {
                                                                                    position: absolute;
                                                                                    width: 60px;
                                                                                    height: 100%;
                                                                                    top: 0;
                                                                                    right: 30px;
                                                                                    display: flex;
                                                                                    flex-direction: column;
                                                                                    align-items: center;
                                                                                    justify-content: center;
                                                                                }

                                                                                .header-carousel .owl-dots .owl-dot {
                                                                                    position: relative;
                                                                                    width: 45px;
                                                                                    height: 45px;
                                                                                    margin: 5px 0;
                                                                                    background: #FFFFFF;
                                                                                    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
                                                                                    border-radius: 45px;
                                                                                    transition: .5s;
                                                                                }

                                                                                .header-carousel .owl-dots .owl-dot.active {
                                                                                    width: 60px;
                                                                                    height: 60px;
                                                                                }

                                                                                .header-carousel .owl-dots .owl-dot img {
                                                                                    position: absolute;
                                                                                    width: 100%;
                                                                                    height: 100%;
                                                                                    object-fit: cover;
                                                                                    padding: 2px;
                                                                                    border-radius: 45px;
                                                                                    transition: .5s;
                                                                                }


                                                                                .breadcrumb-item+.breadcrumb-item::before {
                                                                                    color: var(--light);
                                                                                }

                                                                                /*** About ***/

                                                                                @media (min-width: 992px) {
                                                                                    .container.about {
                                                                                        max-width: 100% !important;
                                                                                    }

                                                                                    .about-text {
                                                                                        padding-right: calc(((100% - 960px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1200px) {
                                                                                    .about-text {
                                                                                        padding-right: calc(((100% - 1140px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1400px) {
                                                                                    .about-text {
                                                                                        padding-right: calc(((100% - 1320px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                .col-lg-4 col-md-6 portfolio-item first {
                                                                                    width: 100%;
                                                                                }

                                                                                .carousel-container {
                                                                                    width: 100%;
                                                                                    overflow: hidden;
                                                                                    background: #fff;
                                                                                    padding: 10px;
                                                                                }

                                                                                .carousel {
                                                                                    display: flex;
                                                                                    gap: 16px;
                                                                                    animation: scroll 15s linear infinite;
                                                                                }

                                                                                .card {
                                                                                    flex: 0 0 250px;
                                                                                    height: 150px;
                                                                                    font-weight: bold;
                                                                                    display: flex;
                                                                                    justify-content: center;
                                                                                    align-items: center;
                                                                                    scroll-snap-align: start;
                                                                                    transition: transform 0.3s;
                                                                                }

                                                                                .card:hover {
                                                                                    transform: scale(1.05);
                                                                                }

                                                                                /* Keyframes for auto scroll */

                                                                                @keyframes scroll {
                                                                                    0% {
                                                                                        transform: translateX(0);
                                                                                    }

                                                                                    100% {
                                                                                        transform: translateX(-50%);
                                                                                    }
                                                                                }

                                                                                /*** Service ***/

                                                                                .service-item {
                                                                                    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
                                                                                }

                                                                                .service-icon {
                                                                                    position: relative;
                                                                                    margin: -50px 0 25px 0;
                                                                                    width: 100px;
                                                                                    height: 100px;
                                                                                    display: flex;
                                                                                    align-items: center;
                                                                                    justify-content: center;
                                                                                    color: var(--primary);
                                                                                    background: #FFFFFF;
                                                                                    border-radius: 100px;
                                                                                    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
                                                                                    transition: .5s;
                                                                                }

                                                                                .service-item:hover .service-icon {
                                                                                    color: #FFFFFF;
                                                                                    background: var(--primary);
                                                                                }

                                                                                /*** Feature ***/

                                                                                @media (min-width: 992px) {
                                                                                    .container.feature {
                                                                                        max-width: 100% !important;
                                                                                    }

                                                                                    .feature-text {
                                                                                        padding-left: calc(((100% - 960px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1200px) {
                                                                                    .feature-text {
                                                                                        padding-left: calc(((100% - 1140px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1400px) {
                                                                                    .feature-text {
                                                                                        padding-left: calc(((100% - 1320px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                /*** Project Portfolio ***/

                                                                                #portfolio-flters li {
                                                                                    display: inline-block;
                                                                                    font-weight: 500;
                                                                                    color: var(--dark);
                                                                                    cursor: pointer;
                                                                                    transition: .5s;
                                                                                    border-bottom: 2px solid transparent;
                                                                                }

                                                                                #portfolio-flters li:hover,
                                                                                #portfolio-flters li.active {
                                                                                    color: var(--primary);
                                                                                    border-color: var(--primary);
                                                                                }

                                                                                .portfolio-img {
                                                                                    position: relative;
                                                                                }

                                                                                /* Center the Explore More button #projbtn */

                                                                                #projbtn {
                                                                                    display: block !important;
                                                                                    margin: 1rem auto 0 !important;
                                                                                    text-align: center;
                                                                                }

                                                                                /* Ensure its wrapper doesn't override centering */

                                                                                .portfolio-item>.d-flex {
                                                                                    justify-content: center !important;
                                                                                    align-items: center !important;
                                                                                }

                                                                                /*** Quote ***/

                                                                                @media (min-width: 992px) {
                                                                                    .container.quote {
                                                                                        max-width: 100% !important;
                                                                                    }

                                                                                    .quote-text {
                                                                                        padding-right: calc(((100% - 960px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1200px) {
                                                                                    .quote-text {
                                                                                        padding-right: calc(((100% - 1140px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1400px) {
                                                                                    .quote-text {
                                                                                        padding-right: calc(((100% - 1320px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                /*** Team ***/

                                                                                .team-item {
                                                                                    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
                                                                                }

                                                                                .team-item img {
                                                                                    border-radius: 8px 60px 0 0;
                                                                                }

                                                                                .team-item .team-social {
                                                                                    display: flex;
                                                                                    flex-direction: column;
                                                                                    align-items: center;
                                                                                    justify-content: flex-end;
                                                                                    background: #FFFFFF;
                                                                                    transition: .5s;
                                                                                }

                                                                                /*** Testimonial ***/

                                                                                .testimonial-carousel::before {
                                                                                    position: absolute;
                                                                                    content: "";
                                                                                    top: 0;
                                                                                    left: 0;
                                                                                    height: 100%;
                                                                                    width: 0;
                                                                                    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                                                                                    z-index: 1;
                                                                                }

                                                                                .testimonial-carousel::after {
                                                                                    position: absolute;
                                                                                    content: "";
                                                                                    top: 0;
                                                                                    right: 0;
                                                                                    height: 100%;
                                                                                    width: 0;
                                                                                    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                                                                                    z-index: 1;
                                                                                }

                                                                                @media (min-width: 768px) {

                                                                                    .testimonial-carousel::before,
                                                                                    .testimonial-carousel::after {
                                                                                        width: 200px;
                                                                                    }
                                                                                }

                                                                                @media (min-width: 992px) {

                                                                                    .testimonial-carousel::before,
                                                                                    .testimonial-carousel::after {
                                                                                        width: 300px;
                                                                                    }
                                                                                }

                                                                                .testimonial-carousel .owl-nav {
                                                                                    position: absolute;
                                                                                    width: 350px;
                                                                                    top: 20px;
                                                                                    left: 50%;
                                                                                    transform: translateX(-50%);
                                                                                    display: flex;
                                                                                    justify-content: space-between;
                                                                                    opacity: 0;
                                                                                    transition: .5s;
                                                                                    z-index: 1;
                                                                                }

                                                                                .testimonial-carousel:hover .owl-nav {
                                                                                    width: 300px;
                                                                                    opacity: 1;
                                                                                }

                                                                                .testimonial-carousel .owl-nav .owl-prev,
                                                                                .testimonial-carousel .owl-nav .owl-next {
                                                                                    position: relative;
                                                                                    color: var(--primary);
                                                                                    font-size: 45px;
                                                                                    transition: .5s;
                                                                                }

                                                                                .testimonial-carousel .owl-nav .owl-prev:hover,
                                                                                .testimonial-carousel .owl-nav .owl-next:hover {
                                                                                    color: var(--dark);
                                                                                }

                                                                                .testimonial-carousel .testimonial-img img {
                                                                                    width: 100px;
                                                                                    height: 100px;
                                                                                }

                                                                                .testimonial-carousel .testimonial-img .btn-square {
                                                                                    position: absolute;
                                                                                    bottom: -19px;
                                                                                    left: 50%;
                                                                                    transform: translateX(-50%);
                                                                                }

                                                                                .testimonial-carousel .owl-item .testimonial-text {
                                                                                    margin-bottom: 30px;
                                                                                    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
                                                                                    transform: scale(.8);
                                                                                    transition: .5s;
                                                                                }

                                                                                .testimonial-carousel .owl-item.center .testimonial-text {
                                                                                    transform: scale(1);
                                                                                }

                                                                                /*** Contact ***/

                                                                                @media (min-width: 992px) {
                                                                                    .container.contact {
                                                                                        max-width: 100% !important;
                                                                                    }

                                                                                    .contact-text {
                                                                                        padding-left: calc(((100% - 960px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1200px) {
                                                                                    .contact-text {
                                                                                        padding-left: calc(((100% - 1140px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                @media (min-width: 1400px) {
                                                                                    .contact-text {
                                                                                        padding-left: calc(((100% - 1320px) / 2) + .75rem);
                                                                                    }
                                                                                }

                                                                                /*** Footer ***/

                                                                                .footer .btn.btn-social {
                                                                                    margin-right: 5px;
                                                                                    color: #9B9B9B;
                                                                                    border: 1px solid #9B9B9B;
                                                                                    border-radius: 38px;
                                                                                    transition: .3s;
                                                                                }

                                                                                .footer .btn.btn-social:hover {
                                                                                    color: var(--primary);
                                                                                    border-color: var(--light);
                                                                                }

                                                                                .footer .btn.btn-link {
                                                                                    display: block;
                                                                                    margin-bottom: 5px;
                                                                                    padding: 0;
                                                                                    text-align: left;
                                                                                    color: #9B9B9B;
                                                                                    font-weight: normal;
                                                                                    text-transform: capitalize;
                                                                                    transition: .3s;
                                                                                }

                                                                                .footer .btn.btn-link::before {
                                                                                    position: relative;
                                                                                    content: "\f105";
                                                                                    font-family: "Font Awesome 5 Free";
                                                                                    font-weight: 900;
                                                                                    margin-right: 10px;
                                                                                }

                                                                                .footer .btn.btn-link:hover {
                                                                                    color: #FFFFFF;
                                                                                    letter-spacing: 1px;
                                                                                    box-shadow: none;
                                                                                }

                                                                                .footer .copyright {
                                                                                    padding: 25px 0;
                                                                                    border-top: 1px solid rgba(256, 256, 256, .1);
                                                                                }

                                                                                .footer .copyright a {
                                                                                    color: var(--light);
                                                                                }

                                                                                .footer .copyright a:hover {
                                                                                    color: var(--primary);
                                                                                }

                                                                                .about-page-container {
                                                                                    max-width: 1200px;
                                                                                    margin: 0 auto;
                                                                                    padding: 20px;
                                                                                }

                                                                                /* 1. SECTION HERO / ACCROCHE */

                                                                                .hero-about {
                                                                                    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('path/to/votre_image_chantier.jpg') center center no-repeat;
                                                                                    background-size: cover;
                                                                                    color: white;
                                                                                    padding: 100px 20px;
                                                                                    text-align: center;
                                                                                }

                                                                                .hero-about h1 {
                                                                                    font-size: 3em;
                                                                                    margin-bottom: 15px;
                                                                                    font-weight: 700;
                                                                                }

                                                                                .hero-about p {
                                                                                    font-size: 1.2em;
                                                                                    max-width: 800px;
                                                                                    margin: 0 auto;
                                                                                    line-height: 1.5;
                                                                                }

                                                                                /* 2. SECTION HISTOIRE ET ANCRAGE */

                                                                                .section-story {
                                                                                    display: flex;
                                                                                    gap: 40px;
                                                                                    padding: 80px 20px;
                                                                                    background-color: white;
                                                                                    align-items: center;
                                                                                }

                                                                                .story-text {
                                                                                    flex: 2;
                                                                                }

                                                                                .story-text h2 {
                                                                                    color: black;
                                                                                    margin-bottom: 20px;
                                                                                }

                                                                                .story-image {
                                                                                    flex: 1;
                                                                                    /* Placeholder pour l'image d'héritage (logo IRIS ou carte Maroc) */
                                                                                }

                                                                                .story-image img {
                                                                                    width: 100%;
                                                                                    height: auto;
                                                                                    border-radius: 8px;
                                                                                }

                                                                                /* 3. SECTION VALEURS */

                                                                                .section-values {
                                                                                    background-color: var(--color-bg-light);
                                                                                    padding: 80px 20px;
                                                                                    text-align: center;
                                                                                }

                                                                                .values-grid {
                                                                                    display: grid;
                                                                                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                                                                                    gap: 30px;
                                                                                    margin-top: 40px;
                                                                                }

                                                                                .value-card {
                                                                                    padding: 30px;
                                                                                    background: white;
                                                                                    border-radius: 8px;
                                                                                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                                                                                    text-align: left;
                                                                                    border-top: 5px solid #32C36C;
                                                                                }

                                                                                .value-card h3 {
                                                                                    color: #32C36C;
                                                                                    font-size: 1.4em;
                                                                                    margin-bottom: 10px;
                                                                                }

                                                                                .security-focus {
                                                                                    background-color: #3ad277;
                                                                                    /* Fond accentué pour le 95% */
                                                                                    color: black;
                                                                                    padding: 20px;
                                                                                    margin-top: 20px;
                                                                                    border-radius: 8px;
                                                                                }

                                                                                .security-focus strong {
                                                                                    font-size: 1.5em;
                                                                                    color: var(--color-primary);
                                                                                }

                                                                                /* 4. SECTION METRIQUES / BRAG BAR */

                                                                                .section-metrics {
                                                                                    padding: 60px 20px;
                                                                                    text-align: center;
                                                                                    background-color: var(--color-primary);
                                                                                    color: white;
                                                                                }

                                                                                .metrics-grid {
                                                                                    display: grid;
                                                                                    grid-template-columns: repeat(4, 1fr);
                                                                                    gap: 20px;
                                                                                    margin-top: 30px;
                                                                                }

                                                                                .metric-item strong {
                                                                                    display: block;
                                                                                    font-size: 3em;
                                                                                    font-weight: 700;
                                                                                    color: var(--color-secondary);
                                                                                    /* Jaune pour les chiffres clés */
                                                                                }

                                                                                .metric-item span {
                                                                                    display: block;
                                                                                    font-size: 1.1em;
                                                                                    opacity: 0.9;
                                                                                }

                                                                                /* 5. SECTION CTA */

                                                                                .section-cta {
                                                                                    color: rgb(0, 0, 0);
                                                                                    text-align: center;
                                                                                }

                                                                                .cta-button {
                                                                                    display: inline-block;
                                                                                    padding: 15px 30px;
                                                                                    margin-top: 20px;
                                                                                    background-color: #32C36C;
                                                                                    color: white;
                                                                                    text-decoration: none;
                                                                                    font-weight: bold;
                                                                                    border-radius: 5px;
                                                                                    transition: background-color 0.3s;
                                                                                }

                                                                                .cta-button:hover {
                                                                                    background-color: #323634;
                                                                                    /* Teinte plus claire au survol */
                                                                                }

                                                                                @media (max-width: 768px) {

                                                                                    .section-story,
                                                                                    .metrics-grid {
                                                                                        flex-direction: column;
                                                                                        grid-template-columns: 1fr;
                                                                                    }

                                                                                    .hero-about h1 {
                                                                                        font-size: 2em;
                                                                                    }

                                                                                    .metric-item strong {
                                                                                        font-size: 2.5em;
                                                                                    }
                                                                                }

                                                                                @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800;900&display=swap");

                                                                                .speedyui-faq {
                                                                                    font-family: 'Inter', sans-serif;
                                                                                    --su-primary-color: #32C36C;
                                                                                }

                                                                                .speedyui-faq p {
                                                                                    margin-bottom: 0;
                                                                                }

                                                                                .speedyui-faq .sub-title {
                                                                                    color: var(--su-primary-color);
                                                                                }

                                                                                .speedyui-faq .accordion {
                                                                                    background-color: transparent;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-item {
                                                                                    background-color: transparent;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-body {
                                                                                    background-color: #fff;
                                                                                    border-top: 1px solid #e7e7e7;
                                                                                    padding-top: 1.5rem;
                                                                                    padding-bottom: 1.5rem;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button {
                                                                                    background-color: #fff;
                                                                                    transition: all .3s;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button:hover {
                                                                                    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button:focus {
                                                                                    box-shadow: none;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button:after {
                                                                                    content: "\F286";
                                                                                    display: inline-block;
                                                                                    font-family: bootstrap-icons;
                                                                                    font-style: normal;
                                                                                    font-weight: normal;
                                                                                    font-variant: normal;
                                                                                    text-transform: none;
                                                                                    line-height: 1;
                                                                                    vertical-align: -0.125em;
                                                                                    background-image: none;
                                                                                    width: 38px;
                                                                                    height: 38px;
                                                                                    border-radius: 50rem;
                                                                                    display: flex;
                                                                                    align-items: center;
                                                                                    justify-content: center;
                                                                                    font-size: 1rem;
                                                                                    color: #fff;
                                                                                    background-color: var(--su-primary-color);
                                                                                    transform: rotate(0deg);
                                                                                    transition: all .3s;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button.collapsed:after {
                                                                                    content: "\F282";
                                                                                    background-color: #f4f4f4;
                                                                                    color: var(--su-primary-color);
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button:not(.collapsed) {
                                                                                    color: var(--bs-dark);
                                                                                    box-shadow: none;
                                                                                }

                                                                                .speedyui-faq .accordion p {
                                                                                    line-height: 1.7;
                                                                                    font-size: 15px;
                                                                                }

                                                                                .speedyui-faq .accordion .accordion-button {
                                                                                    font-weight: 500;
                                                                                }

                                                                                .form {
                                                                                    align-items: center;
                                                                                    justify-content: center;
                                                                                }

                                                                                .containera {
                                                                                    display: grid;
                                                                                    grid-template-columns: 1fr 1fr;
                                                                                    width: 100%;
                                                                                    max-width: 100%;
                                                                                    padding: 100px 0 100px 0;
                                                                                }

                                                                                .photo-frame {
                                                                                    position: relative;
                                                                                    width: 100%;
                                                                                    cursor: pointer;
                                                                                    transition: transform 0.3s ease;
                                                                                    text-decoration: none;
                                                                                    display: block;
                                                                                }

                                                                                .photo-frame:hover {
                                                                                    transform: scale(1.05);
                                                                                }

                                                                                .photo-box {
                                                                                    width: 100%;
                                                                                    height: 500px;
                                                                                    background: #1a1a1a;
                                                                                    border: 2px solid #2d5f3f;
                                                                                    overflow: hidden;
                                                                                    transition: border-color 0.3s ease;
                                                                                }

                                                                                .photo-frame:hover .photo-box {
                                                                                    border-color: #3d8f5f;
                                                                                }

                                                                                .photo-box img {
                                                                                    width: 100%;
                                                                                    height: 100%;
                                                                                    object-fit: cover;
                                                                                    transition: opacity 0.3s ease;
                                                                                }

                                                                                .photo-frame:hover .photo-box img {
                                                                                    opacity: 0.9;
                                                                                }

                                                                                .photo-text {
                                                                                    text-align: center;
                                                                                    margin-top: 20px;
                                                                                    color: #2d5f3f;
                                                                                    font-size: 18px;
                                                                                    font-weight: 100;
                                                                                    letter-spacing: 1px;
                                                                                    transition: color 0.3s ease;
                                                                                }

                                                                                .photo-frame:hover .photo-text {
                                                                                    color: #3d8f5f;
                                                                                }

                                                                                @media (max-width: 768px) {
                                                                                    .container {
                                                                                        grid-template-columns: 1fr;
                                                                                        gap: 50px;
                                                                                        padding: 0 20px;
                                                                                    }

                                                                                    .photo-box {
                                                                                        height: 350px;
                                                                                    }
                                                                                }

                                                                                .containero {
                                                                                    max-width: 1200px;
                                                                                    margin: 0 auto;
                                                                                }

                                                                                h1 {
                                                                                    color: rgb(0, 0, 0);
                                                                                    margin-bottom: 50px;
                                                                                    font-size: 2.5em;
                                                                                }


                                                                                .gallery {
                                                                                    display: flex;
                                                                                    gap: 30px;
                                                                                    justify-content: center;
                                                                                    flex-wrap: wrap;
                                                                                }

                                                                                .photo-card {
                                                                                    background: white;
                                                                                    overflow: hidden;
                                                                                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                                                    width: 300px;
                                                                                }

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

                                                                                .photo-containero {
                                                                                    width: 100%;
                                                                                    height: 250px;
                                                                                    display: flex;
                                                                                    align-items: center;
                                                                                    justify-content: center;
                                                                                    color: white;
                                                                                    font-size: 1.2em;
                                                                                    font-weight: bold;
                                                                                }

                                                                                .photo-containero img {
                                                                                    width: 100%;
                                                                                    height: 100%;
                                                                                    object-fit: cover;
                                                                                }

                                                                                .photo-text {
                                                                                    padding: 25px;
                                                                                    text-align: center;
                                                                                }

                                                                                .photo-text h3 {
                                                                                    color: #333;
                                                                                    margin-bottom: 10px;
                                                                                    font-size: 20px;
                                                                                }

                                                                                .photo-text p {
                                                                                    color: #666;
                                                                                    line-height: 1.6;
                                                                                }

                                                                                @media (max-width: 768px) {
                                                                                    .gallery {
                                                                                        flex-direction: column;
                                                                                        align-items: center;
                                                                                    }
                                                                                }

                                                                                @media (max-width: 768px) {
                                                                                    #row {
                                                                                        align-items: center;
                                                                                        align-content: center;
                                                                                        justify-content: center;
                                                                                    }

                                                                                    .container {
                                                                                        align-items: center;
                                                                                        align-content: center;
                                                                                        justify-content: center;
                                                                                    }
                                                                                }

                                                                                .containeri {
                                                                                    max-width: 900px;
                                                                                    margin: 0 auto;
                                                                                    background: white;
                                                                                    border-radius: 8px;
                                                                                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                                                                                    overflow: hidden;
                                                                                }

                                                                                table {
                                                                                    width: 100%;
                                                                                    border-collapse: collapse;
                                                                                }

                                                                                thead {
                                                                                    background: #2c3e50;
                                                                                }

                                                                                th {
                                                                                    padding: 16px;
                                                                                    text-align: left;
                                                                                    color: white;
                                                                                    font-weight: 500;
                                                                                    font-size: 0.95em;
                                                                                }

                                                                                tbody tr {
                                                                                    border-bottom: 1px solid #e9ecef;
                                                                                }

                                                                                tbody tr:hover {
                                                                                    background-color: #f8f9fa;
                                                                                }

                                                                                td {
                                                                                    padding: 16px;
                                                                                    color: #495057;
                                                                                }

                                                                                @media (max-width: 768px) {

                                                                                    th,
                                                                                    td {
                                                                                        padding: 12px;
                                                                                        font-size: 0.9em;
                                                                                    }
                                                                                }

                                                                                .rowa {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    font-size: 14px;
                                                                                    line-height: 1.42857143;
                                                                                    color: #333;
                                                                                    font-weight: 400;
                                                                                    font-family: "proxima-nova", sans-serif !important;
                                                                                    box-sizing: border-box;
                                                                                    margin-right: -15px;
                                                                                    margin-left: -15px;
                                                                                }

                                                                                .column col-md-6 col-sm-6 col-xs-6 {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    font-size: 14px;
                                                                                    line-height: 1.42857143;
                                                                                    color: #333;
                                                                                    font-weight: 400;
                                                                                    font-family: "proxima-nova", sans-serif !important;
                                                                                    box-sizing: border-box;
                                                                                    position: relative;
                                                                                    min-height: 1px;
                                                                                    padding-right: 15px;
                                                                                    padding-left: 15px;
                                                                                    float: left;
                                                                                    width: 50%;
                                                                                }

                                                                                .content-writing-area {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    line-height: 1.42857143;
                                                                                    font-weight: 400;
                                                                                    font-family: "proxima-nova", sans-serif !important;
                                                                                    box-sizing: border-box;
                                                                                    position: relative;
                                                                                    width: 100%;
                                                                                    color: rgba(0, 0, 0, 0.7);
                                                                                    font-size: 14px;
                                                                                }

                                                                                .mb-3 {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    box-sizing: border-box;
                                                                                    font-family: inherit;
                                                                                    font-weight: bold;
                                                                                }

                                                                                .mb-0 {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    box-sizing: border-box;
                                                                                    font-family: inherit;
                                                                                    line-height: 1.1;
                                                                                    font-size: 14px;
                                                                                    font-weight: bold;
                                                                                    color: #084823;
                                                                                    margin: 5px 0px 10px 0px;
                                                                                }

                                                                                .column col-md-3 col-sm-3 col-xs-3 {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    font-size: 14px;
                                                                                    line-height: 1.42857143;
                                                                                    color: #333;
                                                                                    font-weight: 400;
                                                                                    font-family: "proxima-nova", sans-serif !important;
                                                                                    box-sizing: border-box;
                                                                                    position: relative;
                                                                                    min-height: 1px;
                                                                                    padding-right: 15px;
                                                                                    padding-left: 15px;
                                                                                    float: left;
                                                                                    width: 25%;
                                                                                }

                                                                                .column col-md-3 col-sm-3 col-xs-3 {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    font-size: 14px;
                                                                                    line-height: 1.42857143;
                                                                                    color: #333;
                                                                                    font-weight: 400;
                                                                                    font-family: "proxima-nova", sans-serif !important;
                                                                                    box-sizing: border-box;
                                                                                    position: relative;
                                                                                    min-height: 1px;
                                                                                    padding-right: 15px;
                                                                                    padding-left: 15px;
                                                                                    float: left;
                                                                                    width: 25%;
                                                                                }

                                                                                .content-writing-areas {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    line-height: 1.42857143;
                                                                                    font-weight: 400;
                                                                                    font-family: "proxima-nova", sans-serif !important;
                                                                                    box-sizing: border-box;
                                                                                    position: relative;
                                                                                    width: 100%;
                                                                                    color: rgba(0, 0, 0, 0.7);
                                                                                    font-size: 14px;
                                                                                    text-align: right;
                                                                                }

                                                                                .content-writing-areas h3 {
                                                                                    -webkit-text-size-adjust: 100%;
                                                                                    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                                                                    text-align: right;
                                                                                    box-sizing: border-box;
                                                                                    font-family: inherit;
                                                                                    line-height: 1.1;
                                                                                    font-size: 14px;
                                                                                    font-weight: bold;
                                                                                    color: #084823;
                                                                                    margin: 5px 0px 10px 0px;
                                                                                }