html body{
    margin: 0;
    padding: 0;
    border: 0;
    background-color:#000 ;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/*----*/
.progress-wrap {
	position: fixed;
	right: 16px;
	bottom: 10px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 4px rgba(255,255,255,0.2);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	/*content: '\e84b';*/
  content:'▲';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #f29930;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 1;
  color: red;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: #f29930;
	stroke-width: 6px;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
/* Responsive design adjustments for smaller screens */

/* For tablets and smaller screens */
@media (max-width: 768px) {
  body {
      font-size: 14px;
      padding: 10px;
  }
  header h2 {
      font-size: 1.8em;
  }
  nav ul {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
  }
  nav a {
      font-size: 1.2em;
      padding: 10px;
  }
  section {
      padding: 15px;
      margin: 15px auto;
  }
  footer {
      padding: 15px;
  }
}

/* For smartphones and very small screens */
@media (max-width: 480px) {
  header h2 {
      font-size: 1.5em;
  }
  nav a {
      font-size: 1em;
      padding: 8px;
  }
  section {
      padding: 10px;
      margin: 10px auto;
  }
  footer {
      padding: 10px;
  }
}

.container h1{
    color: white;
    font-size: 2rem;
    text-align: center;
}
/*------------------------*/

.modal-content {
  text-align: left;
}

.partenaire a {
  text-align: left;
  color: #747474;
  
}
.partenaire span {
  color: #878787;
  margin-left: 5%;
}

#companyExpertise h3 {
    font-size: 20px;
    line-height: 33px;
    margin-left: 0;
    word-break: normal
}

.btn-details {
    /* Style de base */
    background-color: #f29b43; /* Votre orange */
    color: #ffffff;            /* Texte blanc */
    font-family: inherit;      /* Garde la police du site */
    font-size: 12px;
    font-weight: 100;
    text-transform: uppercase; /* Donne un aspect plus pro */
    letter-spacing: 0.5px;
    
    /* Dimensions et espacement */
    padding: 5px 10px;
    border: none;
    border-radius: 4px;        /* Arrondi léger pour matcher vos cartes */
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0 0 0;      /* Centre le bouton avec un peu d'espace au-dessus */
}

.btn-details:hover {
    background-color: #333333; /* Change en noir/gris foncé au survol pour le contraste */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Petit effet d'ombre au survol */
    transform: translateY(-2px); /* Soulève légèrement le bouton */
}

.chevron {
    margin-left: 8px;
    font-size: 2em;
    font-weight: 100;
    line-height: 0.1;
}
/* On garde votre .btn-details tel quel pour la carte */

.btn-back {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #f29b43; /* Votre orange */
    border: 1px solid #f29b43;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-back:hover {
    background-color: rgba(242, 155, 67, 0.1); /* Léger fond orange au survol */
    transform: translateX(-5px); /* Petit mouvement vers la gauche pour l'effet retour */
}
.vitrine-section {
    padding: 80px 0;
    background-color: #ffffff; /* Alterner avec #f8f9fa pour chaque section si besoin */
}

.vitrine-section h2 {
    color: #035aa6;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}
.vitrine-section p{
    font-weight: 400;
    text-align: justify;
}

.text-orange {
    color: #f29b43;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* Effet au survol des images pour le côté "pro" */
.vitrine-section img {
    transition: transform 0.4s ease;
    max-width: 30rem;
    height: auto;
}
.vitrine-section img:hover {
    transform: scale(1.02);
}
.vitrine-section img{
    display: block;
    margin-left: 15%; 
    margin-right: 15%;
    
}
.h6 {
    color: #035aa6;
}
.col-6 {
    color: #f29930;
}

.footer-link-highlight {
    color: #f29930; /* Votre orange dynamique */
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.footer-link-highlight:hover {
    color: #035aa6; /* Passage au bleu Alpidev au survol */
    transform: scale(1.1); /* Grossissement de 10% */
    text-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Légère profondeur */
}

/*-------------*/
/* Container du menu déroulant pour les pages internes */
.alpi-has-children-inner {
    position: relative;
    display: inline-block;
}

/* On réutilise la classe alpi-dropdown avec quelques ajustements */
.alpi-has-children-inner .alpi-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc685;
    min-width: 180px;
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0; /* Un petit espace avec le haut */
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    display: none; 
    z-index: 9999;
    border-top: #f29930 solid 3px;
    border-radius: 4px;
    z-index: 9999;
}

/* Affichage au survol */
.alpi-has-children-inner:hover .alpi-dropdown {
    display: block;
}

/* Style des liens dans le carré blanc */
.alpi-has-children-inner .alpi-dropdown li {
    display: block;
    width: 100%;
}

.alpi-has-children-inner .alpi-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    text-align: left;
    transition: background 0.2s;
}

.alpi-has-children-inner .alpi-dropdown a:hover {
    background-color: #f8f8f8;
    color: #f29930 !important;
}

/* Petit triangle au dessus du menu (optionnel mais joli) */
.alpi-has-children-inner .alpi-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #f29930 transparent;
}
.alpi-has-children-inner::after {
    content: "";
    position: absolute;
    top: 100%; /* Part du bas du lien */
    left: 0;
    width: 100%;
    height: 20px; /* Ajustez cette hauteur selon l'espace vide que vous avez */
    display: block;
    z-index: 1; /* Pour être sûr qu'il soit sous le menu mais capte le survol */
}
/*-----footer----*/
/*--------------------*/

.footeur{
  padding-bottom: 10px;
  text-align: left;
  padding-left:10%;
  padding-top: 40px;
  overflow: hidden;
}

/* Container principal du footer */
.footeur {
    width: 100%;
    background-color: #f29930; /* Votre couleur de fond */
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.footer-brand-strong {
    font-size: 1.4rem !important;
    letter-spacing: normal;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
}

/* Chaque bloc du footer */
.footer-grid > div, 
.footer-grid > nav {
    flex: 1;
    min-width: 200px; /* Force l'empilement sur mobile */
}

/* Style des titres dans le footer */
.Colone1 strong, .footer-nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #035aa6;
}

/* Style des listes de navigation */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin:0;  
}

