/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/









#topbar {
  background: rgb(13, 11, 134);
  border-bottom: 1px solid color rgb(72, 24, 139);
  font-size: 15px;
  font-weight: 600;
  height: 50px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: rgb(255, 255, 255);
}

#topbar .contact-info i {
  color: rgb(255, 255, 255);
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgb(255, 255, 255);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: rgb(46, 83, 11);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  background-color: rgba(255, 255, 255, 0.968);
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
  border-bottom: 5px solid rgb(13, 11, 134);
}



#header .logo img {
  left: 100px;
  padding: 0;
  margin: 0;
  max-height: 270px;
  max-width: 300px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 650;
  color: #360743;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fdfdfd;
  background: rgb(72, 24, 139);
  border: #2c0349 solid 2px;
  border-radius: 10% 30% 50% 70%;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffffff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #10093a;
  font-size: 45px;
  font-weight: 900;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgb(72, 24, 139);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffffff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #428bca;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}




/*--------------------------------------------------------------
# footerNavigation Menu
--------------------------------------------------------------*/

#footer {
  background: #000000;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background:rgb(72, 24, 139);
  border-top: 1px solid #768fa6;
  border-bottom: 1px solid #67839c;
  padding: 60px 0 30px 0;
  opacity: 20;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #768fa6;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #5295ce;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9eccf4;
}



































/* PRODUITS */


.product-presentation-dn5 {
  background-color: #ffffff; /* Fond blanc */
  padding: 60px 20px; /* Espacement supérieur et inférieur */
  text-align: center; /* Centrer le texte */
}

.product-container-dn5 {
  max-width: 1200px; /* Largeur maximale */
  margin: 0 auto; /* Centrer horizontalement */
}

.section-title-dn5 {
  font-size: 36px; /* Taille de police pour le titre */
  font-weight: 700; /* Épaisseur du texte */
  color: #0056b3; /* Couleur du texte */
  margin-bottom: 40px; /* Espace sous le titre */
}

.product-item-dn5 {
  display: flex; /* Utiliser le flex pour la mise en page */
  align-items: center; /* Aligner verticalement */
  margin-bottom: 40px; /* Espace sous chaque produit */
  border: 1px solid #e0e0e0; /* Bordure autour du produit */
  border-radius: 8px; /* Coins arrondis */
  padding: 20px; /* Espacement interne */
  transition: box-shadow 0.3s ease; /* Animation de l'ombre */
}

.product-item-dn5:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre au survol */
}

.product-image-dn5 {
  flex: 1; /* Prendre 1/2 de l'espace disponible */
  margin-right: 20px; /* Espace à droite de l'image */
  max-width: 300px;
}

.image-dn5 {
  width: 100%; /* Largeur complète pour l'image */
  height: auto; /* Hauteur automatique */
  max-height: 200px; /* Hauteur maximale pour l'image */
  object-fit: cover; /* Ajuster l'image pour qu'elle soit couverte */
  border-radius: 8px; /* Coins arrondis */
}

.product-details-dn5 {
  flex: 2; /* Prendre 2/3 de l'espace disponible */
  text-align: left; /* Alignement à gauche pour le texte */
}

.product-type-dn5 {
  font-size: 24px; /* Taille de police pour le type de produit */
  font-weight: 600; /* Épaisseur du texte */
  color: #333; /* Couleur du texte */
  margin-bottom: 10px; /* Espace sous le type de produit */
}

.product-description-dn5 {
  font-size: 16px; /* Taille de la police pour la description */
  color: #666; /* Couleur du texte */
  line-height: 1.5; /* Hauteur de ligne pour lisibilité */
  margin-bottom: 20px; /* Espace sous la description */
}

.product-button-dn5 {
  display: inline-block; /* Alignement du bouton */
  background-color: #0056b3; /* Couleur de fond du bouton */
  color: #fff; /* Couleur du texte */
  padding: 10px 20px; /* Espacement interne du bouton */
  border-radius: 5px; /* Coins arrondis */
  text-decoration: none; /* Pas de soulignement */
  font-weight: bold; /* Épaisseur du texte */
  transition: background-color 0.3s ease; /* Animation lors du survol */
}

