 html, body {
      height: 100%;
      margin: 0;
    }

    body {
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
    }
    
    /* Styles pour le footer collé */
    html, body {
      height: 100%;
      margin: 0;
    }

    body {
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
    }

    .footer {
      background: linear-gradient(135deg, #192f59, #2c3e50);
      color: white;
      padding: 40px 0;
    }

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

    .footer a:hover {
      color: #ffc107;
    }

    .footer .social-icons a {
      font-size: 1.5rem;
      margin-right: 15px;
      transition: transform 0.3s ease;
    }

    .footer .social-icons a:hover {
      transform: translateY(-5px);
    }

    .footer .input-group {
      max-width: 300px;
    }

    .footer .form-control {
      border: none;
      border-radius: 5px 0 0 5px;
    }

    .footer .btn-primary {
      background-color: #ffc107;
      border: none;
      border-radius: 0 5px 5px 0;
      color: #192f59;
      transition: background-color 0.3s ease;
    }

    .footer .btn-primary:hover {
      background-color: #e0a800;
    }
  
      .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
      }

      .navbar-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .carousel-item img {
        filter: brightness(0.7);
      }

      .carousel-caption {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 10px;
      }
      
      
      /* Styles de base pour les animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

 
    /* Styles pour le footer collé */
    

    .footer {
      background: linear-gradient(135deg, #192f59, #2c3e50);
      color: white;
      padding: 40px 0;
    }

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

    .footer a:hover {
      color: #ffc107;
    }

    .footer .social-icons a {
      font-size: 1.5rem;
      margin-right: 15px;
      transition: transform 0.3s ease;
    }

    .footer .social-icons a:hover {
      transform: translateY(-5px);
    }

    .footer .input-group {
      max-width: 300px;
    }

    .footer .form-control {
      border: none;
      border-radius: 5px 0 0 5px;
    }

    .footer .btn-primary {
      background-color: #ffc107;
      border: none;
      border-radius: 0 5px 5px 0;
      color: #192f59;
      transition: background-color 0.3s ease;
    }

    .footer .btn-primary:hover {
      background-color: #e0a800;
    }
 
 /* Styles pour les compteurs */
.counter h3 {
  font-size: 4rem;
  font-weight: bold;
  color: #192f59;
  margin-bottom: 10px;
}

.counter p {
  font-size: 1.25rem;
  color: #666;
} 

/* Styles pour les cartes de témoignages */
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  border: 3px solid #192f59;
}

.card-title {
  font-size: 1.5rem;
  color: #192f59;
}

.card-text {
  font-size: 1rem;
  color: #666;
}
    