<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------Style global pour la navbar--------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(217, 234, 253, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo container */
.navbar-logo {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo {
    height: 45px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: brightness(1.1);
}

.navbar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 0 auto;  /* Centre le conteneur des liens */
    flex: 1;         /* Permet au conteneur de prendre tout l'espace disponible */
    padding: 0 20px; /* Ajoute un peu d'espace sur les cÃ´tÃ©s */
}

/* Individual navigation links */
.navbar-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Hover effect for links */
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #2c3e50;
    transition: width 0.3s ease;
}

.navbar-links a:hover::after {
    width: 70%;
}

.navbar-links a:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Scroll effect */
.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(217, 234, 253, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
/* ------------------ Style global pour le carrousel ----------------------- */
.carousel-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: calc((100vh - 70px)*0.56); /* Hauteur de la fenÃªtre moins la navbar */
    overflow: hidden;
    margin-top: 70px;
    background-color: white;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    position: relative;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: white;
    padding: 0;
    color: black;
    min-height: 500px;
    margin: 0 auto;
    max-width: 1400px;
    width: 90%;
    height: calc((100vh - 70px) * 0.56);
}

.slide-text {
    flex: 0.8;
    max-width: 600px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-text h2, .slide-text h1 {
    margin-bottom: 10px;
    color: black;
    font-size: 2.8rem;
    text-align: center;
}

.slide-text p {
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 1.5rem;
    text-align: center;
}

.slide-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #F8FAFC;
    color: black;
    text-decoration: none;
    border: solid 2px;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-weight: bold;
    margin-top: 20px;
    align-self: center;
}

.slide-btn:hover {
    background-color: #D9EAFD;
}

.slide-image {
    flex: 1.2;
    max-width: 60%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: calc(90vh * 0.66);
    object-fit: cover;
    margin-top: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F8FAFC;
    color: black;
    border: solid 2px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background: #D9EAFD;
}

.carousel-btn.prev {
    left: 5%;
}

.carousel-btn.next {
    right: 5%;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #9AA6B2;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: #D9EAFD;
}

/* ------------------ Style global pour contenu principal ----------------------- */
body {
    font-family: 'Raleway', Arial, sans-serif;
    background-color: white;
    padding-top: 70px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}


/* ---------------------- Style pour Produit --------------------------- */
.hero-section {
    background: white;
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D9EAFD;
}

.hero-content p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Infrastructure Grid */
.infrastructure-grid {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    gap: 40px;
}

.infra-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.infra-content {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
}

.infra-text {
    flex: 1;
}

.infra-text h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.infra-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D9EAFD;
}

.infra-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.learn-more {
    display: inline-block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    transform: translateX(10px);
}

.infra-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.hover-scale {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Solutions Section */
.solutions-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3em;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.solutions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

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

.solution-card.featured {
    border: 2px solid #D9EAFD;
    transform: scale(1.05);
}

.solution-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-header {
    background: #f8fafc;
    padding: 25px;
    text-align: center;
    border-bottom: 2px solid #D9EAFD;
    position: relative;
}

.card-header h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.card-tag {
    display: inline-block;
    padding: 5px 15px;
    background: #D9EAFD;
    color: #2c3e50;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.solution-card .card-content {
    flex-grow: 1; /* Prend tout l'espace restant pour pousser le bouton vers le bas */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.card-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.feature-icon {
    font-size: 1.3em;
    min-width: 30px;
}

.feature-text {
    color: #666;
    line-height: 1.4;
}

.feature-text strong {
    color: #2c3e50;
}

.card-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    padding: 15px;
    background: #D9EAFD;
    color: #2c3e50;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.card-cta a {
    text-decoration: none;
    color: inherit;
}


.card-cta:hover {
    background: #2c3e50;
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --------------------------------- Style pour services -------------------------------------------- */

.main-content-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.section-services h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.section-services h1::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.25rem;
    background: #D9EAFD;
    border-radius: 0.25rem;
}

.service.visible {
    opacity: 1;
    transform: translateY(0);
}

.service:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #D9EAFD;
}

.service p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service:hover .service-image {
    transform: scale(1.05);
}

