
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }

.text-primary {
    color: #16A0BC !important;
}
.btn-primary {
    background-color: #16A0BC !important;
    border-color: #16A0BC !important;
}
.text-secondary, .bg-secondary {
    color: #f32159 !important;
}
.bg-info {
    background-color: #d4f1f4  !important;
}
button{
    color: white !important;
}
  .stats .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
  }
  
  .stats .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
  }
  
  .stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
  }
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-item {
    text-align: center;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    height: 100%;
  }
  
  .services .service-item .icon {
    color:white;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    font-size: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  }
  
  .services .service-item h3 {
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 22px;
    transition: 0.3s;
    position: relative;
  }
  
  .services .service-item h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background:  #189AB4;
    bottom: 0;
    left: calc(50% - 25px);
  }
  
  .services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover .icon {
    box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
  }
  
  .services .service-item:hover h3 {
    color: #189AB4;    /* Bleu clair apaisant */
  }
  
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  .featured-services .service-item:before {
    content: "";
    position: absolute;
    background: #189AB4;
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .featured-services .service-item .icon {
    margin-bottom: 10px;
  }
  
  .featured-services .service-item .icon i {
    color: #189AB4;
    font-size: 36px;
    transition: ease-in-out 0.3s;
  }
  
  .featured-services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .featured-services .service-item h4 a {
    color: #189AB4;
    transition: ease-in-out 0.3s;
  }
  
  .featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
  }
  
  .featured-services .service-item:hover h4 a,
  .featured-services .service-item:hover .icon i,
  .featured-services .service-item:hover p {
    color: white;
  }
  
  .featured-services .service-item:hover:before {
    background:#189AB4;
    inset: 0;
  }
  