body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Top bar */
.top-bar {
  background-color: #0d5374;
  color: white;
  font-size: 16px;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons img {
  vertical-align: middle;
  margin-left: 12px;
}

/* Taille personnalisée */
.social-icons img.facebook {
  width: 20px;
  height: 20px;
}

.social-icons img.linkedin {
  width: 26px;
  height: 26px;
}

.social-icons img.instagram {
  width: 23px;
  height: 23px;
}

.social-icons img.whatsapp {
  width: 20px;
  height: 20px;
}


/* Navigation */
.navbar {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar img.logo {
  height: 90px;
}

.navbar nav {
  display: flex;
  gap: 25px;
  font-weight: bold;
}

.navbar nav a {
  text-decoration: none;
  color: #043b55;
}

.cta-button {
  background-color: #d43b3b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  border-radius: 5px;
  padding: 10px 0;
  min-width: 300px;
  flex-direction: column;
}

.dropdown-content a {
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  color: #043b55;
  font-weight: bold;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a:hover {
  background-color: #ffffff;
}

.navbar a,
.dropdown-content a {
  transition: transform 0.2s ease, color 0.2s ease;
}

.navbar a:hover,
.dropdown-content a:hover {
  transform: scale(1.1);
  color: #b95c44;
}




.mySlides {
  display: none;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.slideshow-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}


.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/* Responsive */
@media (max-width: 768px) {
  .hero-overlay {
    top: 20px;
    left: 20px;
    max-width: 90%;
    padding: 20px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/*Fonctionnalités*/
.slider-title {
  text-align: center;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.slider-title h1 {
  font-size: 1.5em;
  font-weight: 600;
  color: #333;
}

/*image-grid*/
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px 0; 
  max-width: 1100px; 
  margin: 40px auto;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);

}
.image-grid img:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-link {
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
  position: relative;
}

.image-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 80%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}

.image-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.section-row {
  display: flex;
  align-items: center; /*  centre verticalement */
  justify-content: space-between;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.section-row.reverse {
  flex-direction: row-reverse; 
}

.section-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.section-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  text-align: center; 
}

.section-text h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.section-text p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-row,
  .section-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .section-text {
    padding-top: 20px;
  }

  .section-image img {
    max-width: 100%;
  }
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; 
  padding: 40px 20px;
}

.custom-card {
  width: 300px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Titre */
.custom-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

/* Paragraphe */
.custom-card p {
  font-size: 12px;
  color: #555;
  margin-bottom: 15px;
}

/* Lien en bas */
.card-link {
  font-size: 14px;
  color: #b95c44;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.card-link:hover {
  color: #c05237;
  text-decoration: underline;
}

.footer-socials {
  background-color: #0d3b4e;
  color: #ccc;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-center-text {
  flex: 1;
  text-align: center;
  font-size: 14px;
}

.footer-social-icons a {
  margin-left: 15px;
  display: inline-block;
  transition: filter 0.3s ease;
}

.footer-social-icons img {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-social-icons a:hover img {
  filter: brightness(0) invert(0.8);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-center-text {
    order: 3;
  }

  .footer-social-icons {
    order: 2;
  }
}

/*QUI SOMMES NOUS ?*/
.grand-titre {
  font-size: 4rem; 
}
.btn {
  background-color: #d43b3b;
  color: white;
  padding: 10px 30px; 
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background-color: #0d5374;
}

.mon-titre {
  color: #0d5374;
  font-size: 22px;
  margin: 30px 0 10px 0;
  font-weight: bold;
  text-align: left;
  font-family: 'Segoe UI', sans-serif;
  margin-left: 40px;
}


.mon-paragraphe {
  background-color: #f8f9fa;          /* fond doux gris clair */
  border-left: 5px solid #0d5374;     /* bordure verticale bleue */
  padding: 20px 25px;
  margin: 20px auto;
  width: 90%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* ombre douce */
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.galerie {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 20px;
  flex-wrap: wrap;
}

.galerie img {
  display: block;
  max-width: 90%;         
  transform: scale(0.85); 
  transition: transform 0.3s ease;
}

.galerie img:hover {
  transform: scale(0.95); 
}


.section-principale {
  text-align: center;
}

.titre-principal {
  font-size: 3em;            
  color: #1a1a1a;            
  margin-top: 50px;
  text-align: center;        
  font-weight: bold;         
  letter-spacing: 1px;      
  text-transform: uppercase; 
}


.image-centree {
  width: 850px;
  height: auto;
  margin-top: 20px;
}
.BTP {
  padding: 20px;
  margin: 30px auto;
  width: 80%;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.BTP ul {
  margin-top: 10px;
  padding-left: 20px;
}

.BTP li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #b95c44;
  font-weight: 500;
}
/*fonctionnalites*/
.grille-images {
  max-width: 1200px;
  margin: auto;
}

.ligne {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.carte {
  background: #fcffff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  flex: 1;
}

.carte img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.carte h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  color: #333;
}

/*contact*/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px;
  background-color: white;
  max-width: 1100px;
  margin: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  padding: 20px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #d43b3b;
  color: rgb(245, 239, 239);
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  border-radius: 50px;
}

.contact-form button:hover {
  background-color: #0d5374;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}
.map-container {
  width: 100%;
  padding: 0;
  margin: 0;
}

/*formation*/
/* Structure principale */
.info-layout {
  display: flex;
  align-items: stretch;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.info-image,
.info-content {
  flex: 1;
  min-width: 300px;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Titres */
.main-title {
  font-size: 26px;
  font-weight: bold;
  color: #0d5374;
}

.subtitle {
  font-size: 20px;
  color: #b95c44;
  margin-top: 20px;
}

.separator {
  border: none;
  height: 4px;
  width: 100px;
  background-color: #0d5374;
  margin: 20px 0;
  border-radius: 2px;
}

/* Bloc formation */
.dakitrack-training {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.dakitrack-training ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.dakitrack-training ul li {
  background: #fff;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #b95c44;
}

.dakitrack-training p {
  font-size: 16px;
  line-height: 1.6;
}

/* Bouton */
.btn {
  background-color: #b95c44;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0d5374;
}

.training-levels {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.level-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  width: 320px;
  padding: 25px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.level-card h3 {
  background-color: #062e43;
  color: white;
  padding: 12px 0;
  margin: -25px -25px 10px -25px;
  font-size: 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}



.level-card h4 {
  font-style: italic;
  color: #000;
  margin-bottom: 15px;
  font-size: 16px;
}

.level-card p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}
.level-card p:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .training-levels {
    flex-direction: column;
    align-items: center;
  }

  .level-card {
    width: 100%;
    max-width: 360px;
  }
}
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.separators {
  border: none;
  height: 2px;
  width: 65px;
  background-color: #262727ab;
  margin: 20px 0;
  border-radius: 2px;
}
.titles-row {
  display: flex;
  justify-content: center;
  gap: 200px; /* Espace entre les colonnes */
  margin: 40px 0;
}

.title-block {
  text-align: center;
}

.title-block h2 {
  margin: 0;
  font-size: 65px;
}

.title-block h4 {
  margin: 10px 0 0;
  font-size: 18px;
  color: #555;
}
.boite-formulaire {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.titre-formulaire {
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}

.formulaire-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 800px;
}

.formulaire-contact input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.formulaire-contact button {
  padding: 12px;
  font-size: 16px;
  background-color: #d43b3b;;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.formulaire-contact button:hover {
  background-color: #0d5374;
}
.about-container {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
}

.about-header h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.about-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.reverse-layout {
  flex-direction: row-reverse;
}

.about-block-image {
  flex: 1 1 45%;
}

.about-block-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-block-content {
  flex: 1 1 50%;
}

.about-title, .about-subtitle {
  font-size: 2rem;
  color: #00588a;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.btn-contact {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00588a;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #0077b6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-block {
    flex-direction: column;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .about-title, .about-subtitle {
    font-size: 1.5rem;
  }
}


.grid-cartes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.carte {
   width: 300px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carte img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.carte:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Titre */
.carte h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

/* Paragraphe */
.carte p {
  font-size: 12px;
  color: #555;
  margin-bottom: 15px;
}

/* Lien en bas */
.carte a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.carte a:hover{
  color: #094568;
  text-decoration: underline;
}

.pagination {
  text-align: center;
}

.pagination button {
  padding: 8px 12px;
  margin: 0 4px;
  border: none;
  background-color: #00588a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.pagination button:hover {
  background-color: #267aaa;
}

.pagination button.active {
  background-color: #333;
}
/* Responsive : 1 carte par ligne sur mobile */
@media (max-width: 768px) {
  .grid-cartes {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-cartes {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Style flèches "Précédent / Suivant" */
.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination button {
  padding: 8px 14px;
  margin: 0 4px;
  border: none;
  background-color: #00588a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 50px;
}

.pagination button:hover {
  background-color: #267aaa;
}

.pagination button.active {
  background-color: #b95c44;
}

.slider-container {
  position: relative;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide-item {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.slide-item img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  animation: zoomFade 4s ease-in-out;
  margin-left: 50px;
}


.slide-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 30px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  border-radius: 8px;
  transition: background-color 0.3s;
  z-index: 10;
}

.slide-button:hover {
  background-color: #b95c44;
}


/* Animation moderne */
@keyframes zoomFade {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*particulier*/
.content-section {
  padding: 40px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.content-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.text-content {
  flex: 1 1 500px;
}

.image-content {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.7;
}

.main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #083358;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.sub-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #a5391e;
  margin-bottom: 25px;
}

.gps-benefits h2,
.gps-benefits h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0d4c91;
  margin-bottom: 15px;
}

.gps-benefits p,
.gps-benefits ul li {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.gps-benefits ul li {
  padding-left: 5px;
  margin-bottom: 10px;
}

.form-image-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  gap: 2rem;
  border-radius: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f4f9ff, #ffffff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Formulaire */
.form-container {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-container h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.form-container p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.form-container label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
  display: block;
}

.form-container input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-container input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.form-container button {
  background-color: #007bff;
  color: white;
  padding: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #0056b3;
}

/* Image */
.image-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Effet de zoom au survol */
.image-container:hover img {
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .form-image-section {
    flex-direction: column;
    padding: 1.5rem;
  }

  .form-container,
  .image-container {
    width: 100%;
    height: auto;
  }

  .image-container {
    margin-top: 1.5rem;
  }
}
.form-container {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-container h2 {
  font-size: 1.9rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.input-group {
  margin-bottom: 1.2rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #222;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #fdfdfd;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.form-container button {
  width: 100%;
  padding: 0.85rem;
  background-color: #b95c44;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.form-container button:hover {
  background-color:  #00588a;
}

/*revendeur*/
.header-title-section {
  width: 100%;
  padding: 0rem 1rem 2rem;
  text-align: center;
}

.header-title {
  font-size: 3rem;
  font-weight: 800;
  color: #021324;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0 auto;
  max-width: 90%;
  line-height: 1.2;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }
}

.editor-section {
  padding: 0;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.editor-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  
}

.editor-image-full {
  flex: 0,1;
  min-width: 300px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  margin-left: 70px;
}

.editor-image-full img {
  width: 100%;
  height: 85%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Texte */
.editor-text {
  flex: 1;
  padding: 3rem;
  background-color: #ffffff;
}

.editor-text h2 {
  font-size: 1,1rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.editor-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.editor-text blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #007bff;
  margin-top: 1.5rem;
}

.editor-button-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.editor-button {
  background-color: #007bff;
  color: white;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.editor-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 91, 187, 0.2);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .editor-content {
    flex-direction: column;
  }

  .editor-image-full {
    order: -1;
    height: 250px;
  }

  .editor-text {
    padding: 2rem 1.5rem;
    text-align: center;
  }
}

.service-features {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex-wrap: wrap;
}

.feature-box {
  display: flex;
  flex: 1 1 30%;
  gap: 1rem;
  min-width: 280px;
  align-items: flex-start;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-text h3 {
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
  color: #000;
  font-weight: 600;
}

.feature-text h3 em {
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 1rem;
  color: #333;
}

.feature-text p {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0 0;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .service-features {
    flex-direction: column;
  }

  .feature-box {
    flex: 1 1 100%;
  }
}


.image-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex-wrap: wrap;
}

.text-content {
  flex: 2;
  min-width: 280px;
}

.text-content h2 {
  font-size: 1,3rem;
  color: #003366;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 0,1rem;
  color: #555;
  line-height: 1.6;
}

.image-content {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.2); /* zoom à 110% au survol */
}

/* Responsive */
@media (max-width: 768px) {
  .image-text-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .text-content, .image-content {
    width: 100%;
  }
}

.image-cont {
  height: 100vh; /* hauteur de la fenêtre */
  display: flex;
  justify-content: center; /* centre horizontal */
  align-items: center;     /* centre vertical */
}

/* Optionnel : ajuster la taille de l'image */
.image-cont img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.titre-text {
  margin-left: 50px;
  margin-right: 50px;
}

.titre-text p {
  color: #555;
  line-height: 1.6;
}

.partnership-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
  margin-left: 50px;
}

.partnership-container {
  max-width: 1000px;
  border-radius: 12px;
}

.left-align {
  margin-left: 0; /* aligné à gauche */
  margin-right: auto;
}

.partnership-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #0d6efd;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}

.block-title {
  font-size: 22px;
  color: #343a40;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
}

.benefits-list,
.method-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.benefits-list li,
.method-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.conclusion {
  font-weight: 500;
  font-size: 16px;
  color: #212529;
}


/*corriger-les-pertes-de-signal-GPS*/
.waze-beacon-section {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.waze-beacon-container {
  max-width: 900px;
  margin: 0 auto;
}

.beacon-image {
  text-align: center;
  margin-bottom: 2rem;
}

.beacon-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.waze-beacon-container h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 1.5rem;
  text-align: center;
}

.waze-beacon-container h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: #0056b3;
}

.waze-beacon-container p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.galileo-section {
  padding: 3rem 1.5rem;
  background-color: #fefefe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.galileo-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.galileo-image {
  text-align: center;
  margin-bottom: 2rem;
}

.galileo-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.galileo-container h2 {
  font-size: 1.9rem;
  color: #003366;
  margin-bottom: 1.5rem;
  text-align: center;
}

.galileo-container h3 {
  font-size: 1.3rem;
  color: #0056b3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.galileo-container p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.galileo-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.galileo-container ul li {
  margin-bottom: 0.6rem;
}

.galileo-container a {
  color: #007bff;
  text-decoration: underline;
}




/*BeiDou*/
.gnss-section {
  padding: 2rem;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.gnss-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.gnss-image {
  text-align: center;
  margin-bottom: 2rem;
}

.gnss-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.gnss-container h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1rem;
  text-align: center;
}

.gnss-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gnss-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.gnss-container li {
  margin-bottom: 0.5rem;
}

/*livreurs*/
/* Licenciements Stuart */
.stuart-section {
  padding: 2rem;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.stuart-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.stuart-image {
  text-align: center;
  margin-bottom: 2rem;
}

.stuart-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.stuart-container h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1rem;
  text-align: center;
}

.stuart-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/*localisation-par-smart*/
/* Géolocalisation Section */
.geo-section {
  padding: 2rem;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.geo-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.geo-title {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1.5rem;
  text-align: center;
}

.geo-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
/*gestion-carburant*/
/* Section gestion de flotte */
.fleet-section {
  padding: 2rem;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.fleet-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.fleet-title {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1.5rem;
  text-align: center;
}

.fleet-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #ce2b2b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  border-radius: 50px; 
}


.btn-btn:hover {
  background-color: #0c4986b7;
}

