html, body {
  scroll-behavior: smooth;
}

p, h1, h2, h3, h4, h5, h6 {
  caret-color: transparent;
}

:root {
  --primary-color: rgb(248, 147, 54);
}

    body {
        font-family: 'Inter', sans-serif;
    }
    p {
      font-size: 24px;
    }

    h2 {
      font-size: clamp(1.75rem, 3vw + 1rem, 3.5rem) !important;
    }

    h1 {
      font-size: clamp(1.75rem, 3vw + 1rem, 3.5rem) !important;
    }

    .highlight-blue {
      color: #0070f3;
    }
    .cta-button {
      background-color: #0B8A0F;
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      text-decoration: none;
      border: none;
    }
    .cta-button:hover {
      background-color: #1cbb16;
      text-decoration: none;
      color: #fff;
    }
    .hero-section {
      text-align: center;
      padding: 60px 20px 40px;
    }
    .image-preview {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
    }
    .logos img {
      max-height: 40px;
      margin: 0 15px;
      opacity: 0.6;
    }
    .testimonials-bar {
      background-color: #e9f7ff;
      padding: 10px;
      font-size: 14px;
      white-space: nowrap;
      overflow-x: auto;
    }

    .navbar-brand {
        font-weight: bold;
    }

    .slogan {
        font-weight: bold;
        font-size: clamp(1.75rem, 3vw + 1rem, 3.5rem) !important;
    }
    .sloganblue{
        color: var(--primary-color);
        font-size: clamp(1.75rem, 3vw + 1rem, 3.5rem) !important;
    }

    .btnlogin{
        border: 1px solid lightgrey;
        color: #0B1215;
        border-radius: 7px;
    }

    .btnlogin:hover {
        text-decoration: none;
        color: var(--primary-color);
    }

    .testimonials-bar {
        background-color: var(--primary-color);
        color: #fff;
    }

    .txtclick {
        color: var(--primary-color);
        text-decoration: underline;
        font-size: 23px;
    }

    .txtlink {
      color: var(--primary-color);
      text-decoration: underline;
      font-weight: 600;
      font-size: 23px;
    }

    .testimonials-bar {
  transform: skewY(1.5deg);
  margin-top: 1%;
  margin-bottom: 5%;
}

.checkmark {
  background-color: green;
}

  .timeline .step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .timeline .col-md-2 {
    position: relative;
  }
  .timeline .col-md-2::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
  }
  .timeline .col-md-2:last-child::after {
    display: none;
  }

  h2[id] {
  scroll-margin-top: 100px; /* pas dit aan aan de hoogte van je sticky header */
}

  .section-light {
    background-color: #f8f9fa;
    padding: 80px 0;
  }

  .section-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #222;
    position: relative;
    display: inline-block;
  }

  /* Lijnaccent onder titels */
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 12px auto 0 auto;
    border-radius: 2px;
  }

  /* Subtiele fade-in animatie bij scroll */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.carousel-img {
  display: block;
  max-width: 1100px;     /* Beperk de grootte op grote schermen */
  width: 100%;          /* Schaal netjes binnen de container */
  height: auto;         /* Behoud de aspectratio */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}


/* Kleine ronde pijltjes */
.custom-carousel-control {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(200, 200, 200, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Schuif de knoppen iets naar binnen, meebewegend bij kleinere schermen */
.carousel-control-prev.custom-carousel-control {
    left: 15%;
}
.carousel-control-next.custom-carousel-control {
    right: 15%;
}

.custom-carousel-control:hover {
    background-color: rgba(150, 150, 150, 0.8);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50%;
}

.team-foto {
  width: 200px;              /* vaste breedte */
  height: 200px;             /* vaste hoogte */
  object-fit: cover;         /* snijdt bij om te vullen zonder vervormen */
  border-radius: 50%;        /* rond maken */
  margin: 0 auto 15px auto;  /* centreren en ruimte eronder */
  display: block;
}