.realisation-item.assistance h2::before {
    background-image: url('../assets/assistance.webp');
}
.realisation-item.virtualisation h2::before {
    background-image: url('../assets/Virtualisation.avif');
}
.realisation-item.migration-cloud h2::before {
    background-image: url('../assets/cloud.webp');
}
.realisation-item.stockage h2::before {
    background-image: url('../assets/nas.jpg');
}
.realisation-item.securite h2::before {
    background-image: url('../assets/sÃ©curitÃ©.jpg');
}

/* Animation d'entrÃ©e */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services .service:nth-child(1) { animation-delay: 0.2s; }
.services .service:nth-child(2) { animation-delay: 0.4s; }
.services .service:nth-child(3) { animation-delay: 0.6s; }
.services .service:nth-child(4) { animation-delay: 0.8s; }
/* ----------------------------------Style pour Nos rÃ©alisations--------------------------------------- */

.main-content-realisations {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.section-realisation h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.section-realisation h1::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.25rem;
    background: #D9EAFD;
    border-radius: 0.25rem;
}

.realisation-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.5s ease;
}

.realisation-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.realisation-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.realisation-item h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #D9EAFD;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.realisation-item h2::before {
    content: '';
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.realisation-item.visio h2::before {
    background-image: url('../assets/visioconf.webp');
}

.realisation-item.caisson h2::before {
    background-image: url('../assets/caisson.webp');
}

.realisation-item.mastering h2::before {
    background-image: url('../assets/mastering-portable.webp');
}

.realisation-item.affichage-dynamique h2::before {
    background-image: url('../assets/mur_samsung.webp');
}

.realisation-item.pont-wifi h2::before {
    background-image: url('../assets/pont-wifi.webp');
}

.realisation-item p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.realisation-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.realisation-item:hover img {
    transform: scale(1.05);
}

.images-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.images-group img {
    height: 300px;
    border-radius: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ----------------------------------Style pour propos--------------------------------------- */
.main-content-propos {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.about-header h1::after {
    content: "";
    width: 100px;
    height: 4px;
    background-color: #d9eafd;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.about-header .subtitle {
    font-size: 1.4em;
    color: #666;
    margin-top: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, #d9eafd 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-card:hover::before {
    opacity: 0.1;
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d9eafd;
}

.about-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #d9eafd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: #2c3e50;
}

.about-card i {
    font-size: 35px;
    color: #2c3e50;
    transition: all 0.4s ease;
}

.about-card:hover i {
    color: #d9eafd;
    transform: rotateY(360deg);
}

.about-card h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.about-card p {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-card:hover p {
    color: #2c3e50;
}


.clients-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
}

.clients-section h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-item {
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    background: white;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.client-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, #d9eafd 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-item:hover::before {
    opacity: 0.3;
}

.client-item::after {
    content: 'â†—';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #2c3e50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-item:hover::after {
    opacity: 1;
}

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

.client-item i {
    font-size: 40px;
    color: #d9eafd;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.client-item:hover i {
    transform: scale(1.2);
    color: #2c3e50;
}

.client-item h3 {
    color: #2c3e50;
    font-size: 1.3em;
}

.team-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-content h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #d9eafd 300%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover::after {
    opacity: 0.1;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: #d9eafd;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-photo i {
    font-size: 50px;
    color: #2c3e50;
    transition: all 0.4s ease;
}

.team-member:hover .member-photo i {
    transform: rotate(360deg);
}

.team-member h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
}

/* Animation d'entrÃ©e */
.about-card, .client-item, .team-member {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DÃ©lais d'animation pour les diffÃ©rentes cartes */
.about-card:nth-child(1) { animation-delay: 0.2s; }
.about-card:nth-child(2) { animation-delay: 0.4s; }
.about-card:nth-child(3) { animation-delay: 0.6s; }



/* ----------------------------------Style pour support--------------------------------------- */
.main-content-support {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    border-radius: 15px;
}

.support-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.support-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #D9EAFD;
}

.support-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: #D9EAFD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 35px;
    color: #2c3e50;
}

.support-card h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.support-card p {
    color: #666;
    margin-bottom: 25px;
}

.btn-download, .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #D9EAFD;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-download:hover, .btn-contact:hover {
    background-color: #2c3e50;
    color: white;
}

.support-features {
    margin: 60px 0;
    text-align: center;
}