.product-button-dn5:hover {
  background-color: #004494; /* Couleur plus foncée au survol */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-item-dn5 {
      flex-direction: column; /* Colonne pour les petits écrans */
      align-items: center; /* Centrer les éléments */
  }

  .product-image-dn5 {
      margin-right: 0; /* Supprimer l'espace à droite */
      margin-bottom: 20px; /* Espace sous l'image */
  }

  .product-type-dn5 {
      font-size: 20px; /* Ajuster la taille du type de produit */
  }

  .product-description-dn5 {
      font-size: 14px; /* Ajuster la taille de la description */
  }
}



.product-detail-dn5 {
  background-color: #f4f4f4; /* Fond léger */
  padding: 60px 20px; /* Espacement supérieur et inférieur */
  text-align: center; /* Centrer le texte */
}

.product-detail-container-dn5 {
  max-width: 1200px; /* Largeur maximale */
  margin: 0 auto; /* Centrer horizontalement */
}

.product-title-dn5 {
  font-size: 36px; /* Taille de police pour le titre */
  font-weight: 700; /* Épaisseur du texte */
  color: #0056b3; /* Couleur du texte */
  margin-bottom: 40px; /* Espace sous le titre */
}

.product-detail-content-dn5 {
  display: flex; /* Utiliser le flex pour la mise en page */
  align-items: flex-start; /* Alignement en haut */
  justify-content: space-between; /* Espace entre les éléments */
}

.product-image-dn5 {
  flex: 1; /* Prendre 1/2 de l'espace disponible */
  margin-right: 20px; /* Espace à droite de l'image */
}

.image-dn5 {
  width: 100%; /* Largeur complète pour l'image */
  height: auto; /* Hauteur automatique */
  max-height: 450px; /* Hauteur maximale pour l'image (augmente légèrement) */
  object-fit: cover; /* Ajuster l'image pour qu'elle soit couverte */
  border-radius: 8px; /* Coins arrondis */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Ombre pour donner de la profondeur */
}

.product-description-dn5 {
  flex: 2; /* Prendre 2/3 de l'espace disponible */
  text-align: left; /* Alignement à gauche pour le texte */
}

.description-heading-dn5,
.specifications-heading-dn5,
.benefits-heading-dn5,
.usage-heading-dn5 {
  font-size: 24px; /* Taille de police pour les sous-titres */
  font-weight: 600; /* Épaisseur du texte */
  color: #333; /* Couleur du texte */
  margin-top: 30px; /* Espace au-dessus des sous-titres */
}

.description-text-dn5,
.benefits-text-dn5,
.usage-text-dn5 {
  font-size: 16px; /* Taille de la police pour la description */
  color: #666; /* Couleur du texte */
  line-height: 1.6; /* Hauteur de ligne pour lisibilité */
}

.specifications-list-dn5 {
  list-style-type: none; /* Pas de puces */
  padding: 0; /* Pas de padding */
}

.specifications-list-dn5 li {
  font-size: 16px; /* Taille de police pour les spécifications */
  color: #666; /* Couleur du texte */
  margin-bottom: 10px; /* Espace entre les spécifications */
}

.buy-button-dn5 {
  display: inline-block; /* Alignement du bouton */
  background-color: #0056b3; /* Couleur de fond du bouton */
  color: #fff; /* Couleur du texte */
  padding: 12px 25px; /* Espacement interne du bouton */
  border-radius: 5px; /* Coins arrondis */
  text-decoration: none; /* Pas de soulignement */
  font-weight: bold; /* Épaisseur du texte */
  margin-top: 20px; /* Espace au-dessus du bouton */
  transition: background-color 0.3s ease, transform 0.3s; /* Animation au survol */
}

.buy-button-dn5:hover {
  background-color: #004494; /* Couleur plus foncée au survol */
  transform: scale(1.05); /* Agrandissement au survol */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-detail-content-dn5 {
      flex-direction: column; /* Colonne pour les petits écrans */
      align-items: center; /* Centrer les éléments */
  }

  .product-image-dn5 {
      margin-right: 0; /* Supprimer l'espace à droite */
      margin-bottom: 20px; /* Espace sous l'image */
  }
}



/* PRODUITS */





/* Accueil*/








/*slider */

