.breadcrumb-section {
 padding-top: 100px;
}

.breadcrumb-text {
	text-align: center;
}

.breadcrumb-text h2 {
	font-size: 48px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 25px;
}

.breadcrumb-text h4{
    margin-top: 15px;
    color: white;
}

.breadcrumb-text .breadcrumb-controls a {
	font-size: 16px;
	color: #ffffff;
	margin-right: 15px;
	position: relative;
}

.breadcrumb-text .breadcrumb-controls a:after {
	position: absolute;
	right: -13px;
	top: -2px;
	content: "";
	font-family: "FontAwesome";
	font-size: 16px;
	color: #ffffff;
}

.breadcrumb-text .breadcrumb-controls a i {
	margin-right: 2px;
}

.breadcrumb-text .breadcrumb-controls span {
	font-size: 16px;
	color: #ffffff;
}

.text-description h2{
    text-align: center;
    font-weight: 800;
    margin-top: 15px;
    font-size: 40pt;
}

.text-description p{
    text-align: center;
    text-align: justify;
    margin: 15px;
    color: black;
    font-size: 12pt;
    padding: 30px;
}

.icon-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 20px;
}

.icon-box {
  flex: 1 1 220px;
  max-width: 23%;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box i {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 15px;
}

.icon-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: black;
  font-weight: 500;
}

.icon-box p {
  font-size: 0.95rem;
  color: black;
}

/* Responsive : empile les blocs sur petits écrans */
@media (max-width: 768px) {
  .icon-box {
    max-width: 100%;
  }

  .icon-section {
    flex-direction: column;
    align-items: center;
  }
}



.section-presentation{
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.video-container,
.content-container {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 10px;
}

.content-container h2 {
  font-size: 30pt;
  margin-bottom: 15px;
  color: white;
  font-weight: 500;
}

.content-container p {
  font-size: 11pt;
  margin-bottom: 20px;
  color: white;
  text-align: justify;
}

.content-container .naomi-boutton {
  padding: 12px 24px;
  background-color: white;
  color: black;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 400;
}

.content-container .naomi-boutton:hover {
  background-color: #e15721;
  color: white;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }

  .content-container, .video-container {
    max-width: 100%;
  }
}

.equipement-paviflex h2{
    color: black;
    text-align: center;
    padding-top: 30px;
    font-weight: 700;
}
.card-section {
    padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

/* Carte stylée */
.card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card h3 {
  margin: 16px;
  font-size: 1.3rem;
  color: #333;
  text-align: center;
}

.card p {
  margin: 0 16px 16px;
  color: #555;
  text-align: justify;
  flex-grow: 1;
}

.card-btn {
  display: inline-block;
  margin: 0 16px 16px;
  padding: 10px 15px;
  background-color: #e15721;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s ease;
}

.card-btn:hover {
  background-color: black;
}

/* Small screens (≥ 600px) : 2 cartes */
@media (min-width: 600px) {
  .card-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium & large screens (≥ 900px) : 3 cartes */
@media (min-width: 900px) {
  .card-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

.button-container {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: black;
  color: white;
  text-decoration: none; /* Supprime le soulignement */
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e15721;
}

.multi-step-form {
  max-width: 600px;
  margin: 40px auto;
  background-color: black;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-step h2 {
  text-align: center;
  color: white;
  margin-bottom: 25px;
  font-weight: 800;
}

.form-step p{
    text-align: center;
    color: white;
    font-size: 10pt;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: white;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: #e15721;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background-color 0.3s;
}

button:hover {
  background-color: black;
}

/* Responsive */
@media (max-width: 600px) {
  .multi-step-form {
    margin: 20px;
    padding: 20px;
  }
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.button-group button {
  flex: 1;
}


.cta1-section {
	background-color: #e4381c;
	padding: 38px 0;
}

.cta1-section .cta-text {
	float: left;
}

.cta1-section .cta-text h3 {
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.cta1-section .cta-text p {
	color: #ffffff;
	margin-bottom: 0;
}
 .cta1-title{
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
 }

 .col-lg-12 p{
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 1.4rem;
 }

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.button-container {
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: black;
  color: white;
  text-decoration: none; /* Supprime le soulignement */
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e4381c;
}