.support-features h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: #D9EAFD;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

.support-image-container {
    position: relative;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1.1em;
}


/* ----------------------------------Style pour contact--------------------------------------- */

.page-container-contact {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Prend toute la hauteur de la fenÃªtre */
}

.main-container-contact {
    flex: 1; /* Prend tout l'espace disponible */
    padding: 50px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h1 {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.info-section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-section:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.info-icon {
    font-size: 24px;
    color: #D9EAFD;
    margin-bottom: 15px;
}

.info-section h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.info-section p {
    color: #666;
    font-size: 1.1em;
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2em;
    text-align: center;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    box-sizing: border-box;
}

.enhanced-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #D9EAFD;
    box-shadow: 0 0 0 4px rgba(217, 234, 253, 0.25);
    outline: none;
}


textarea.form-control {
    min-height: 150px;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
    padding-right: 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #D9EAFD;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #2c3e50;
    color: #fff;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ----------------------------------Style pour mentions lÃ©gales--------------------------- */

.mentions-legales-page .main-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.mentions-legales-page .content-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mentions-legales-page .header-section {
    text-align: center;
    margin-bottom: 50px;
}

.mentions-legales-page .title {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.mentions-legales-page .title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #D9EAFD;
}

.mentions-legales-page .subtitle {
    color: #666;
    font-size: 1.2em;
    margin-top: 20px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: #D9EAFD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.section-icon i {
    font-size: 24px;
    color: #2c3e50;
}

.legal-section h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D9EAFD;
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1em;
}

.info-item .value {
    color: #666;
    font-size: 1.1em;
}

.info-item .value a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item .value a:hover {
    color: #D9EAFD;
}

/* Animation d'entrÃ©e */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------ Style pour Footer --------------------------- */
.footer {
    flex-shrink: 0; /* EmpÃªche le footer de rÃ©trÃ©cir */
    background-color: #D9EAFD;
    padding: 30px 20px;
    border-top: 2px solid rgba(44, 62, 80, 0.1);
    width: 100%;
    box-sizing: border-box;
    margin-top: auto; /* Pousse le footer vers le bas */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
}

.footer .footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer .footer-link {
    color: #2c3e50;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer .footer-link:hover {
    background-color: rgba(44, 62, 80, 0.1);
    transform: translateY(-2px);
}

/*------------------------------------Responsive----------------------------------------------*/
/* Mobile First - Styles de base pour petits Ã©crans */

@media screen and (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 10px 20px;
        height: auto;
    }

    .navbar-links {
        display: none; /* Ces liens seront gÃ©rÃ©s par un menu hamburger en JS */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(217, 234, 253, 0.98);
        padding: 20px;
        gap: 20px;
    }

    .logo {
        height: 35px;
    }

    /* Infrastructure Grid */
    .infrastructure-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .infra-content {
        flex-direction: column;
        padding: 20px;
    }

    .infra-text h2 {
        font-size: 1.8em;
    }

    /* Solutions Section */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .section-title {
        font-size: 2em;
    }

    /* Services */
    .service-content {
        padding: 20px;
    }

    .service h2 {
        font-size: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    /* RÃ©alisations */
    .realisation-item img {
        height: 250px;
    }

    .images-group {
        grid-template-columns: 1fr;
    }

    .images-group img {
        height: 200px;
    }

    /* Ã€ propos */
    .about-header h1 {
        font-size: 2.2em;
    }

    .about-grid {
        padding: 0 10px;
        gap: 20px;
    }

    .clients-grid {
        gap: 20px;
        padding: 0 10px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.2em;
    }

    .contact-form-card {
        padding: 20px;
    }
}

/* Tablettes */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .navbar-links {
        gap: 20px;
    }

    .slide-text h2, .slide-text h1 {
        font-size: 2.4rem;
    }

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

    .infrastructure-grid {
        padding: 0 15px;
    }

    .infra-content {
        padding: 30px;
    }

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

/* Grands Ã©crans */
@media screen and (min-width: 1025px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Support pour les trÃ¨s petits Ã©crans */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px;
    }

    .logo {
        height: 30px;
    }

    .slide-text h2, .slide-text h1 {
        font-size: 1.8rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .infra-text h2 {
        font-size: 1.6em;
    }

    .about-card {
        padding: 20px;
    }

    .contact-form-card, .contact-info-card {
        padding: 15px;
    }
}

/* Ajustements pour l'impression */
@media print {
    .navbar, .footer {
        display: none;
    }

    body {
        padding: 0;
        margin: 0;
    }

    .main-content {
        margin: 0;
        padding: 20px;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* Style du bouton hamburger */
.hamburger-menu {
    display: none; /* CachÃ© par dÃ©faut sur desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: #2c3e50;
    transition: transform 0.3s ease-in-out;
}

/* Animation du hamburger */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Styles pour le menu mobile */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .navbar-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(217, 234, 253, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .navbar-links.active {
        display: flex;
        transform: translateX(0);
    }

    .navbar-links a {
        font-size: 1.2rem;
        padding: 15px;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    }

    .navbar-links a:last-child {
        border-bottom: none;
    }
}
/* Ajustements du carousel pour mobile */
@media screen and (max-width: 768px) {
    .carousel-container {
        height: auto;
        min-height: 80vh; /* Hauteur minimale pour assurer la visibilitÃ© */
    }

    .slide {
        height: auto;
    }

    .slide-content {
        flex-direction: column-reverse; /* Image en haut, texte en bas */
        padding: 20px;
        height: auto;
        min-height: auto;
        gap: 20px;
    }

    .slide-text {
        flex: 1;
        max-width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .slide-text h2,
    .slide-text h1 {
        font-size: 1.8rem; /* Taille de titre rÃ©duite */
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .slide-text p {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .slide-image {
        flex: none;
        max-width: 100%;
        height: auto;
    }

    .slide-image img {
        width: 100%;
        height: auto;
        max-height: 40vh; /* Limite la hauteur de l'image */
        object-fit: contain; /* Garde les proportions de l'image */
    }

    /* Ajustement des boutons de navigation */
    .carousel-btn {
        top: auto;
        bottom: 20px;
        transform: none;
        background: rgba(248, 250, 252, 0.8);
        padding: 10px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    /* Ajustement des points de navigation */
    .carousel-dots {
        display: none;
    }
}

/* Ajustements pour les trÃ¨s petits Ã©crans */
@media screen and (max-width: 480px) {
    .slide-text h2,
    .slide-text h1 {
        font-size: 1.5rem;
    }

    .slide-text p {
        font-size: 0.9rem;
    }

    .slide-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Ajustements pour les Ã©crans en mode paysage */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .carousel-container {
        min-height: 100vh;
    }

    .slide-content {
        flex-direction: row; /* Revenir Ã&nbsp; une disposition horizontale */
        align-items: center;
        padding: 10px;
    }

    .slide-image img {
        max-height: 60vh;
    }

    .slide-text {
        margin-top: 0;
    }
}

/* Style pour la section actualitÃ©s */
.news-section {
    max-width: 1200px;
    margin: 60px auto 80px; /* Augmentation de la marge supÃ©rieure pour l'espacement aprÃ¨s le carrousel */
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: none; /* CachÃ© par dÃ©faut */
}

/* Afficher uniquement si is_active est true */
.news-section.active {
    display: block;
}

.news-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.news-text {
    flex: 1;
    padding-right: 20px;
}

.news-section h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D9EAFD;
}

.news-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.news-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 500px;
}

.news-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-section:hover .news-image img {
    transform: scale(1.05);
}

/* Responsive design */
@media screen and (max-width: 1024px) {
    .news-section {
        margin: 40px 20px;
        padding: 30px;
    }

    .news-image {
        max-width: 400px;
    }

    .news-image img {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .news-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .news-text {
        padding-right: 0;
    }

    .news-image {
        max-width: 100%;
    }

    .news-image img {
        height: 250px;
    }

    .news-section h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 480px) {
    .news-section {
        padding: 20px;
        margin: 30px 15px;
    }

    .news-section h2 {
        font-size: 1.6em;
    }

    .news-image img {
        height: 200px;
    }
}

/* Support pour l'impression */
@media print {
    .news-section {
        box-shadow: none;
        margin: 20px 0;
        break-inside: avoid;
    }

    .news-image img {
        max-height: 200px;
    }
}

</pre></body></html>