   * {
  box-sizing: border-box;
}

 body {
  width: 100%;
  background: radial-gradient(circle at center, #0f172a 0%, #000 100%);

  margin: 0;
  padding: 0;
  margin: 0;
      font-family: 'Inter', sans-serif;
      color: #f8fafc;
}

    body {
      
    }

    

  
 
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(15, 23, 42, 0.9);
   position: sticky;  
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.nav-links .cta {
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.logo-img {
  height: 50px;
  width: 250px;
  object-fit: cover;
}

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
    }

    .badge {
      background: #1e40af;
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 999px;
      font-size: 0.75rem;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.3;
      max-width: 800px;
    }

    .subtitle {
      color: #cbd5e1;
      font-size: 1.1rem;
      max-width: 700px;
      margin-top: 1.5rem;
    }

    .cta {
      margin-top: 2rem;
    }

    .cta button {
      background: white;
      color: #1e3a8a;
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta button:hover {
      background: #e2e8f0;
    }

    .badges {
      margin-top: 1rem;
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      font-size: 0.9rem;
      color: #94a3b8;
    }

    .badges span::before {
      content: "✔️";
      margin-right: 0.5rem;
    }

    @media (max-width: 640px) {
      h1 {
        font-size: 2rem;
      }
    }
 
   .steps {
    padding: 5rem 2rem;
    text-align: center;
    color: #f1f5f9;

}



    .product-caroussel {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
      text-align: center;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .cta-button {
      background-color: #fff;
      color: #000;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .cta-button:hover {
      background-color: #ddd;
    }


    @media (max-width: 600px) {
      h1 {
        font-size: 1.8rem;
      }

      .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
    }





















  .steps .badge {
    background: #1e40af;
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    color: white;
    margin-bottom: 1.5rem;
  }

  .steps h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
  }

  .step-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    
    margin: 0 auto;
    border: 1;
    
  }

  .step {
    max-width: 280px;
    padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);

    border-radius: 1rem;
    transition: transform 0.3s;
  }

  .step:hover {
    transform: translateY(-5px);
  }

  .circle {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
  }

  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #fff;
  }

  .step p {
    font-size: 0.95rem;
    color: #cbd5e1;
  }

  .steps .cta {
    margin-top: 3rem;
  }

  .steps .cta button {
    background: white;
    color: #1e3a8a;
    padding: 0.9rem 2rem;
    border: none;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
  }

  .steps .cta button:hover {
    background: #e2e8f0;
  }

  @media (max-width: 768px) {
    .step-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  








/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .step-cards {
    flex-direction: column;
    align-items: center;
  }
}





.pricing-section {
  background: #f7f8fa;
 
  text-align: center;
    padding: 60px 20px;
    width: 100%;

   

}
.section-title {
  font-size: 2em;
  margin-bottom: 40px;
  color: #000;
}
#pricing-title{
  color: #000;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  position: relative;
  transition: transform 0.3s;
  color: #000;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card h3 {
  font-size: 1.5em;
}
.pricing-card .desc {
  margin-bottom: 15px;
  color: #666;
}
.price {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
}
.price span {
  font-size: 0.6em;
  color: #888;
}
.features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.features li {
  margin-bottom: 8px;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #e5e5e5;
  color: #000;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
}
.btn.primary {
  background: #0066ff;
  color: #fff;
}
.featured {
  background: #111;
  color: #fff;
  border: 2px solid #007bff;
}
.featured .btn {
  background: #007bff;
  color: #fff;
}
.featured .features li {
  color: #ccc;
}
.featured .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8em;
}
@media (max-width: 1000px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width: 600px) {
  .pricing-card {
    width: 270PX;
    justify-content: center;
   align-self: center;
   font-size: 11px;

   
  
  }
   .pricing-section {
    width: 100%;
    justify-content: center;
   align-self: center;
   padding: 6px 2px;
  }
}

  .testimonial-section {
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
      background-color: #0f172a;
      border-radius: 10px;
      margin-bottom: 9px;

    }

    .testimonial-section h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .testimonial-section p {
      color: #cbd5e1;
      margin-bottom: 40px;
    }

    .testimonials {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .testimonial {
      background-color: #1e293b;
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      width: 100%;
      max-width: 350px;
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .stars {
      color: #facc15;
      margin-bottom: 15px;
    }

    .quote {
      font-style: italic;
      margin-bottom: 30px;
      color: #e2e8f0;
    }

    .user {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .user img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .user-info {
      display: flex;
      flex-direction: column;
    }

    .user-info strong {
      color: #fff;
    }

    .user-info span {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .testimonial-section h2 {
        font-size: 2rem;
      }
       }


.footer{
background:#000;
padding:30px 0px;
font-family: 'Play', sans-serif;
text-align:center;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
}

.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}

.footer .row a:hover{
color:#fff;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}

@media (max-width:720px){
.footer{
text-align:left;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:left;
}
.footer .row a i{
margin:0% 3%;
}
}
.project {
  background-image: url('images/maquette.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 100vh; /* Hauteur par défaut (desktop) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
  position: relative;
}
.project-content{
  display: none;
}
/* Sur mobile, réduire la hauteur */
@media (max-width: 768px) {
.project {
  display: none;
}
  .project-content{
  display: block;
  width: 500px;
}

}