/* Conteneur du slider */
.slider-container-new {
  position: relative;
  width: 100%;
  height: 81vh;
  overflow: hidden;
  background-color: #06031b;
  z-index: 1; /* Assure que le slider est au-dessus des autres sections */
}

/* Slide */
.slide-new {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 75%;
  opacity: 0;
  z-index: 1;
  transition: left 1.2s ease, opacity 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.active-new {
  left: 0;
  opacity: 1;
  z-index: 2;
}

/* Image du slide */
.slide-image-new {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(50%);
  filter: blur(0px); /* Appliquer le flou */
}

/* Contenu du slide */
.slide-content-new {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  text-align: left;
  animation: fadeInUp 1.5s ease forwards;
}

/* Titre */
.slide-title-new {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Horizon', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: slideInLeft 1s forwards;
}

.slide-description-new {
  font-size: 24px;
  margin-bottom: 30px;
  max-width: 60%;
  line-height: 1.5;
  opacity: 0;
  animation: slideInLeft 1.5s forwards;
}

/* Boutons */
.slide-buttons-new {
  margin-top: 20px;
}

.btn-new {
  padding: 15px 40px;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.637);
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-new:hover {
  background-color: #18064cd8;
  color: #fff;
  transform: translateY(-5px);
}

/* Boutons de navigation manuelle */
.nav-btn-new {
  position: absolute;
  top: 50%;
  padding: 20px;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.nav-btn-new:hover {
  color: rgba(255, 255, 255, 1);
}

.prev-btn-new {
  left: 10px;
  transform: translateY(-50%);
}

.next-btn-new {
  right: 10px;
  transform: translateY(-50%);
}

/* Animation keyframes */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-title-new {
    font-size: 50px;
  }

  .slide-description-new {
    font-size: 18px;
  }

  .btn-new {
    font-size: 16px;
    padding: 10px 20px;
  }
}










/* Slider Style */
.hero-slider-new {
  position: relative;
  width: 100%;
  height: 58vh;
  overflow: hidden;
  background-color: #000;
}


@media screen and (max-width: 768px) {
  .hero-slider-new {
    width: 100%;
    height: 43vh;
  }
}

.slide-new {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, left 1s ease;
  opacity: 0;
}

.slide-new.active {
  left: 0;
  opacity: 1;
}

.background-img-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58vh;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: -1;
  transform: scale(1.05);
  transition: transform 1s ease;
}



@media screen and (max-width: 768px) {
  .background-img-new {
    width: 100%;
    height: 45vh;
  }
}


.content-new {
  text-align: left;
  color: #fff;
  max-width: 90%;
  padding-top: 100px;

}

@media screen and (max-width: 768px) {
  .content-new{
    padding-top: 0px;
  }
}


.title-new {
  font-size: 2.9em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  animation: fadeInDown 1.5s ease;
 

}


@media screen and (max-width: 768px) {
  .title-new{
    font-size: 1.5em;
   
  }
}


.description-new {
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 800;
  margin-bottom: 25px;
  animation: fadeInUp 1.5s ease 0.5s;
  

 
}


@media screen and (max-width: 768px) {
  .description-new{

    font-size: 0.8em;
  }
}




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

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.buttons-new {
  display: flex;
  gap: 15px;
  justify-content: left;

}

