* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Michroma", sans-serif;
}

/*nav stylling*/
nav {
  background-color: #ffffff;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1vh 10vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav li {
  border: solid 1px #073cbc;
  padding: 10px 20px;
  border-radius: 5vw;
}
nav li:hover,
.active-li {
  background-color: #073cbc;
  .nav-link {
    color: #ffffff;
  }
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
nav .search-bar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* === STYLE NAVIGATION === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  height: 100px;
  width: 125px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #00206e;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

.nav-link.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
}

/* === STYLE DROPDOWN === */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.7em;
  margin-left: 5px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #007bff;
  padding-left: 25px;
}

.dropdown-item.active {
  background-color: #e8f4ff;
  color: #007bff;
  font-weight: 500;
}

/* === BOUTON CONTACT === */
.btn-contact-head {
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  text-decoration: underline 3px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-contact-head:hover {
  background-color: #0056b3;
  color: #fff;
}

/* === MENU BURGER === */
.close-menu {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .burger-menu {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .close-menu {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background-color: #f9f9f9;
    margin-top: 0;
    border-left: 3px solid #007bff;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .btn-contact-head {
    width: 100%;
    text-align: center;
  }
}
.services-navigation {
  background-color: #073cbc;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.marquee-container {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.marquee-container:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.marquee-content a {
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.marquee-content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.btn-contact-head {
  background-color: #ffffff;
  color: #073cbc;
  border: none;
  padding: 5px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
}
.btn-contact-head:hover {
  box-shadow: 0 2px 4px rgba(0, 162, 255, 0.2);
}
.logo-icon {
  width: 100px;
  height: 100px;
  background-image: url("logo.png"); /* Replace with your logo path */
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 10px;
}

/*hero styling*/
.hero {
  background-color: #f5f5f5;
  padding: 4rem 4rem;
  text-align: center;
  height: auto;
  margin: min(100px, 5vw);
  border-radius: 2vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-repeat: no-repeat;
  background:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url(../img/hero-background.png) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.hero-badge {
  width: 250px;
  height: auto;
  margin-top: 20px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 40%;
  text-align: left;
}
.hero-text {
  flex: 1;
  padding-right: 2rem;
}
.hero-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00206e;
}
.hero-container p {
  font-size: 1rem;
  margin: 2rem 0;
  color: #00206e;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  width: 30%;
}
.hero-cta a {
  text-decoration: none;
  font-size: 1rem;
  color: #073cbc;
}
.hero-cta ul {
  list-style: none;
  padding: 0;
}
.hero-cta li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #00206e;
  border: solid 1px #ffffff;
  padding: 5px 20px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  text-align: center;
}

/* Style lors du survol (Hover) */
.hero-cta li:hover {
  background-color: #3b83f641; /* Bleu vif (vous pouvez ajuster selon votre goût) */
  color: #ffffff; /* Texte devient blanc */
  border-color: #3b82f6; /* La bordure change aussi pour un rendu propre */
  transform: scale(1.02); /* Légère accentuation (effet de grossissement) */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Petite ombre pour la profondeur */
}
.hero-cta .btn-cta {
  max-width: none;
}

.btn-cta {
  background-color: #073cbc;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 2vw;
}
/*.btn-cta.yellow {
  background-color: #ff7f00;
}*/

.btn-cta.yellow {
  background-color: #ff7f00;
  color: #ffffff;
  /*border: 2px solid #ff7f00;*/
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  /* Transition fluide pour la couleur du texte */
  transition: color 0.4s ease-in-out;
}

.btn-cta.yellow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 500%;
  background: #ffffff;
  z-index: -1;

  /* POSITION INITIALE : 
     On le tourne de 45° et on le pousse loin en bas à droite avec translate */
  transform: translate(60%, 60%) rotate(45deg);

  /* FLUIDITÉ : 
     On utilise une courbe de Bézier "Out-Quint" pour un effet organique */
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ÉTAT AU SURVOL (Hover) */
.btn-cta.yellow:hover {
  color: #00206e; /* Le texte passe au bleu */
}

.btn-cta.yellow:hover::before {
  /* POSITION FINALE : 
     On ramène le bloc au centre, il recouvre tout le bouton */
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-cta.white {
  background-color: #ffffff;
  color: #073cbc;
}

.btn-cta {
  background-color: #073cbc;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  /* Transition fluide pour la couleur du texte */
  transition: color 0.4s ease-in-out;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 700%; /* Très haut pour couvrir la diagonale lors de la translation */
  background: #ffffff;
  z-index: -1;

  /* POSITION INITIALE : 
     On le tourne de 45° et on le pousse loin en bas à droite avec translate */
  transform: translate(60%, 60%) rotate(45deg);

  /* FLUIDITÉ : 
     On utilise une courbe de Bézier "Out-Quint" pour un effet organique */
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ÉTAT AU SURVOL (Hover) */
.btn-cta:hover {
  color: #00206e; /* Le texte passe au bleu */
}

.btn-cta:hover::before {
  /* POSITION FINALE : 
     On ramène le bloc au centre, il recouvre tout le bouton */
  transform: translate(-50%, -50%) rotate(45deg);
}

.experience {
  margin-top: 20px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #073cbc;
}
.experience-text {
  font-size: 1rem;
  color: #01123b;
  width: 50vw;
  text-align: center;
}
.experience-text h2 {
  font-size: 3rem;
  color: #01123b;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 600;
}
.experience-icons {
  display: flex;
  gap: 10vh;
  margin: 10vh 0px;
  justify-content: center;
  align-items: center;
}
.icon-animated {
  width: 200px;
}
.icon-animated img {
  width: auto;
  height: 60px;
}
.icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 4rem;
  font-weight: bold;
  justify-content: center;
}
.coverd-zone {
  width: 80vw;
  height: 70vh;
  background-color: #e8e8e8;
  padding: 20px 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #073cbc;
  gap: 10vh;
}
.coverd-zone h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.coverd-zone img {
  width: 30vw;
  height: 50vh;
  object-fit: cover;
  border-radius: 3vh;
}
.coverd-zone h4 span {
  font-size: 3rem;
}
.coverd-zone h4 {
  inline-size: none;
  line-height: 1;
}
.client-liste {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  width: 30vw;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
  padding: 20px 10px;
  height: 100%;
  margin-bottom: 90px;
}

.client-liste img {
  width: 100px;
  max-height: 80px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.services {
  margin: 10vh;
  padding: 4rem 8rem;
  background:
    linear-gradient(rgba(1, 18, 59, 0.6), rgba(1, 18, 59, 0.6)),
    url(../img/service-bg1.png) no-repeat center center;
  background-size: cover;

  border-radius: 2vh;
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10vh;
}
.services h2 {
  font-size: 4em;
}

.service-panels {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  padding: 1rem 0;
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-panels::-webkit-scrollbar {
  display: none;
}

.service-panels::-webkit-scrollbar-track {
  display: none;
}

.service-panels::-webkit-scrollbar-thumb {
  display: none;
}

.service-panel {
  background-color: #073cbc;
  padding: 2rem 1rem;
  border-radius: 1rem;
  min-width: 300px;
  width: 300px;
  height: 40vh;
  text-align: center;
  flex-shrink: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-panel:hover {
  background-color: #ff7f00;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-panel h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: white;
}

.service-panel p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f0f0f0;
}
.service-panel img {
  width: auto;
  height: 40px;
  object-fit: contain;
  margin-bottom: 1rem;
  text-align: center;
}

.carousel-btn {
  display: flex !important;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none !important;
  }

  .service-panels {
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  .service-panel {
    min-width: 100%;
    width: 90vw;
    margin: 0 auto;
  }
}

.why {
  margin: 10vh;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-galerie {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin: 5vh 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  padding: 20px;
  border-radius: 1vh;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slide-galerie::-webkit-scrollbar {
  display: none;
}

.slide-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  min-width: 100px;
  width: 100px;
  background-color: #e8e8e8;
  border-radius: 1vh;
  min-height: 80vh;
  color: #01123b00;
  padding: min(2rem, 5vw);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-panel.active {
  min-width: 30vw;
  color: #ffffff;
  background: linear-gradient(rgba(1, 18, 59, 0.4)), #073cbc;
}
.slide-content h4 {
  font-size: 2rem;
  margin: 0;
}
/* Responsive styles for slide-galerie */
@media (max-width: 1024px) {
  .slide-galerie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    overflow: visible;
    flex-wrap: wrap;
    height: auto;
  }

  .slide-panel {
    min-width: 100%;
    width: 100%;
    min-height: 10px;
    max-height: 10px;
    color: #01123b;
  }

  .slide-panel.active {
    min-height: 30vh;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(7, 60, 188, 0.3);
    background: linear-gradient(rgba(1, 18, 59, 0.4)), #073cbc;
    color: #ffffff;
  }

  .slide-galerie::-webkit-scrollbar {
    display: block;
  }
}

@media (max-width: 768px) {
  .slide-galerie {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

#slide-0 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide0.jpg");
  background-size: cover;
  background-position: center;
}
#slide-0:hover,
#slide-0.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide0.jpg");
  background-size: cover;
  background-position: center;
}

#slide-1 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide1.jpg");
  background-size: cover;
  background-position: center;
}
#slide-1:hover,
#slide-1.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide1.jpg");
  background-size: cover;
  background-position: center;
}
#slide-2 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide2.jpg");
  background-size: cover;
  background-position: center;
}
#slide-2:hover,
#slide-2.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide2.jpg");
  background-size: cover;
  background-position: center;
}
#slide-3 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide3.jpg");
  background-size: cover;
  background-position: center;
}
#slide-3:hover,
#slide-3.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide3.jpg");
  background-size: cover;
  background-position: center;
}
#slide-4 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide4.jpg");
  background-size: cover;
  background-position: center;
}
#slide-4:hover,
#slide-4.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide4.jpg");
  background-size: cover;
  background-position: center;
}
#slide-5 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide5.jpg");
  background-size: cover;
  background-position: center;
}
#slide-5:hover,
#slide-5.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide5.jpg");
  background-size: cover;
  background-position: center;
}
#slide-6 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide6.jpg");
  background-size: cover;
  background-position: center;
}
#slide-6:hover,
#slide-6.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide6.jpg");
  background-size: cover;
  background-position: center;
}
#slide-7 {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(1, 18, 59, 0.61)
    ),
    url("../img/slide7.jpg");
  background-size: cover;
  background-position: center;
}
#slide-7:hover,
#slide-7.active {
  background-image:
    linear-gradient(rgba(1, 18, 59, 0.4)), url("../img/slide7.jpg");
  background-size: cover;
  background-position: center;
}