.footer-nav li {
    padding-top: 10px;
    
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #035aa6;
}

/* Bloc contact */
.footer-contact div {
    padding-top:  10px;
    
}
/* État normal du numéro de téléphone */
.footer-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-block; /* Indispensable pour que le grossissement fonctionne */
    transition: transform 0.3s ease, color 0.3s ease; /* Fluidité pour les deux effets */
}

/* État au survol (:hover) */
.footer-link:hover {
    color: #035aa6; /* Votre orange Alpidev */
    transform: scale(1.10); /* Grossit de 5% */
    text-decoration: none; /* Évite de souligner pour garder un aspect épuré */
}
/*-----*/
/* État normal du numéro de téléphone */
.fa-phone {
    color: #ffffff;
    text-decoration: none;
    display: inline-block; /* Indispensable pour que le grossissement fonctionne */
    transition: transform 0.3s ease, color 0.3s ease; /* Fluidité pour les deux effets */
}

/* État au survol (:hover) */
.fa-phone:hover {
    color: #035aa6; /* Votre orange Alpidev */
    transform: scale(1.10); /* Grossit de 5% */
    text-decoration: none; /* Évite de souligner pour garder un aspect épuré */
}
/* Réseaux Sociaux */
.Facebook a {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    color:#035aa6;
    text-decoration:none;
}
.Facebook a.social-facebook {
    font-size: 2.4rem;
}

.Facebook a.social-instagram {
    font-size: 2.4rem;
}
.Facebook a:hover {
    transform: translateY(-5px);
}

/* Barre des mentions légales */
.conditions {
    text-align: center;
    border-top: 1px solid #333;
    padding: 20px;
    font-size: 1rem;
    background-color: #1a1a1a;
}

.conditions a {
    color: #f29930;
    text-decoration: none;
}
.conditions p{
  color: #b6b6b6;
}
/*--------------------*/
.text-center h2 {
    font-size: 5vw;
    margin-bottom: 0px;
}
.landing {
    margin-bottom: 0px;

}
@media (min-width: 992px) {
  .landing {
    margin: 0px;
  }
}