/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
  
    background:#ffffff;
}

/* Barre de Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#fff;
    padding: 1rem 6rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    max-width: 80%;
    height: auto;
    max-height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #096666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: cursive;
}

.nav-links a:hover {
    color: #53ad53;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background:#5b821f;
    
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Section Héros */

.hero {
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    font-family: cursive;
    flex: 1;
    padding-right: 0rem;
    margin-left: 95px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #096666;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #096666;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    background: #096666;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #096666;
}

.play-store-link {
    display: inline-flex;
    align-items: center;
    background: #096666;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.play-store-link:hover {
    background: #31971f;
}

.play-store-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 50%;
}

.image-container {
    display: flex;
   
    align-items: center; /* Alignement vertical des images */
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    width: 90%; /* Largeur de chaque image */
}

/* Section À Propos */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background: #fff;
    color: #096666;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    margin-right: 2rem;
    text-align: left;
    
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-video {
    flex: 1;
    text-align: center;
    opacity: 0; /* Initialement invisible */
    animation: fadeInRight 1s ease-in-out forwards;
}

.about-video img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animation pour la vidéo */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design pour la section À Propos */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .about-video {
        width: 100%;
    }
}

/* Sections communes */
.mission, .cta, .services-page {
    padding: 1rem 2rem;
    text-align: center;
}

.mission {
    background: white;
}

.cta {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: white;
}

.cta .btn {
    background: #FFC107;
    color: #333;
}

.cta .btn:hover {
    background: #FFA000;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #f2ffef;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-illustration {
        margin-top: 2rem;
    }
}
/* Section Domaines */
.domains {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.domains h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #096666;
}

.domain-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.domain-cards .card {
  
    margin: 2rem;
    margin-left: 92px; /* Ajoutez cette ligne */
    width: 300px;
}

.domain-cards .card h3 {
    font-size: 1.5rem;
    margin-left: 5px;
    color: #096666;
}

.domain-cards .card p {
    font-size: 1rem;
    color: #096666;
}
.domain-header {
    text-align: center;
    margin-bottom: 1rem;
}

.domain-header img {
    max-width: 100%;
    height: auto;


}

/* Section Application */
.application {
    padding: 2rem 0;
    background-color: #096666;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .col-md-6 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  @media (min-width: 768px) {
    .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  .app-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 3000px;
    object-fit: contain;
    margin: 0 auto;
  }
  
  .app-info {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    
  }
  
  .app-info h2 {
    color: #096666;
    margin-bottom: 1rem;
  }
  
  .app-info p {
    color: #096666;
    margin-bottom: 2rem;
  }
  

  /* Styles spécifiques pour chaque conteneur */
  .container-1 {
    margin-bottom: 4rem;
  }
  
  .container-2 {
    background-color: #096666; /* Arrière-plan légèrement différent pour le deuxième conteneur */
  }
  
  @media (max-width: 768px) {
    .app-image {
      max-width: 100%;
      max-height: 250px;
    }
  }
  .app-image-2 {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 3000px;
    object-fit: contain;
    margin: 0 auto;
  }

  
  @media (max-width: 768px) {
    .app-image-2 {
        max-width: 100%;
        max-height: 250px;
    }
  }
  .container-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    
    font-weight: bold;
    font-size: 2.5rem;
    
  }
  
  @media (max-width: 768px) {
    .container-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }


.domain-hea {
    text-align: center;
    margin-bottom: 1rem;
}

.domain-hea img {
    max-width: 89%;
    height: auto;
    margin-right: px;
}
/* Conteneur des slides */
.slides-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slides */
.slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

/* Boutons de navigation */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color:#096666;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 4px 8px #096666;
}

.slide-nav.prev {
    left: 10px;
}

.slide-nav.next {
    right: 10px;
}

/* Effet d'animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Conteneur des instructions */
.instructions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espace entre les boîtes */
    justify-content: space-between;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #fff;
 
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.instruction-box {
    border: 2px solid    #fff; /* Bordure verte */
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;  /* Fond vert clair */
    box-shadow: 0 4px 8px #096666; /* Ombre légère */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.33% - 14px); /* 4 boîtes par ligne avec espace entre elles */
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur */
}

.instruction-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px #096666;
}

.instruction-box h3 {
    color: #096666;
    font-size: 1.2rem; /* Taille de police réduite */
    margin-bottom: 0.75rem;
}



/* Responsive Design pour les écrans plus petits */
@media (max-width: 768px) {
    .instruction-box {
        width: calc(50% - 20px); /* 2 boîtes par ligne sur les écrans mobiles */
    }
}

@media (max-width: 480px) {
    .instruction-box {
        width: 100%; /* 1 boîte par ligne sur les très petits écrans */
    }
}
.instructions-container h3 {
    font-size: 1rem;
    color: #096666;
    margin-bottom: 1rem; /* Ajustez cette valeur pour réduire l'espace */
}

.instructions-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #096666;
    
}
.instructions-container h4 {
    font-size: 2rem;
    color: #096666;
    margin-bottom: 1rem; /* Ajustez cette valeur pour réduire l'espace */
}
.centered-text {
  
    line-height: 1.6; /* Espacement entre les lignes */
    margin-left: 150px;
}
.centered-text1 {
  
    line-height: 1.6; /* Espacement entre les lignes */
    margin-left: 310px;
}

/* Importation de Font Awesome pour les icônes */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.creative-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-slogan {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff; /* Couleur verte pour le slogan */
}

.social-icons {
    margin-bottom: 20px;
    display: flex; /* Utilisation de Flexbox pour aligner les icônes */
    justify-content: center; /* Centrer les icônes horizontalement */
    gap: 15px; /* Espacement entre les icônes */
}

.icon-link {
    color: #ecf0f1;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-link:hover {
    color: #1abc9c;
    transform: translateY(-5px);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1abc9c;
}

.footer-text {
    font-size: 14px;
    color: #bdc3c7;
}