.why h2 span {
  font-size: 4rem;
  color: #073cbc;
}
.why h2 {
  font-size: 1rem;
  color: #073cbc;
  text-align: left;
}
.why .cta-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  margin: 5vh;
}
.why .cta-services h3 {
  font-size: 2rem;
  color: #073cbc;
}

.why .cta-services img {
  width: 50px;
  height: 50px;
}
.slide-galerie .slide img {
  width: 200px;
  height: auto;
}
.audit-cta {
  padding: 4rem 8rem;
  color: white;
  display: flex;
  flex-direction: column;
  text-align: baseline;
  justify-content: center;
  gap: 4vh;
  background: url(../img/icons/Gradient1.png);
  background-size: contain;
  background-color: #ff9100;
}
.audit-cta h2 {
  font-size: 4rem;
  color: #ffffff;
  width: 50vw;
  font-weight: 500;
  line-height: 1;
}
.audit-cta p {
  width: 50vw;
}
.audit-text {
  display: flex;

  gap: 10vh;
}
.audit-btns {
  display: flex;
  gap: 10vh;
  width: 100%;
  align-items: center;
}
.audit-cta .text {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-self: center;
  font-weight: bold;
  color: #ff8000;
  background-image: url(../img/icons/comment.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  height: 300px;
  width: 400px;
}
.icon-links {
  display: flex;
  gap: 2rem;
  padding: 10px 0;
}

.actions {
  margin: 10vh;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  align-items: start;
  padding: 4rem 4rem;

  gap: 5vh;
}
.actions h2 {
  font-size: 4rem;
  color: #00206e;
  font-weight: 500;
}
.actions p {
  font-size: 1.5rem;
  color: #00206e;
}
.bento {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 15vh 15vh 15vh;

  grid-template-areas:
    "box-1 box-1 box-1 box-2"
    "box-1 box-1 box-1 box-3"
    "box-1 box-1 box-1 box-4";
  gap: 2vh;
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1vh;
}
.testimonials {
  margin: 10vh 5vw;
  padding: 4rem 5vw;
  color: white;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  gap: 5vh;
  background: url(../img/icons/Gradientblue.png) no-repeat center center;
  background-size: cover;
  background-color: #007bff;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #ff7f00 rgba(255, 255, 255, 0.25);
}

.testimonials::before,
.testimonials::after {
  content: "";
  flex: 0 0 0.75rem;
}

.testimonials::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.testimonials::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.testimonials::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ff7f00, #ffd166);
  border-radius: 999px;
}

.testimonials::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.testimonials-text {
  font-size: 1rem;
  color: #ffffff;
  width: 30vw;
  text-align: start;
  scroll-snap-align: start;
}
.testimonials-text h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 500;
}
.testimonial h4 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 600;
  color: #007bff;
}
.testimonial {
  width: max(25vw, 350px);
  min-width: max(25vw, 350px);
  text-align: left;
  background-color: #ffffff;
  border-radius: 2vh;
  min-height: 50vh;
  color: black;
  padding: 20px 40px;
  scroll-snap-align: start;
}
.testimonial img {
  width: auto;
  height: 20px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.testimonial p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 20px;
}

