body, html {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    height: 100vh;
    margin: 0;
    padding: 0;
  }

.conneqt-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
  }

.section-1 {
    background-color: #304a59;
}

.nav-item{
  font-size: large;
  color:black;
  transition: color 0.3s ease;
}

.card {
    border: none;
}


.card:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .card-img-top {
    height: 100px;
    object-fit: contain;
  }

  .social-link {
    color: #333;
    transition: color 0.3s ease;
  }

  .social-link:hover {
    color: #95c11f;
  }

  .nav-link:hover{
    color: #95c11f;
  }

  .scrolling-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }

  .scrolling-wrapper::-webkit-scrollbar {
    height: 8px;
  }

  .scrolling-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
  }

  .scrolling-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  .newsletter-section {
    background-color: #2f4858;
  }


  .logo-carousel {
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    width: calc(200px * 10); /* nombre de logos x largeur */
    animation: scroll 20s linear infinite;
  }

  .logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .logo-item img {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
  }

  .logo-item img:hover {
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


  .timeline-alt {
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
  }
  
  .timeline-alt::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
  }
  
  .timeline-item .timeline-icon {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px #dee2e6;
  }
  
  .timeline-item.left {
    left: 0;
    text-align: right;
  }
  
  .timeline-item.left .timeline-icon {
    right: -25px;
  }
  
  .timeline-item.left .timeline-content {
    margin-right: 70px;
  }
  
  .timeline-item.right {
    left: 50%;
    text-align: left;
  }
  
  .timeline-item.right .timeline-icon {
    left: -25px;
  }
  
  .timeline-item.right .timeline-content {
    margin-left: 70px;
  }
  
  .timeline-content h5 {
    font-weight: bold;
  }
  
  .timeline-content p {
    color: #6c757d;
  }

  .conneqt-title {
    position: relative;
    font-weight: bold;
    padding-top: 20px;
    margin-top: 20px;
    text-transform: uppercase;
  }
  
  .conneqt-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 2px;
    background-color: #95c11f; /* Couleur du trait */
    margin-bottom: 10px;
  }

  .map iframe {
    border-radius: 8px;
  }
  
  .form-row {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-weight: bold;
  }
  
  .form-control {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .btn {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
  }
  
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  
    .form-group {
      width: 100%;
    }
  }

  .section-contact {
    background-color: #2f4858;
  }

  .label {
    color: #fff;
  }


  @media (max-width: 991px) {
    .navbar-collapse {
        background-color: #e6eaec;
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }
}


.navbar {
  z-index: 1055 !important; /* plus haut que les éléments Bootstrap classiques */
  position: relative; /* nécessaire pour que z-index fonctionne */
}