.cta-btn-new {
  padding: 10px 20px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffd700;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cta-btn-new:hover {
  background: #133279;
  color: #000000;
}

.secondary-btn {
  background: #fff;
  color: #333;
  border: none;
}

.play-btn-new {
  font-size: 1.5em;
  padding: 0 10px;
  background: rgba(255, 215, 0, 0.8);
  color: #000;
  border-radius: 50%;
  cursor: pointer;
}

.play-btn-new:hover {
  background: #ffd700;
}



.mot-du-dg {
  background-color: #ffffff;
  padding: 0px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  
}

.titre {
  font-size: 32px;
  font-weight: 900;
  color: rgb(39, 39, 109);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}







/* Section Services -ml */
.services-ml {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.services-container-ml {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title-ml {
  font-size: 2.8rem;
  color: #03274f;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-intro-ml {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid-ml {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item-ml {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
}

.service-item-ml:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-image-ml {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info-ml {
  padding: 20px;
}

.service-title-ml {
  font-size: 1.5rem;
  color: #007BFF;
  margin-bottom: 10px;
}

.service-description-ml {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid-ml {
      flex-direction: column;
      gap: 20px;
  }

  .service-item-ml {
      width: 100%;
  }
}





/* Conteneur des deux divs */
.mot-du-dg-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1070px;
  margin: 0px auto;
}

/* Style de l'image du DG */
.image-dg {
  bottom: 50px;
  flex: 1;
  position: relative;
  height: 470px;
  background-color: #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

}

.image-dg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.directeur-nom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
}

/* Hover effect sur l'image */
.image-dg:hover img {
  transform: scale(1.1);
  filter: blur(5px);
}

.image-dg:hover .directeur-nom {
  opacity: 1;
}

/* Style du texte */
.texte-dg {
  flex: 1;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.texte-dg .texte {
  font-size: 1em;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  font-family: 'Roboto', sans-serif;
}

.texte-dg .signature {
  font-size: 1.2em;
  font-style: italic;
  color: #666;
}

/* Style du texte au survol */
.texte-dg:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Style responsive */
@media (max-width: 768px) {
  .mot-du-dg-content {
      flex-direction: column;
      text-align: left;
  }
  
  .image-dg {
      height: 200px;
      margin-top: 60px;
  }

  .texte-dg {
      padding-left: 0;
  }

  .titre {
      font-size: 1.7em;
  }

  .directeur-nom {
      font-size: 2em;
  }
}







.info-section-ab {
  background-color: rgb(40, 40, 140);
  color: #fff;
  padding: 50px;
  text-align: center;
}

.info-content-ab h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.info-content-ab p {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.info-buttons-ab {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.contact-btn-ab, .quote-btn-ab {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  font-size: 1em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn-ab:hover, .quote-btn-ab:hover {
  background-color: #fff;
  color: rgb(11, 11, 83);
}



/* Accueil*/











/* Apropos de nous */


.section-partenariat {
  position: relative;
  background-image: url('https://www.lansard.fr/photos/sliders/pages/sliderpage2_102_fr.jpg'); /* Remplacez par votre image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Effet de parallaxe */
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.partenariat-overlay {
  background: rgba(0, 0, 0, 0.589); /* Overlay semi-transparent */
  padding: 40px;
  max-width: 80%;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

/* Titre et texte stylisés */
.partenariat-titre {
  font-size: 3em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #e0e0e0;
  animation: slideUp 1s forwards ease-out;
  opacity: 0;
}

.partenariat-texte {
  font-size: 1.4em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #c0c0c0;
  opacity: 0;
  animation: slideUp 1.3s forwards ease-out;
}

/* Bouton raffiné */
.partenariat-btn {
  font-size: 1.2em;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: slideUp 1.5s forwards ease-out;
}

.partenariat-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .partenariat-titre {
      font-size: 2em;
  }
  
  .partenariat-texte {
      font-size: 1em;
  }

  .partenariat-btn {
      font-size: 1em;
      padding: 10px 25px;
  }
}



/* Apropos de nous */

/* Section de titre de page */

.page-title-section {
  position: relative;
  background-image: url('https://www.lansard.fr/photos/sliders/pages/sliderpage2_102_fr.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-title-overlay {
  background: rgba(0, 0, 0, 0.5); /* Overlay semi-transparent */
  padding: 0px;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.page-title {
  font-size: 3em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  color: #e0e0e0;
  animation: slideDown 1s forwards ease-out;
  opacity: 0;
}

.page-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin-top: 10px;
  color: #d0d0d0;
  opacity: 0;
  animation: slideDown 1.3s forwards ease-out;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

  .page-subtitle {
      font-size: 1.1em;
  }
}


/* Section de titre de page */



/*contact*/



.location-section-gr1 {
  padding: 20px 0px;
  text-align: center;
  background-color: #ffffff;
}

.location-section-gr1 h2 {
  font-size: 24px;
  color: rgb(11, 11, 83);
  margin-bottom: 10px;
}

.location-section-gr1 p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555555;
}

.map-container-gr1 iframe {
  width: 100%;
  max-width: 900px;
  height: 300px;
  border: none;
  border-radius: 0px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/*contact*/











/*nouvel reforme*/


/* Section principale */
.about-section-com-p1 {
  background: #ffffff; /* Fond blanc */
  padding: 50px 10px 10px; /* Espacement vertical et horizontal */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Conteneur du contenu */
.about-container-com-p1 {
  max-width: 1200px; /* Largeur maximale de la section */
  text-align: center; /* Centrer le contenu */
  padding: 0 60px; /* Espacement horizontal interne */
}

/* Titre principal */
.about-title-com-p1 {
  font-size: 52px;
  font-weight: 800;
  color: rgb(11, 11, 83); /* Couleur principale */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Texte descriptif */
.about-text-com-p1 {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Texte gris foncé */
  font-weight: 600;
  margin: 0 auto 40px; /* Centrage et espacement en bas pour le bouton */
  max-width: 1000px;
}

/* Bouton */
.about-btn-com-p1 {
  display: inline-block;
  padding: 15px 30px;
  background-color: rgb(237, 51, 66); /* Couleur principale */
  color: #fff; /* Couleur du texte */
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn-com-p1:hover {
  background-color: #0a58ca;
  transform: translateY(-3px); /* Léger déplacement */
}

/* Responsive */
@media (max-width: 768px) {
  .about-title-com-p1 {
    font-size: 36px;
  }
  .about-text-com-p1 {
    font-size: 18px;
  }
  .about-btn-com-p1 {
    padding: 12px 20px;
    font-size: 14px;
  }
}











.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  width: 100%;
}

.section-divider .line {
  width: 40%;
  height: 2px; /* Épaisseur de la ligne */
  background: rgb(11, 11, 83);
  border-radius: 10px; /* Coins arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Ombre subtile */
}

.double-triangle {
  display: flex;
  flex-direction: column; /* Aligne les triangles verticalement */
  align-items: center;
  justify-content: center;
  margin: 0 -4px; /* Colle les triangles aux lignes */
}

.triangle {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.triangle-up {
  border-bottom: 20px solid #e34d2f; /* Couleur du triangle supérieur */
}

.triangle-down {
  border-top: 20px solid #1b0953; /* Couleur du triangle inférieur */
  margin-top: -4px; /* Ajuste l'espacement pour coller les triangles */
}






.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  background-color: #fff; /* Arrière-plan blanc */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Ombre subtile */
  margin-bottom: 40px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px; /* Assure que l'image reste dans des proportions harmonieuses */
}

.product-description {
  flex: 1;
  padding: 0 40px;
  max-width: 50%;
}

.product-description h2 {
  font-size: 3em;
  color: #0078d7;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-description p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-description .btn {
  padding: 15px 30px;
  background-color: #0078d7;
  color: white;
  border: none;
  border-radius: 5px; /* Bordure douce pour le bouton */
  font-size: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-description .btn:hover {
  background-color: #005bb5;
}





.medical-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 30px;
  background-color: #f9f9f9;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 40px;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 450px;
  border-radius: 10px;
}

.product-description {
  flex: 1;
  padding: 30px;
  max-width: 50%;
  border-left: 3px solid #0078d7; /* Bordure de séparation entre image et description */
}

.product-description h2 {
  font-size: 2.8em;
  color: #1b076c;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.product-description p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
}

.product-options {
  display: flex;
  gap: 15px;
}

.product-options .btn-option {
  padding: 14px 28px;
  background-color: #0f0654;
  color: white;
  border: 2px solid #0078d7;
  border-radius: 50px;
  font-size: 1.1em;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-options .btn-option:hover {
  background-color: #26084d;
  transform: translateY(-2px);
}

.product-options .btn-option:active {
  background-color: #10055d;
  transform: translateY(2px);
}






#nos-services {
  background-color: #ffffff;
  padding: 50px 0;
  text-align: center;
}



.service-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 100px;
}

.service-item {
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 25px;
  text-align: center;
  width: 30%;
  min-width: 250px;
  border-radius: 0px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item:nth-child(odd) {
  background-color: #f8f8f8;
}

.service-icon-container {
  margin-bottom: 20px;
  background-color: #007bff;
  padding: 20px;
  border-radius: 0px;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.service-name {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .service-list {
      flex-direction: column;
      align-items: center;
  }

  .service-item {
      width: 80%;
  }
}



