/* Styles généraux */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
}

header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b5ed7;
  color: #fff;
  padding: 15px 50px;
  flex-wrap: wrap;
}

header.navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
}

header.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header.navbar nav ul li a:hover {
  color: #ffdd00;
}

.hero {
  /* background: url('images/hero.jpg') no-repeat center center/cover;
  height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-content .btn {
  padding: 12px 30px;
  background-color: #ffdd00;
  color: #0b5ed7;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-content .btn:hover {
  background-color: #ffc700;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0b5ed7;
}

.service {
  margin-bottom: 50px;
}

.service h3 {
  margin-bottom: 10px;
  color: #333;
}

.service p {
  margin-bottom: 20px;
}

/* Images Services */
.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.img-box {
  width: 260px;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.img-box:hover {
  transform: scale(1.20);
}

.img-box img {
  width: 120%;
  height: 180px;
  object-fit: cover;
}

.img-box p {
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}

/* About */
.about p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 1.1em;
}

/* Contact */
.contact form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.contact button.btn {
  padding: 12px;
  background-color: #0b5ed7;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button.btn:hover {
  background-color: #0949a0;
}

/* Footer */
footer {
  background-color: #0b5ed7;
  color: #fff;
  text-align: center;
  padding: 20px
}



/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #f6f6f6;
    color: #333;
    line-height: 1.6;
  }
  

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a4d3c;
    padding: 15px 30px;
    color: white;
  }
  .navbar ul {
    display: flex;
    list-style: none;
  }
  .navbar ul li {
    margin: 0 15px;
  }
  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  .navbar a:hover {
    text-decoration: underline;
  }
  
  
  .hero {
    background: url('') center/cover no-repeat;
    text-align: center;
    color: white;
    background-color: #0a4d3c;
    padding: 100px 20px;
  }
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .btn {
    background: #ffcc00;
    color: #0a4d3c;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  .btn:hover {
    background: #f0b800;
  }
  
  .services {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }
  .services h2 {
    color: #0a4d3c;
    margin-bottom: 30px;
  }
  .service {
    margin-bottom: 50px;
  }
  .service h3 {
    color: #0a4d3c;
    margin-bottom: 10px;
  }
  .service p {
    max-width: 700px;
    margin: 0 auto 20px;
  }
  .images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  .img-box {
    background: #eaeaea;
    height: 150px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-style: italic;
  }
  

  .about {
    background: #f1f1f1;
    padding: 60px 20px;
    text-align: center;
  }
  .about h2 {
    color: #0a4d3c;
    margin-bottom: 20px;
  }
  

 .contact {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
  }
  .contact h2 {
    color: #0a4d3c;
    margin-bottom: 20px;
  }
  form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  input, textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button {
    align-self: center;
  }
 
  footer {
    background: #0a4d3c;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
 
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
    }
    .navbar ul {
      flex-direction: column;
    }
  }
   */