/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #e6f0ff; /* Bleu clair */
    color: #333;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    max-width: 120px;
}

h1 {
    font-size: 2.5rem;
    margin: 0.5rem;
    color: #323e95;
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
}

nav a {
    margin: 0 1rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #323e95;
}

.language-switcher img {
    width: 30px;
    height: 20px;
    margin: 0 5px;
    transition: transform 0.2s;
}

.language-switcher img:hover {
    transform: scale(1.1);
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 4rem 0;
    background-color: #ffffff;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#hero h2 {
    font-size: 2.5rem;
    color: #323e95;
}

#hero p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #323e95;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #FFD700;
    color: #323e95;
}
/* Section Solutions */
#solutions-overview {
    padding: 4rem 0;
    text-align: center;
    background-color: #f4f4f4;
}

#solutions-overview h2 {
    font-size: 2rem;
    color: #323e95;
    margin-bottom: 1.5rem;
}

#solutions-overview p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.solutions-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    display: block;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 1rem);
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item h3 {
    font-size: 1.3rem;
    color: #323e95;
    margin-bottom: 0.5rem;
}

.solution-item p {
    font-size: 1rem;
    color: #555;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .solution-item {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .solution-item {
        width: 100%;
    }
}

/* Services Section 
#services-overview {
    padding: 4rem 0;
    text-align: center;
}

#services-overview h2 {
    font-size: 2rem;
    color: #323e95;
    margin-bottom: 1.5rem;
}

.services-preview {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    display: block;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(100% / 3 - 10px); /* Ajustez la largeur selon le nombre de colonnes *//*
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 5px;
}

.service-item h3 {
    font-size: 1.2rem;
    color: #323e95;
}

.service-item p {
    font-size: 0.9rem;
    color: #555;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #323e95;
}*/

/* Testimonials Section */
#testimonials-overview {
    padding: 4rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

#testimonials-overview h2 {
    font-size: 2rem;
    color: #323e95;
    margin-bottom: 1.5rem;
}

.testimonials-preview {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.testimonial-item blockquote {
    font-style: italic;
    color: #555;
}

.testimonial-item cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #323e95;
}

/* Certifications Section */
#certifications {
    padding: 4rem 0;
    text-align: center;
}

#certifications h2 {
    font-size: 2rem;
    color: #323e95;
    margin-bottom: 1.5rem;
}

.certifications-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.certification-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    font-weight: bold;
    color: #323e95;
}

/* Cookie Banner (RGPD Compliance) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #323e95;
    color: white;
    padding: 1rem;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.cookie-banner a {
    color: #FFD700;
    text-decoration: underline;
}

.cookie-banner .btn {
    margin: 0 10px;
    background-color: #FFD700;
    color: #323e95;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-banner .btn:hover {
    background-color: #fff;
    color: #323e95;
}

/* Footer */
footer {
    background-color: #e6f0ff;
    color: #333;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}
/* Microservices Section */
#microservices {
    padding: 4rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

#microservices h2 {
    font-size: 2rem;
    color: #323e95;
    margin-bottom: 1.5rem;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.microservice-item {
    display: block;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 25%; /* Chaque microservice prend 25% de la largeur */
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 5px;
}

.microservice-item h3 {
    font-size: 1.2rem;
    color: #323e95;
}

.microservice-item p {
    font-size: 0.9rem;
    color: #555;
}

.microservice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.carousel-controls button {
    background-color: #323e95;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 0.5rem 1rem;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.carousel-controls button:hover {
    background-color: #FFD700;
    color: #323e95;
}
/* Styles pour la Politique de Cookies */

#cookie-policy {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
}

#cookie-policy h1 {
    font-size: 2rem;
    color: #323e95;
    text-align: center;
    margin-bottom: 1.5rem;
}

#cookie-policy h2 {
    font-size: 1.5rem;
    color: #323e95;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#cookie-policy h3 {
    font-size: 1.2rem;
    color: #555;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#cookie-policy p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

#cookie-policy ul {
    list-style-type: disc;
    margin: 1rem 0 1rem 2rem;
    padding-left: 0;
}

#cookie-policy ul li {
    margin-bottom: 0.5rem;
}

#cookie-policy a {
    color: #323e95;
    text-decoration: underline;
}

#cookie-policy a:hover {
    color: #555;
}

@media (max-width: 768px) {
    #cookie-policy {
        padding: 1rem;
    }

    #cookie-policy h1 {
        font-size: 1.8rem;
    }

    #cookie-policy h2 {
        font-size: 1.3rem;
    }

    #cookie-policy h3 {
        font-size: 1.1rem;
    }

    #cookie-policy p,
    #cookie-policy ul li {
        font-size: 0.9rem;
    }
}
/* Styles pour la page de contact */

#contact {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-form,
.contact-info {
    flex: 1 1 300px;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 0.5rem 0 0.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form .btn {
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #4a5bb5;
}

.contact-info h2, .contact-info h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: #323e95;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}
/* Styles for the Solutions Page */

#solutions {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

#solutions h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.solutions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.solution-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-item h2 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.solution-item p {
    color: #666;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.solution-item:active {
    transform: translateY(0);
}
/* Styles for the Cloud Computing Page */

#cloud-computing {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#cloud-computing h1,
#cloud-computing h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#cloud-computing p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.cloud-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cloud-offer-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cloud-offer-item h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.cloud-offer-item p {
    color: #666;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}

/* Styles pour la page de Cybersécurité */

#cybersecurity {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#cybersecurity h1,
#cybersecurity h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#cybersecurity p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.cybersecurity-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cyber-offer-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cyber-offer-item h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.cyber-offer-item p {
    color: #666;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}
/* Styles pour la page DevOps */

#devops {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#devops h1,
#devops h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#devops p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.devops-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}

#data-analysis {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#data-analysis h1,
#data-analysis h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#data-analysis p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.data-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}
/* Styles pour la page Intelligence Artificielle */

#ai {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#ai h1,
#ai h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#ai p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.ai-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}

/* Styles pour la page Infrastructure Réseau */

#network {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#network h1,
#network h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#network p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.network-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #323e95;
    margin-bottom: 0.8rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}
/* Styles for the About Us page */

#about-us {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

#about-us h1,
#about-us h2 {
    color: #323e95;
    margin-bottom: 1rem;
}

#about-us p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

#about-us ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

#about-us ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: #323e95;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4a5bb5;
}
#under-construction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: #f9f9f9;
    color: #323e95;
    font-family: Arial, sans-serif;
}

#under-construction .content {
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-radius: 10px;
}

#under-construction h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #323e95;
}

#under-construction p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

#under-construction img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

#under-construction .btn {
    display: inline-block;
    text-decoration: none;
    background-color: #323e95;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#under-construction .btn:hover {
    background-color: #4a5bb5;
}

#micro-saas {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    color: #323e95;
}

#micro-saas h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #323e95;
}

#micro-saas p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.micro-saas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.micro-saas-item {
    background-color: #ffffff;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #323e95;
}

.micro-saas-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.micro-saas-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.micro-saas-item p {
    font-size: 1rem;
    color: #555;
}