.safety-tips {
  margin: 10vh 0;
  padding: 4rem;
  color: #00206e;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.safety-tips h2 {
  font-size: 3rem;
  color: #00206e;

  font-weight: 500;
}
.safety-tips p {
  font-size: 1.5rem;
  color: #00206e;
}
.safety-tips .slides {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  margin: 10vh 0;
  flex-wrap: wrap;
  justify-content: center;
}
.safety-tips .slide {
  width: 340px;
  height: 35vh;
  background-color: #e8e8e8;
  border-radius: 2vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

#article-1 {
  background-image:
    linear-gradient(rgb(0, 0, 0, 0), rgba(0, 9, 31)),
    url("../img/articles/article1.png");
  background-size: cover;
  background-position: center;
}
#article-2 {
  background-image:
    linear-gradient(rgb(0, 0, 0, 0), rgba(0, 9, 31)),
    url("../img/articles/article2.png");
  background-size: cover;
  background-position: center;
}
#article-3 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgb(0, 9, 31)),
    url("../img/articles/article3.png");
  background-size: cover;
  background-position: center;
}
.slide h4 {
  font-size: 1.25rem;
  color: white;
  margin: 0;
}
.safety-tips .slide h4:hover {
  text-decoration: underline;
  cursor: pointer;
}
footer {
  background-color: #01123b;
  color: white;

  display: flex;
  flex-direction: column;

  align-items: center;
  width: 100%;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
footer .compagny-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 2rem 4rem;
  justify-content: space-around;
  width: 100%;
}
.copyright {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #01123b;
  background-color: #ffffff;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}
.menu ul,
.compagny-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu a {
  color: white;
  text-decoration: none;
}
.menu a:hover {
  text-decoration: underline;
}
.adresse {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}
.adresse .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.adresse p {
  font-size: 0.875rem;
  color: white;
  width: 200px;
}

/* Services Page Styling */
.services-section {
  margin: max(5vw, 20px);
  padding: 4rem max(5vw, 20px);
  background-color: #ffffff;
  border-radius: 5vh;
  color: #073cbc;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
.services-section h2 {
  font-size: 4em;
}

.services-scroll-shell {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services-scroll-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #073cbc;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 18px rgba(7, 60, 188, 0.25);
}

.services-scroll-left {
  left: 0.35rem;
}

.services-scroll-right {
  right: 0.35rem;
}

.services-scroll-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.services-grid {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 5vh;
  justify-content: space-around;
  align-items: space-around;
  width: 100%;
}
.services-grid .panel {
  text-align: left;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.services-grid .panel h3 {
  height: 25vh;
  width: max(20vw, 200px);
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #ffffff;
  background-color: #073cbc;
  padding: 1rem;
  border-radius: 2vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.services-grid .panel .panel-img {
  font-size: 1rem;
  color: #ffffff;
  width: max(20vw, 200px);
  height: max(10vh, 100px);
  margin-bottom: 1rem;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.services-grid .panel img {
  object-fit: contain;
  padding: 20px;
  height: auto;
}
.services-grid .panel a {
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  margin-top: 1rem;
  transition: all 0.4s ease-in-out;
}

.services-grid .panel h3:hover {
  background-color: #ffffff00;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(7, 60, 188, 0.1);
  a {
    color: #073cbc;
  }
}

.banner {
  width: 100%;
  padding: 5vh 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner img {
  width: 80%;
  height: auto;
  object-fit: contain;
}
.form-section {
  margin: 10vh 0;
  padding: 4rem 8rem;
  background-color: #e8e8e8;
  border-radius: 5vh;
  color: #073cbc;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  gap: 5vh;
}
.form-section .form-container {
  width: 50%;
  padding: 20px 0;
}
.form-section .form-container .cta {
  margin-bottom: 2rem;
}
.form-section .form-container .cta h2 {
  font-size: max(3.5vw, 2rem);
  color: #ffffff;
}
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-feedback {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: left;
  font-weight: 600;
}
.form-feedback.success {
  background: #e9f8ee;
  border: 1px solid #34a853;
  color: #186631;
}
.form-feedback.error {
  background: #fdecec;
  border: 1px solid #dc3545;
  color: #8a1f28;
}
.form-section form label {
  font-size: 1rem;
  text-align: left;
}
.form-section form input,
.form-section form select,
.form-section form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.form-section form button {
  width: 100%;
  align-self: center;
}
.badge-cta {
  padding: 0 1rem;
  border-radius: 2vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  height: 100vh;
}
.badge-cta .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  width: 25vw;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgb(0, 9, 31)),
    url("../img/gadge-cta.png");
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 1vh;
}
.badge-cta .cta .logo {
  width: auto;
  height: 20vh;
}
.badge-cta .cta h4 {
  font-size: max(2.5vw, 1.8rem);
  text-align: center;
  font-weight: 400;
  padding: 0 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.badge-cta .cta-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  width: 25vw;
  background: linear-gradient(#073cbc, #007bff);
  padding: 2rem;
  border-radius: 1vh;
}
.badge-cta .cta-2 h4 {
  font-size: 2rem;
  text-align: left;
  font-weight: 400;
  line-height: 1.2;
}
.badge-cta .cta-2 p {
  font-size: 1rem;
  text-align: left;
  line-height: 1.5;
  font-weight: 300;
}
.badge-cta .cta-2 .btn-cta {
  background-color: #ffffff;
  color: #073cbc;
  padding: 2rem 1rem;
  border-radius: 1vh;
  font-size: 1.5rem;
  font-weight: 400;
  width: 100%;
}

.cta-section {
  margin: 10vh 0;
  padding: 4rem 8rem;
  background: url(../img/banner-security-call.png);
  background-size: cover;

  color: white;
  background-color: #000;
  display: flex;
  flex-direction: row;
  text-align: left;
  justify-content: space-between;
  align-items: center;
}
.cta-section h3 {
  font-size: 2.5rem;
  color: #ffffff;
  width: 50vw;
  font-weight: 500;
  line-height: 1;
}
.cta-section h3 span {
  font-size: 3rem;
  color: #ff4d00;
}
.cta-section p {
  width: 40vw;
  font-size: 1rem;
}
.cta-section .text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cta-section .btn-cta {
  background-color: #004bff;
  color: #ffffff;
  padding: 1.5rem 3rem;
  border-radius: 1vh;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.cta-section .btn-cta:hover {
  background-color: #ff7f00;
}

/* styling contact page*/

.contact-hero {
  padding: 4rem 4rem;
  text-align: center;
  height: 70vh;
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-repeat: no-repeat;
  background:
    linear-gradient(#007bff50, #001f6e),
    url(../img/banner-contact-page-full.png) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.contact-hero h2 {
  font-size: 4rem;
  color: #ffffff;
  width: 30vw;
  height: 20vh;
  font-weight: 500;
  line-height: 1;
}
.form-container .cta {
  background-color: #073cbc;

  padding: 2rem;
  color: white;
}
.form-container .cta h2 {
  font-size: 2rem;
  color: #ffffff;
}
.form-group {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.form-group > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 5vw;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav li {
    padding: 5px 8px;
    font-size: 0.9rem;
  }

  .logo-icon {
    width: 70px;
    height: 70px;
  }

  .hero {
    flex-direction: column;
    margin: 50px;
    padding: 2rem 2rem;
  }

  .hero-container,
  .hero-cta {
    background: rgba(1, 18, 59, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .hero-container {
    width: 100%;
    text-align: center;
    align-items: flex-start;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-container h1,
  .hero-container p,
  .hero-cta a,
  .hero-cta li {
    color: #ffffff;
  }

  .hero-cta li {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-container h1 {
    font-size: 1.5rem;
  }

  .hero-cta {
    width: 100%;
    margin-top: 1rem;
  }

  .experience-text {
    width: 90vw;
  }

  .experience-text h2 {
    font-size: 2rem;
  }

  .experience-icons {
    gap: 5vh;
    flex-wrap: wrap;
  }

  .coverd-zone {
    width: 90vw;
    height: auto;
    flex-direction: column;
    padding: 20px;
    gap: 5vh;
  }

  .coverd-zone img {
    width: 60vw;
    height: 30vh;
  }

  .coverd-zone h3 {
    font-size: 1.5rem;
  }

  .coverd-zone h4 span {
    font-size: 2rem;
  }

  .client-liste {
    width: 60vw;
    gap: 20px;
  }

  .services {
    height: auto;
    padding: 2rem 4rem;
    margin: 5vh;
  }

  .services h2 {
    font-size: 2.5rem;
  }

  .service-panels {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .service-panel {
    width: 35vw;
    height: 30vh;
  }

  .services-scroll-shell {
    padding: 0 0.75rem;
  }

  .services-scroll-btn {
    display: none;
    align-items: center;
    justify-content: center;
  }

  .services-scroll-left {
    left: 0rem;
  }

  .services-scroll-right {
    right: 0rem;
  }

  .services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.5rem;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    width: 100%;
    padding: 2rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(255, 255, 255, 0.1);
  }

  .services-grid::-webkit-scrollbar {
    display: block;
    height: 10px;
  }

  .services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .services-grid::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }

  .services-grid::before,
  .services-grid::after {
    content: "";
    flex: 0 0 0.75rem;
  }

  .services-grid .panel {
    flex: 0 0 min(25vw, 380px);
    min-width: min(25vw, 380px);
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .services-grid .panel h3 {
    font-size: 1.25rem;
  }

  .why {
    margin: 5vh;
    padding: 1rem;
  }

  .why h2 span {
    font-size: 2.5rem;
  }

  .audit-cta {
    padding: min(2rem, 5vw) min(4rem, 5vw);
    height: auto;
    flex-direction: column;
  }

  .audit-cta h2 {
    font-size: 4rem;
    width: 100%;
  }

  .audit-cta p {
    width: 100%;
  }

  .audit-text {
    flex-direction: column;
    gap: 2vh;
  }

  .audit-btns {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .audit-cta .text {
    height: 20vh;
    width: 100%;
  }

  .actions {
    margin: 5vh;
    padding: 2rem;
  }

  .actions h2 {
    font-size: 2.5rem;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 15vh 15vh 15vh;
    grid-template-areas:
      "box-1 box-2"
      "box-1 box-3"
      "box-1 box-4";
  }

  .testimonials-text {
    width: 80vw;
    text-align: center;
  }

  .testimonials-text h2 {
    font-size: 2rem;
  }

  .testimonial {
    width: 80vw;
    max-width: 400px;
  }

  .safety-tips {
    padding: 2rem 5vw;
  }

  .safety-tips h2 {
    font-size: 2rem;
  }

  .form-section {
    padding: 2rem;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .form-section .form-container {
    width: 100%;
  }

  .badge-cta {
    height: auto;
    gap: 2rem;
  }

  .badge-cta .cta,
  .badge-cta .cta-2 {
    width: 80vw;
    min-width: 80vw;
    height: auto;
  }

  .cta-section {
    padding: 2rem;
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }

  .cta-section h3 {
    width: 100%;
    font-size: 1.5rem;
  }

  .cta-section p {
    width: 100%;
  }

  .contact-hero {
    height: 50vh;
  }

  .contact-hero h2 {
    font-size: 2.5rem;
    width: 80vw;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group div {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  footer .compagny-info {
    flex-direction: column;
    gap: 2rem;
  }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  * {
    font-size: 14px;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav li {
    padding: 5px 8px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn-contact-head {
    width: 100%;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .hero {
    margin: 0;
    padding: 1.5rem;
    flex-direction: column;
    min-height: calc(100vh - 100px);
    width: 100%;
  }

  .hero-container {
    width: 100%;
    text-align: center;
  }

  .hero-container h1 span {
    font-size: 2rem;
    display: block;
    font-weight: 600;
  }

  .hero-container p {
    font-size: 0.9rem;
  }

  .hero-cta {
    width: 100%;
    gap: 0.8rem;
  }

  .hero-cta ul {
    gap: 0.5rem;
  }

  .hero-cta li {
    font-size: 0.8rem;
    padding: 5px;
  }

  .experience {
    padding: 1rem;
    gap: 2rem;
  }

  .experience-text {
    width: 100%;
  }

  .experience-text h2 {
    font-size: 1.5rem;
  }

  .experience-text p {
    font-size: 0.9rem;
  }

  .experience-icons {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .icon-animated {
    width: 100%;
    text-align: center;
  }

  .coverd-zone {
    width: 100%;
    padding: 1rem;
    height: auto;
    flex-direction: column;
    gap: 2rem;
  }

  .coverd-zone h3 {
    font-size: 1.2rem;
  }

  .coverd-zone h4 {
    font-size: 1rem;
  }

  .coverd-zone h4 span {
    font-size: 1.5rem;
  }

  .coverd-zone img {
    width: 100%;
    height: 200px;
  }

  .client-liste {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding: 1rem;
  }

  .client-liste img {
    width: 80px;
    height: 70px;
  }

  .services {
    margin: 1rem;
    padding: 1rem;
    height: auto;
    height: 35vh;
  }

  .services h2 {
    font-size: 1.5rem;
  }

  .service-panels {
    flex-direction: column;
    gap: 1rem;
  }

  .service-panel {
    width: 100%;
    height: 20vh;
  }

  .services-scroll-shell {
    padding: 0 1.6rem;
  }

  .services-scroll-btn {
    display: none;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .services-scroll-left {
    left: 0.25rem;
  }

  .services-scroll-right {
    right: 0.25rem;
  }

  .services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.5rem;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    width: 100%;
    padding: 2rem 0.45rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(255, 255, 255, 0.1);
  }

  .services-grid::-webkit-scrollbar {
    display: block;
    height: 10px;
  }

  .services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .services-grid::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }

  .services-grid::before,
  .services-grid::after {
    content: "";
    flex: 0 0 0.3rem;
  }

  .services-grid .panel {
    flex: 0 0 min(62vw, 430px);
    min-width: min(62vw, 430px);
    flex-shrink: 0;
    scroll-snap-align: start;
    width: min(82vw, 430px);
    padding: 0.75rem;
  }

  .services-grid .panel .panel-img,
  .services-grid .panel h3 {
    width: 100%;
    max-width: 100%;
  }

  .services-grid .panel .panel-img {
    height: 110px;
  }

  .services-grid .panel h3 {
    font-size: 1rem;
    height: 200px;
  }

  .que-faisons-nous .img-que-faisons-nous {
    justify-content: flex-start !important;
    align-items: stretch;
    flex-wrap: nowrap !important;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scroll-padding-inline: 0.5rem;
    padding: 0 0.5rem 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(255, 255, 255, 0.1);
  }

  .que-faisons-nous .img-que-faisons-nous a {
    flex: 0 0 82vw !important;
    min-width: 82vw !important;
    scroll-snap-align: start;
    display: block;
  }

  .img-que-faisons-nous img {
    width: 100%;
    height: auto;
    display: block;
  }

  .img-que-faisons-nous::-webkit-scrollbar {
    height: 10px;
  }

  .img-que-faisons-nous::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }

  .img-que-faisons-nous::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .img-que-faisons-nous::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }

  .why {
    margin: 1rem;
    padding: 0.5rem;
  }

  .why h2 {
    font-size: 1rem;
  }

  .why h2 span {
    font-size: 1.5rem;
  }

  .why .cta-services img {
    width: 30px;
    height: 30px;
  }

  .slide-galerie .slide {
    width: 100%;
    height: 30vh;
    padding: 2vh;
    position: relative;
    left: 0;
    top: 0;
  }

  .slide-galerie .slide img {
    width: 100px;
    height: auto;
  }

  .audit-cta {
    margin: 0;
    padding: min(1rem, 5vw);
    background-image: none;
  }

  .audit-cta h2 {
    font-size: 3rem;
    width: 100%;
  }

  .audit-cta p {
    width: 100%;
    font-size: 0.9rem;
  }

  .audit-cta .text p {
    width: 100%;
    font-size: 2rem;
  }
  .audit-text {
    flex-direction: column;
    gap: 1rem;
  }

  .audit-btns {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .audit-btns .btn-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 1vh;
  }
  .audit-cta .text {
    height: 150px;
    width: 100%;
    font-size: 2rem;
  }

  .actions {
    margin: 1rem;
    padding: 1rem;
  }

  .actions h2 {
    font-size: 1.5rem;
  }

  .actions p {
    font-size: 1rem;
  }

  .bento {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.6rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(7, 60, 188, 0.18);
  }

  .bento::-webkit-scrollbar {
    display: block;
    height: 10px;
  }

  .bento::-webkit-scrollbar-track {
    background: rgba(7, 60, 188, 0.18);
    border-radius: 999px;
  }

  .bento::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .bento::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }

  .bento .bento-img {
    flex: 0 0 82vw;
    min-width: 82vw;
    height: 52vw;
    max-height: 320px;
    border-radius: 2vh;
    overflow: hidden;
    scroll-snap-align: start;
  }

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

  .testimonials {
    padding: 1rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 1rem;
    height: auto;
    gap: 1rem;
    background-image: none;
  }

  .testimonials-text {
    width: 80vw;
    min-width: 70vw;
    text-align: left;
  }

  .testimonials-text h2 {
    font-size: 2rem;
    margin: 20px 0;
    line-height: 1.3;
  }

  .testimonial {
    width: 80vw;
    min-width: 80vw;
    height: auto;
  }

  .safety-tips {
    padding: 1rem;
  }

  .safety-tips h2 {
    font-size: 1.5rem;
  }

  .safety-tips .slides {
    gap: 1rem;
  }

  .safety-tips .slide {
    width: 90vw;
    min-width: 250px;
  }

  .form-section {
    margin: 1rem 0;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .form-section .form-container {
    width: 100%;
  }

  .form-section form label {
    font-size: 0.9rem;
  }

  .form-section form input,
  .form-section form select,
  .form-section form textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .badge-cta {
    height: auto;
    gap: 1rem;
  }

  .badge-cta .cta {
    width: 100%;
    height: 250px;
  }

  .badge-cta .cta .logo {
    height: 100px;
  }

  .badge-cta .cta-2 {
    width: 100%;
    height: auto;
    padding: 1rem;
  }

  .badge-cta .cta-2 h4 {
    font-size: max(1.2vw, 1rem);
  }

  .badge-cta .cta-2 p {
    font-size: 0.9rem;
  }

  .cta-section {
    margin: 0;
    padding: 1rem;
    height: auto;
    flex-direction: column;
    gap: 1rem;
    background-image: none;
  }

  .cta-section h3 {
    width: 100%;
    font-size: 1.2rem;
  }

  .cta-section h3 span {
    font-size: 1.5rem;
  }

  .cta-section p {
    width: 100%;
    font-size: 0.9rem;
  }

  .contact-hero {
    height: 40vh;
    background-image: none;
  }

  .contact-hero h2 {
    font-size: 1.5rem;
    width: 100%;
  }

  .form-container .cta {
    padding: 1rem;
  }

  .form-container .cta h2 {
    font-size: 1.5rem;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group div {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  footer {
    padding: 1rem;
  }

  footer .compagny-info {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .adresse {
    flex-direction: column;
    gap: 0.5rem;
  }

  .adresse p {
    width: 100%;
  }

  .menu ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu a {
    font-size: 0.9rem;
  }
}

/* SMALL MOBILE (max 480px) */
@media (max-width: 480px) {
  nav {
    padding: 0.5rem;
  }

  nav li {
    padding: 4px 6px;
    font-size: 0.7rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .btn-contact-head {
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .hero-container h1 {
    font-size: 1rem;
  }

  .hero-badge {
    width: 100px;
    height: auto;
  }

  .experience-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .hero h1 span {
    display: block;
  }

  .coverd-zone h4 span {
    font-size: 1.2rem;
  }

  .services h2 {
    font-size: 1.2rem;
  }

  .why h2 span {
    font-size: 1.2rem;
  }

  .audit-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0;
  }

  .actions h2 {
    font-size: 2rem;
  }

  .safety-tips h2 {
    font-size: 1.2rem;
  }

  .cta-section h3 {
    font-size: 1rem;
  }

  .contact-hero h2 {
    font-size: 1.2rem;
  }

  .form-section form {
    gap: 0.5rem;
  }

  .btn-cta {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===== CAROUSEL & ANIMATIONS ===== */

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #073cbc;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: #ff7f00;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -30px;
}

.carousel-next {
  right: -30px;
}

nav li a.active {
  font-weight: 600;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  color: white;
  border-radius: 5px;
  z-index: 10000;
  animation: slideIn 0.3s ease-in-out;
}

.notification-success {
  background-color: #28a745;
}

.notification-info {
  background-color: #073cbc;
}

.mail-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 31, 0.52);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mail-popup {
  width: min(92vw, 460px);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-top: 6px solid #073cbc;
}

.mail-popup h3 {
  margin: 0 0 0.55rem;
  color: #073cbc;
  font-size: 1.2rem;
}

.mail-popup p {
  margin: 0;
  color: #1f2937;
  line-height: 1.45;
}

.mail-popup .mail-popup-close {
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 999px;
  background: #073cbc;
  color: #ffffff;
  cursor: pointer;
  min-width: 130px;
}

.mail-popup-error {
  border-top-color: #dc3545;
}

.mail-popup-error h3 {
  color: #b4232c;
}

.form-section form button[type="submit"].btn-cta {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.form-section form button[type="submit"].btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(7, 60, 188, 0.25);
}

.form-section form button[type="submit"].btn-cta.is-pressed {
  transform: scale(0.98);
}

.form-section form button[type="submit"].btn-cta.is-loading {
  pointer-events: none;
  opacity: 0.95;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.form-section form button[type="submit"].btn-cta.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: submitShimmer 1.2s linear infinite;
}

.form-section form button[type="submit"] .btn-loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: submitSpin 0.75s linear infinite;
  flex: 0 0 auto;
}

@keyframes submitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes submitShimmer {
  to {
    transform: translateX(100%);
  }
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }
}

/* Burger Menu Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: #073cbc;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.close-menu {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #073cbc;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.close-menu span {
  display: block;
  line-height: 1;
  font-weight: bold;
}

/* Responsive Design - Menu burger at 1100px and below */
@media (max-width: 1300px) {
  .burger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links.active .close-menu {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 20px;
  }

  .nav-links ul li {
    border: solid 1px #073cbc;
    padding: 10px 20px;
    border-radius: 5vw;
    min-width: 400px;
    width: min(90vw, 400px);
    text-align: center;
  }

  .nav-item.dropdown {
    width: min(90vw, 400px);
  }

  .nav-item.dropdown .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    padding: 8px;
    border: none;
    border-radius: 16px;
    box-shadow: none;
    background-color: #ffffff;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-item.dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown .dropdown-item {
    white-space: normal;
    border-radius: 12px;
    color: #00206e;
    background-color: #ffffff;
    padding: 10px 14px;
  }

  .nav-item.dropdown .dropdown-item:hover {
    background-color: #edf3ff;
    color: #073cbc;
  }

  .nav-links ul li a {
    color: #00206e;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-links ul li:hover {
    background-color: #073cbc;
  }

  .nav-links ul li:hover a {
    color: #ffffff;
  }

  .btn-contact-head {
    background-color: #073cbc;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    min-width: 400px;
    width: min(90vw, 400px);
    text-align: center;
    text-decoration: none;
  }

  .btn-contact-head:hover {
    box-shadow: 0 2px 8px rgba(7, 60, 188, 0.3);
  }
}

@media (max-width: 768px) {
  .navbar {
    z-index: 1200;
  }

  .navbar .nav-links {
    display: flex;
    position: fixed !important;
    top: 0;
    right: -100% !important;
    left: auto;
    width: min(92vw, 360px);
    height: 100vh;
    background: #f7f9ff !important;
    padding: 88px 12px 20px;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 1300;
  }

  .navbar .nav-links.active {
    right: 0 !important;
  }

  .navbar .nav-links ul {
    width: 100%;
    gap: 12px;
    padding-inline: 0;
  }

  .navbar .nav-links ul li {
    min-width: 0;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #073cbc;
    background-color: #ffffff;
    padding: 10px 12px;
  }

  .navbar .nav-item.dropdown {
    width: 100%;
  }

  .navbar .nav-link,
  .navbar .dropdown-toggle,
  .navbar .dropdown-item {
    color: #00206e !important;
  }

  .navbar .nav-item.dropdown .dropdown-menu {
    background-color: #eef3ff;
  }

  .navbar .btn-contact-head {
    min-width: 0;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .navbar .close-menu {
    color: #073cbc;
    background: #ffffff;
    border-radius: 10px;
  }

  .nav-links {
    background-color: #f7f9ff;
    overflow-y: auto;
    padding-bottom: 2rem;
  }

  .nav-links ul {
    width: 100%;
    gap: 14px;
    padding-inline: 12px;
  }

  .nav-links ul li {
    min-width: 0;
    width: min(92vw, 330px);
    background-color: #ffffff;
    border-color: #073cbc;
  }

  .nav-item.dropdown {
    width: min(92vw, 330px);
  }

  .nav-links .nav-link,
  .nav-links .dropdown-toggle,
  .nav-links .dropdown-item {
    color: #00206e !important;
  }

  .nav-item.dropdown .dropdown-menu {
    background-color: #f0f5ff;
    border-radius: 12px;
    padding: 6px;
    max-height: 46vh;
    overflow-y: auto;
  }

  .nav-links ul li:hover,
  .nav-links ul li:focus-within {
    background-color: #073cbc;
  }

  .nav-links ul li:hover > a.nav-link,
  .nav-links ul li:focus-within > a.nav-link {
    color: #ffffff !important;
  }

  .nav-item.dropdown.open .dropdown-menu .dropdown-item,
  .nav-item.dropdown.open:hover .dropdown-menu .dropdown-item {
    display: block;
    color: #00206e !important;
    background-color: #ffffff !important;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.35;
    padding: 10px 12px;
    margin-bottom: 6px;
  }

  .nav-item.dropdown.open .dropdown-menu .dropdown-item:hover,
  .nav-item.dropdown.open .dropdown-menu .dropdown-item:focus {
    color: #073cbc !important;
    background-color: #eaf1ff;
  }

  .close-menu {
    color: #073cbc;
    background-color: #ffffff;
    border-radius: 10px;
  }

  .btn-contact-head {
    min-width: 0;
    width: min(92vw, 330px);
  }
}

/* about page styling */
.hero-about {
  padding: 4rem max(5vw, 1rem);
  text-align: center;
  height: 70vh;
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-repeat: no-repeat;
  background: url(../img/apropos.png) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.hero-about h1 {
  font-size: 4rem;
  color: #ffffff;
  width: max(30vw, 400px);
  padding: 5vh 5vw;
  font-weight: 500;
  line-height: 1;
}
.info-about {
  padding: 4rem max(5vw, 1rem);
  text-align: center;
  background-color: #e8e8e8;
  margin: 10vh 0;
  display: flex;
  flex-direction: column;
  gap: 5vh;
  justify-content: center;
  align-items: center;
}

.securite {
  text-align: center;
  background: linear-gradient(#042f99, #011033);
  border-radius: 2vh;
  margin: 10vh 0;
  display: flex;
  flex-direction: row;
  gap: max(10vw, 20px);
  justify-content: center;
  align-items: center;
  padding: 10vh 5vw;
  width: 100%;
  color: white;
  flex-wrap: wrap-reverse;
}
.texte-securite {
  width: max(40vw, 350px);
  text-align: justify;
}
.texte-about {
  display: flex;
  justify-content: space-between;
  padding: 5vh max(5vw, 1rem);
  color: #00206e;
  text-align: justify;
}
.texte-about p {
  width: 45%;
  font-size: 1rem;
  line-height: 1.5;
}
.image-securite {
  height: 50vh;
}
.image-securite img {
  width: auto;
  height: 100%;
  border-radius: 2vh;
  object-fit: contain;
}
.que-faisons-nous {
  padding: 0 max(5vw, 1rem);
  border-radius: 5vh;
  color: #073cbc;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  gap: 5vh;
}
.que-faisons-nous h2 {
  text-align: left;
}
.que-faisons-nous h2 span {
  font-size: max(4vw, 2rem);
}
.img-que-faisons-nous {
  width: 100%;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}
.img-que-faisons-nous img {
  width: 100%;
  height: auto;
  border-radius: 2vh;
  object-fit: cover;
}
.expertise-vision {
  margin: 10vh 0;
  padding: 4rem max(5vw, 1rem);
  border-radius: 5vh;
  color: #073cbc;
  display: flex;
  flex-direction: row;
  text-align: justify;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 5vh;
}
.expertise-vision .expertise,
.expertise-vision .vision {
  width: max(30vw, 400px);
}
.expertise-vision h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  margin: 5vh 0;
}

/*NOUVEAU CODE POUR SERVICES - HERO*/
/* Carousel container */

.carousel-container {
  width: 100%;
  min-width: 1200px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.carousel-slide {
  position: relative;
  width: 100%;
  height: 500px;
  display: none;
}

.carousel-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #1a1547 0%,
    #2d4a7c 35%,
    #3ba39c 60%,
    #9b4d96 100%
  );
}

.slide-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 60px 80px;
  z-index: 2;
  gap: 15vh;
}

.text-content {
  flex: 0 0 40%;
  color: white;
}

.text-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.text-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 450px;
  font-weight: 300;
}

.image-content {
  flex: 0 0 55%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.services-image-carousel .image-content {
  overflow: hidden;
}

.services-image-carousel .hero-image-slide {
  display: none;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}

.services-image-carousel .hero-image-slide.active {
  display: block;
}

/* 
.slider-container-full {
  width: 100vw; 
  height: 500px; 
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  width: 300%; S
  height: 100%;
  animation: slideAnimation 12s infinite ease-in-out;
}

.slide {
  width: 33.333%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}


@keyframes slideAnimation {
  0%, 25%   { transform: translateX(0); }
  33%, 58%  { transform: translateX(-33.333%); }
  66%, 91%  { transform: translateX(-66.666%); }
  100%      { transform: translateX(0); }
}


@media (max-width: 768px) {
  .slider-container-full {
    height: 300px; 
  }
} */

/* Navigation buttons */
.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 80px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.nav-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
}

.nav-btn.prev::before {
  transform: rotate(45deg);
  margin-left: 4px;
}

.nav-btn.next::before {
  transform: rotate(-135deg);
  margin-right: 4px;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  width: 35px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .slide-content {
    padding: 40px;
  }

  .text-content h1 {
    font-size: 2.5rem;
  }

  .text-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    height: 600px;
  }

  .slide-content {
    flex-direction: column;
    padding: 30px;
    gap: 5vh;
  }

  .text-content {
    flex: 1;
    text-align: center;
  }

  .text-content p {
    max-width: 100%;
  }

  .image-content {
    flex: 1;
    width: 100%;
  }

  .carousel-nav,
  .carousel-indicators {
    left: 50%;
    transform: translateX(-50%);
  }

  .carousel-indicators {
    bottom: 80px;
  }
}
/*FIN NOUVEAU CODE POUR SERVICES - HERO*/

/* Page services 1 styling */
/*.service-hero {
  padding: 4rem 4rem;
  text-align: center;
  min-height: 80vh;
  width: 100%;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-repeat: no-repeat;
  background: url(../img/banner-service-page-full.jpg) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.service-hero-text {
  width: max(30vw, 400px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: justify;
  color: #ffffff;
}
.service-hero-text h1 {
  font-size: 1.8rem;
  color: #00a2ff;
  width: 100%;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}
.service-hero-text h1 span {
  font-size: 8rem;
  font-weight: 900;
}
.service-hero-text h1 strong {
  color: #ffffff;
  font-size: 12rem;
}
.service-hero-text P {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 6rem;
}*/

.service-details {
  margin: 10vh;
  padding: 4rem;
  border-radius: 2vh;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  text-align: left;
  justify-content: space-between;
  align-items: start;
  gap: 5vh;
  background: linear-gradient(#042f99, #011033);
}
.service-details-content {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  justify-content: center;
  align-items: left;
  width: max(35vw, 600px);
  height: 100%;
}
.service-details-content h2 {
  font-size: 2.2rem;
}

.line {
  display: block;
  margin-top: 10px;
  width: 0px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.service-details-content:hover {
  .line {
    width: 100%;
  }
}
.service-profits {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  text-align: left;
  justify-content: space-between;
  gap: 5vh;
  margin: 10vh;
  padding: 4rem;
  color: #00206e;
}
.service-profits h3 {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.service-profits h3:hover {
  .line {
    width: 90%;
    background-color: #00206e;
  }
}
.inline-icon {
  display: inline;
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}
.service-profits ul {
  list-style-type: disc;
  list-style-position: inside;
  width: max(35vw, 400px);
}
.service-profits li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
}
.service-profits ul a {
  display: block;
  color: #ffffff;
  background: linear-gradient(#073cbc, #001429);
  text-decoration: none;
  padding: 20px;
  width: 100%;
  line-height: 1.5;
  border-radius: 1vh;
}

.service-field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 5vh;
  margin: 10vh;
  padding: 4rem;
  color: #073cbc;
}
.fields-containers {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fields-containers ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  grid-row-gap: 5vw;
  grid-column-gap: 5vh;
  grid-auto-rows: minmax(15vh, auto);
}
.fields-containers li {
  display: block;
  background: #073cbc;
  color: #ffffff;
  padding: 1rem;
  border-radius: 1vh;
  text-align: center;
  font-size: 1rem;
  list-style: none;
  padding: 20px;
  width: max(200px, 20vw);
  height: 50px;
  list-style-position: outside;
  transition: all 0.3s ease-in-out;
}
.fields-containers li div {
  display: flex;
  justify-content: space-between;
}
.hide-element {
  display: block;
  margin: 0;
  padding-top: 2vh;

  text-align: left;
}
.fields-containers li:hover {
  height: 100%;
  padding-bottom: 2vh;
  .line {
    width: 90%;
    background: linear-gradient(90deg, #007bff, #ffffff);
  }
  .inline-icon.fields {
    transform: rotate(180deg);
  }
}

.fields-containers .inline-icon {
  margin: 0;
  width: 10px;
  height: 23px;
}

.service-why-us {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  justify-content: center;
  align-items: center;
  gap: 10vh;
  margin: 10vh;
  padding: 4rem;
  color: #00206e;
}
.service-why-us h2 {
  text-align: center;
  font-size: 2.5rem;
}
.service-why-us .contents {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10vw;
  perspective: 1200px;
}

.service-why-us .card {
  width: max(30vw, 300px);
  min-height: max(40vh, 400px);
  padding: 0;
  background-color: transparent;
  text-align: center;
  border-radius: 2vh;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
  will-change: transform;
  cursor: pointer;
}

.service-why-us .card .content {
  position: absolute;
  inset: 0;
  border-radius: 2vh;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 2.2rem 1.4rem;
  transform: translateZ(0);
}

.service-why-us .card .content.front {
  background-color: #f5f5f5;
  color: #00206e;
}

.service-why-us .card .content.back {
  transform: rotateY(180deg);
  background-color: #00206e;
  color: #ffffff;
}

.service-why-us .card.is-flipped {
  transform: rotateY(180deg);
}

.service-why-us .card .content img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.service-why-us .card .content h3 {
  margin: 0;
  line-height: 1.35;
}

/* CODE QUE J'AI AJOUTE */

.service-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

/* Style des cartes */
.service-card {
  background: linear-gradient(180deg, #0066ff 0%, #0044cc 100%);
  border-radius: 12px;
  width: 320px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Contenu haut de carte (Titre + Icône) */
.card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

.service-card h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 70%;
  line-height: 1.2;
  margin: 0;
}

.card-icon {
  width: 40px;
  height: auto;
}

/* Bouton "Demandez" */
.btn-demandez {
  background-color: white;
  color: #0066ff;
  text-decoration: none;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.btn-demandez:hover {
  background-color: #f0f0f0;
}

/* --- RESPONSIVE --- */

/* Pour les tablettes et mobiles */
@media (max-width: 768px) {
  .service-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 350px;
  }
}

/* ===== Pour la section fonctionalité de la page services 5 ===== */

/* Style de la section entière */
.features-section {
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
}

.features-section h2 {
  color: #001f3f; /* Bleu foncé comme sur l'image */
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Conteneur Flexbox pour aligner les éléments */
.features-container {
  display: flex;
  justify-content: space-around; /* Centre les éléments horizontalement */
  gap: 15px; /* Espace entre les boutons */
  flex-wrap: wrap; /* Permet de passer à la ligne sur mobile */
  padding: 0 5vw;
}

/* Style individuel de chaque "bouton" */
.feature-card {
  border: 1px solid #d1d9e6; /* Bordure grise légère */
  border-radius: 12px; /* Coins arrondis */
  padding: 20px 15px;
  min-width: 140px;
  color: #3e5a83; /* Couleur du texte bleu-gris */
  font-size: 0.9rem;
  display: flex;
  align-items: center; /* Centre le texte verticalement */
  justify-content: center; /* Centre le texte horizontalement */
  text-align: center;
  background-color: white;
}

/* --- Global & Fonts --- */
body {
  font-family: "Segoe UI", Arial, sans-serif;
}

/* --- Section Fonctionnalités --- */
.features-section {
  text-align: center;
  padding: 50px 20px;
}

.section-title {
  color: #001a3d;
  font-size: 28px;
  margin-bottom: 30px;
}

.feature-card {
  border: 1px solid #d0dbe9;
  border-radius: 12px;
  padding: 15px 10px;
  min-width: 130px;
  color: #4a668c;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
}

/* --- Section VIP (Bleue) --- */
.vip-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.vip-card {
  background: linear-gradient(135deg, #0066ff 0%, #004ecc 100%);
  width: 100%;
  max-width: 350px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.vip-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.vip-text h3 {
  color: white;
  display: flex;
  font-size: 24px;
  margin: 0 0 20px 0;
  line-height: 1.2;
  width: 100%;
}

.vip-btn {
  display: inline-block;
  background: white;
  color: #0066ff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.2s;
}

.vip-btn:hover {
  transform: scale(1.05);
}
.vip-icon {
  display: inline-block;
  width: 50%;
}

.vip-icon svg {
  height: 60px;
  color: rgba(255, 255, 255, 0.9);
}

/* SECTION VIP DE LA PAGE SERVICE 7  */
.analyse-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

.analyse-card {
  background: linear-gradient(135deg, #0052cc 0%, #0747a6 100%);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  max-width: 350px;
  width: 200%;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.3);
}

.analyse-card-title {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.analyse-icon {
  margin: 10px 0 30px 0;
}

.analyse-icon svg {
  width: 80px;
  height: 35px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

.analyse-button {
  background: white;
  color: #0052cc;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  width: 100%;
  max-width: 240px;
}

.analyse-button:hover {
  background: #f4f5f7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.analyse-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .analyse-card {
    max-width: 100%;
    padding: 35px 25px;
  }

  .analyse-card-title {
    font-size: 28px;
  }

  .analyse-button {
    font-size: 15px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .analyse-section {
    padding: 15px;
    min-height: 250px;
  }

  .analyse-card {
    padding: 30px 20px;
  }

  .analyse-card-title {
    font-size: 24px;
  }

  .analyse-icon svg {
    width: 65px;
    height: 30px;
  }

  .analyse-button {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/*voila la fin 7*/

/* Grille pour les 5 éléments */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 colonnes sur PC */
  gap: 20px;
  align-items: start;
}

.realisation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-img {
  width: 60px; /* Taille des icônes */
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
  /* Si vos icônes sont noires, ce filtre les passera en bleu clair */
  filter: invert(34%) sepia(85%) saturate(2453%) hue-rotate(195deg)
    brightness(101%) contrast(106%);
}

.realisation-item p {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
}

/* --- RESPONSIVITÉ --- */

/* Tablettes : Passage à 3 colonnes */
@media (max-width: 992px) {
  .realisations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}

/* Mobiles : Passage à 2 colonnes ou 1 */
@media (max-width: 600px) {
  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .realisations-title {
    font-size: 1.8rem;
  }

  .realisation-item:last-child {
    grid-column: span 2; /* Le dernier prend toute la largeur s'il est seul */
    margin-top: 10px;
  }
}

/* SECTION PROTECTION DE LA PAGE SERVICE 5  */
/* Container principal avec l'image de fond */
.section-protection {
  position: relative;
  width: 100%;
  min-height: 250px;
  background:
    url(../img/banner-service-page-protection.png),
    linear-gradient(#01123b, #01123b);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: 2px solid #007bff;
}

.protection-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.protection-text {
  flex: 2;
}

.protection-text p {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.blue-text {
  color: #0084ff;
}

.orange-text {
  color: #ff8c00;
}

.protection-icon {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.protection-icon img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* --- RESPONSIVITÉ --- */

@media (max-width: 992px) {
  .protection-text p {
    font-size: 1.5rem;
  }
  .protection-icon img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .protection-container {
    flex-direction: column;
    text-align: center;
  }
  .protection-icon {
    justify-content: center;
    order: -1;
  }

  .protection-text p {
    font-size: 1.3rem;
  }
}

/* Services: keep horizontal scrolling with styled scrollbar */
.service-panels {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #ff7f00 rgba(255, 255, 255, 0.2);
}

.service-panel {
  scroll-snap-align: start;
}

.service-panels::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.service-panels::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.service-panels::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ff7f00, #ffd166);
  border-radius: 999px;
}

.service-panels::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

@media (max-width: 1024px) {
  .service-panels {
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .service-panel {
    flex: 0 0 min(78vw, 320px);
    min-width: min(78vw, 320px);
    width: min(78vw, 320px);
    height: auto;
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .services {
    height: auto;
  }

  .service-panels {
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden;
  }

  .service-panel {
    width: 85vw;
    margin: 0;
  }
}

/* Why section: keep horizontal scrolling from 1024px */
.slide-galerie {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #ff7f00 rgba(7, 60, 188, 0.18);
}

.slide-panel {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.slide-galerie::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.slide-galerie::-webkit-scrollbar-track {
  background: rgba(7, 60, 188, 0.18);
  border-radius: 999px;
}

.slide-galerie::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ff7f00, #ffd166);
  border-radius: 999px;
}

.slide-galerie::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

@media (max-width: 1024px) {
  .slide-galerie {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    gap: 1rem;
    height: auto;
  }

  .slide-panel {
    min-width: min(78vw, 380px) !important;
    width: min(78vw, 380px) !important;
    min-height: 380px;
    max-height: none;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(7, 60, 188, 0.3);
    background: linear-gradient(rgba(1, 18, 59, 0.4)), #073cbc;
    color: #ffffff;
  }

  .slide-panel.active {
    min-width: min(78vw, 380px) !important;
    width: min(78vw, 380px) !important;
    min-height: 380px;
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .slide-galerie {
    display: flex !important;
    grid-template-columns: none !important;
  }

  .slide-panel {
    min-width: 80vw !important;
    width: 80vw !important;
    min-height: 340px;
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(7, 60, 188, 0.28);
    background: linear-gradient(rgba(1, 18, 59, 0.4)), #073cbc;
    color: #ffffff;
  }

  .slide-panel.active {
    min-width: 80vw !important;
    width: 80vw !important;
    min-height: 340px;
    transform: translateY(-8px);
  }
}

/* Force readability for all slide panels on tablet/mobile */
@media (max-width: 1024px) {
  .slide-galerie .slide-panel {
    position: relative;
    overflow: hidden;
  }

  .slide-galerie .slide-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(1, 18, 59, 0.38), rgba(1, 18, 59, 0.55));
    z-index: 0;
    pointer-events: none;
  }

  .slide-galerie .slide-panel .slide-content,
  .slide-galerie .slide-panel .slide-icon {
    position: relative;
    z-index: 1;
  }

  .slide-galerie .slide-panel,
  .slide-galerie .slide-panel .slide-content h4,
  .slide-galerie .slide-panel .slide-content p {
    color: #ffffff !important;
  }

  .slide-galerie .slide-panel .slide-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }
}

.audit-cta {
  background: linear-gradient(135deg, #f39200 0%, #ff7e00 100%);
  padding: 60px 40px;
  color: white;
  font-family: "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.audit-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.audit-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: none;
}

.audit-text p {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.4;
  opacity: 0.9;
}

.audit-text .text {
  background-color: white;
  color: #ff7e00;
  padding: 40px 30px;
  border-radius: 50% 50% 50% 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: max(25vw, 300px);
}

.audit-text .text p {
  font-size: max(2.5vw, 1.8rem);
  font-weight: 900;
  margin: 0;
  color: #f39200;
}

.audit-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.btn-cta {
  background-color: #0047ff;
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-cta.white {
  background-color: white;
  color: #002e7a;
}

.audit-btns img {
  height: 45px;
  width: auto;
  cursor: pointer;
}

@media (max-width: 768px) {
  .audit-cta {
    padding: 40px 20px;
    text-align: center;
  }

  .audit-text {
    flex-direction: column;
    gap: 40px;
  }

  .audit-text h2 {
    font-size: 2.5rem;
  }

  .audit-text p {
    font-size: 1rem;
    margin: 0 auto;
  }

  .audit-text div:first-child {
    order: 1;
  }
  .audit-text .text {
    order: 2;
    padding: 30px 20px;
    align-self: center;
  }

  .audit-text p:last-of-type {
    order: 3;
    margin-top: 20px;
  }

  .audit-btns {
    flex-direction: column;
    width: 100%;
    order: 4;
  }

  .btn-cta {
    width: 100%;
    max-width: 400px;
  }

  .btn-cta.white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  .audit-btns img {
    display: none;
  }
}

/* Safety tips: force horizontal scroll on tablet and mobile */
@media (max-width: 1024px) {
  .safety-tips .slides {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding-bottom: 0.75rem;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(7, 60, 188, 0.2);
  }

  .safety-tips .slides::before,
  .safety-tips .slides::after {
    content: "";
    flex: 0 0 0.75rem;
  }

  .safety-tips .slides::-webkit-scrollbar {
    display: block;
    height: 10px;
  }

  .safety-tips .slides::-webkit-scrollbar-track {
    background: rgba(7, 60, 188, 0.2);
    border-radius: 999px;
  }

  .safety-tips .slides::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .safety-tips .slides::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }

  .safety-tips .slide {
    flex-shrink: 0;
    flex: 0 0 min(70vw, 380px);
    min-width: min(70vw, 380px);
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .safety-tips .slides {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    flex-wrap: nowrap !important;
  }

  .safety-tips .slide {
    flex-shrink: 0;
    flex: 0 0 80vw;
    min-width: 80vw;
  }
}

/* Service subpages: robust responsive layer */
@media (max-width: 1300px) {
  .navbar {
    z-index: 3000;
  }

  .navbar .burger-menu {
    display: flex;
    z-index: 3100;
  }

  .navbar .nav-links {
    z-index: 3200;
  }

  .carousel-container {
    min-width: 0;
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 1024px) {
  .services-navigation {
    margin-bottom: 0;
  }

  .service-details,
  .service-profits,
  .service-field,
  .service-why-us {
    margin: 5vh 4vw;
    padding: 2rem 1.25rem;
  }

  .service-details {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

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

  .service-details-content {
    gap: 1.25rem;
  }

  .service-details-content h2 {
    font-size: 1.8rem;
  }

  .service-details-image img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 1rem;
  }

  .service-profits {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-profits > div,
  .service-profits ul {
    width: 100%;
  }

  .service-profits .inline-icon {
    display: none;
  }

  .fields-containers ul {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .fields-containers li {
    width: 100%;
    height: auto;
    min-height: 56px;
  }

  .service-why-us .contents {
    gap: 1.5rem;
  }

  .service-why-us .card {
    width: 100%;
    min-height: 320px;
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .services-hero .carousel-slide {
    height: auto;
    min-height: 520px;
  }

  .services-hero .slide-content {
    padding: 24px 16px 90px;
    gap: 1.25rem;
  }

  .services-hero .text-content h1 {
    font-size: 2.2rem;
  }

  .services-hero .text-content h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  .services-hero .text-content p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .services-hero .image-content {
    width: 100%;
  }

  .services-hero .image-content img {
    width: min(92vw, 420px);
    height: auto;
    max-height: 240px;
    object-fit: contain;
  }

  .service-details,
  .service-profits,
  .service-field,
  .service-why-us {
    margin: 3vh 4vw;
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .service-details-content h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .service-details-content p,
  .service-profits li,
  .service-profits ul p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .service-profits h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .service-profits ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    padding: 0 0 0.5rem;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(7, 60, 188, 0.18);
  }

  .service-profits ul::-webkit-scrollbar {
    height: 8px;
  }

  .service-profits ul::-webkit-scrollbar-track {
    background: rgba(7, 60, 188, 0.18);
    border-radius: 999px;
  }

  .service-profits ul::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .service-profits ul li {
    flex: 0 0 min(78vw, 280px);
    min-width: min(78vw, 280px);
    background: #eef3ff;
    border: 1px solid rgba(7, 60, 188, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin: 0;
  }

  .service-profits .profits-intro {
    font-size: 0.92rem;
    margin: 0 0 0.7rem;
  }

  .service-profits ul .highlight-item {
    background: linear-gradient(#073cbc, #001429);
    color: #ffffff;
    border: none;
  }

  .service-profits ul a {
    padding: 14px;
    font-size: 0.9rem;
  }

  .service-field h2,
  .service-why-us h2 {
    font-size: 1.5rem;
  }

  .fields-containers ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(7, 60, 188, 0.18);
  }

  .fields-containers ul::-webkit-scrollbar {
    height: 8px;
  }

  .fields-containers ul::-webkit-scrollbar-track {
    background: rgba(7, 60, 188, 0.18);
    border-radius: 999px;
  }

  .fields-containers ul::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .fields-containers li {
    flex: 0 0 min(78vw, 280px);
    min-width: min(78vw, 280px);
    min-height: 48px;
    padding: 12px;
    font-size: 0.9rem;
  }

  .features-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.75rem;
    padding: 0 0.5rem 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 rgba(7, 60, 188, 0.18);
  }

  .features-container::-webkit-scrollbar {
    height: 8px;
  }

  .features-container::-webkit-scrollbar-track {
    background: rgba(7, 60, 188, 0.18);
    border-radius: 999px;
  }

  .features-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7f00, #ffd166);
    border-radius: 999px;
  }

  .feature-card {
    flex: 0 0 min(72vw, 250px);
    min-width: min(72vw, 250px);
  }

  .hide-element {
    padding-top: 0.75rem;
    font-size: 0.86rem;
  }

  .service-why-us .contents {
    flex-direction: column;
    gap: 1rem;
  }

  .service-why-us .card {
    min-height: 260px;
    gap: 1.2rem;
  }
}

.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.articles-public,.article-detail{max-width:1180px;margin:0 auto;padding:80px 24px}.articles-heading{text-align:center;margin-bottom:40px}.articles-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}.article-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 8px 28px #071a4517}.article-card img{width:100%;height:220px;object-fit:cover}.article-card>div{padding:22px}.article-card time,.article-meta{color:#667085;font-size:14px}.article-card a{color:#073cbc;font-weight:700}.article-detail{max-width:850px}.article-detail h1{font-size:clamp(32px,5vw,56px)}.article-cover{width:100%;max-height:480px;object-fit:cover;border-radius:14px;margin:25px 0}.article-content{font-size:18px;line-height:1.8;white-space:normal}
.article-content img,.article-content video{display:block;max-width:100%;height:auto;margin:24px auto;border-radius:10px}.article-content audio{width:100%;margin:20px 0}.article-content figure{margin:28px 0;text-align:center}.article-content figcaption{color:#667085;font-size:14px;margin-top:8px}.article-content table{width:100%;border-collapse:collapse;margin:24px 0}.article-content th,.article-content td{border:1px solid #d7dce6;padding:10px}.article-content blockquote{border-left:4px solid #073cbc;padding:12px 20px;background:#f4f7ff}
