 @media (max-width: 991.98px) {
    .navbar-collapse.collapse {
        transition: none !important;
    }

    /* Style for all menu items except logos */
    .navbar-collapse .mod-menu > li:not(.item-109):not(.item-121) {
        background-color: #061a1c;
        border-radius: 10px;
        margin: 8px 0;
        padding: 5px 5px;
        opacity: 0;
        /*transition: opacity 0.2s ease;*/
    }

    .navbar-collapse.show .mod-menu > li:not(.item-109):not(.item-121) {
        opacity: 1;
    }

    /* Common link style */
    .navbar-collapse.show .mod-menu li:not(.item-109):not(.item-121) a {
        padding: 10px 10px;
        color: #fff;
        text-decoration: none;
        display: block;
    }

    .navbar-collapse.show .mod-menu li:not(.item-109):not(.item-121) a:hover {
        opacity: 0.8;
    }

    /* 👇 Login link (item-105) should stay #03bfd7 */
    .navbar-collapse.show .item-105 a {
        color: #03bfd7 !important;
    }
}

.container-header .container-nav {
    position: absolute;
    top: 9px;/*was 16px*/
}


.navbar-brand {
  /*display: block;*/
  margin: 0 auto;
  /*text-align: center;*/
}

/*how to login gedeelte*/
.faq-section {
  color: #ffffff;
  background-color: #003333;
  padding: 40px;
  border-radius: 10px;
  animation: fadeInPage 1s ease-in;
}

.faq-section .intro {
  margin: 0 auto 40px;
  animation: fadeIn 1.5s ease-in-out;
}

.faq-item {
  margin-bottom: 60px;
  position: relative;
}

/* Questions */
.faq-item .question {
  background-color: #ffffff;
  color: #333;
  padding: 20px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 auto 15px;
  position: relative;
  opacity: 0;
  animation: fadeSlideIn 1s ease forwards;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Answers */
.faq-item .answer {
  background: linear-gradient(135deg, #4db6ac, #00796b);
  color: #fff;
  padding: 24px 28px;
  border-radius: 25px;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Speech bubble arrow under question */
.faq-item .question::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 40px;
  border-width: 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

.faq-item .answer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #00796b transparent;
}

/* Icon inside question and answer */
.faq-item .question .icon,
.faq-item .answer .icon {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  vertical-align: middle;
}

/* Icon alignment for multiline answer */
.faq-item .answer .icon {
  float: left;
  margin-top: 4px;
}
.faq-item .answer p {
  margin-left: 30px;
}

/* Sequential animation delays */
.faq-item:nth-of-type(1) .question { animation-delay: 0.5s; }
.faq-item:nth-of-type(1) .answer  { animation-delay: 1.5s; }

.faq-item:nth-of-type(2) .question { animation-delay: 2.5s; }
.faq-item:nth-of-type(2) .answer  { animation-delay: 3.5s; }

.faq-item:nth-of-type(3) .question { animation-delay: 4.5s; }
.faq-item:nth-of-type(3) .answer  { animation-delay: 5.5s; }

/* Keyframes */
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*how to login eindig hier*/
.heading-with-line {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}

.underline {
    width: 200px;
    height: 10px;
    background: linear-gradient(to right, #1e90ff, #a6b53a);
    border-radius: 10px;
    margin: 5px auto 20px; 
}

.play-button::before {
  content: "▶"; 
  margin-right: 8px;
}

@media (min-width: 768px) { /* Applies to tablets and larger screens */
  .hero-btn {
    border: 2px solid white !important;
    color: white;
    align-self: flex-start;
  }
}

.hero-btn {
    border: 2px solid white !important;
    color: white;
    /* Mobile default: center alignment */
    align-self: center;
}

@media (min-width: 768px) {
    .hero-btn {
        /* Larger devices: align to start (left) */
        align-self: flex-start;
    }
}

.image-wrapper {
    border: 8px solid darkgrey;
    max-width: 100%;
  }

#cf_1 {
    border: 3px solid darkgrey;
  border-radius:20px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.metismenu-item.item-105{
  color:#03bfd7;
  border:2px solid white;
  border-radius: 5px;
  padding: 0px 10px !important;
}

.team-card {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Delay animation for a cascading effect */
        .team-card:nth-child(1) { animation-delay: 0.2s; }
        .team-card:nth-child(2) { animation-delay: 0.4s; }
        .team-card:nth-child(3) { animation-delay: 0.6s; }

        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover Effect */
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease-in-out;
        }

        /* Profile Image Styling */
        .team-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #1e90ff;
        }

        /* Card Styling */
        .team-card {
            border: none;
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease-in-out;
        }

        /* Name and Role Styling */
        .team-card h5 {
            font-weight: bold;
            margin-top: 10px;
        }

        .team-card p {
            margin-bottom: 5px;
            color: #555;
        }

/* Section Title Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Gradient Underline */
.section-title::after {
    content: "";
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, #1e90ff, #a6b53a);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Subtitle Styling */
.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto;
}

.custom-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.banner-text {
    border-style: solid;
    border-width: 12px 0px 0px 12px;
    border-color: #83D032;
    padding: 10px 10px 10px 30px;
}

div.mod-languages a {
    color: white;
}


.cards-highlight{
  color:#aac02c;
}

.custom-highlight {
    color: #03bfd7; 
}

.free-promo-section {
    /*margin: 50px;*/
  background-color: #000000;
}

.highlight {
    color: #03bfd7; /* Groen kleur */
}

.btn-signup {
    display: inline-block;
    background-color: #061a1c;
    color: #fff;
    font-weight: bold;
    padding: 12px 24px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn-signup:hover {
    background-color: #acf84b;
}

.footer a:not(.btn), .footer .btn-link {
    color: #03bfd7;
}

.hero-overlay {
    min-height: 100vh;
    /*align-items: center;*/
    background-color: rgba(0, 0, 0, 0.4); 
  /*padding-left:0;
  padding-right:0;*/
}

.cta-button:hover {
    background:#acf84b;
  color: black;
}

.hero-btn {
  border: 2px solid white !important;
  color:white;
}

.fullwidth {
    margin-left: calc(-50vw + 50% + 10px);
    margin-right: calc(-50vw + 50%);
    max-width: calc(100vw - 20px);
    padding-top: 0px;
    padding-bottom: 0px;
}

/*Video*/
.video-container {
    width: 100%;
    height: 100vh; 
    overflow: hidden;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

/* Showcase Card */
.showcase-card {
    /*border-radius: 10px;*/
    /*color: white;*/
    height: 350px;
    /*align-items: flex-end;*/
    /*position: relative;*/
  }

/* Hover Effects */
.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
   opacity: 0.9;
}

a:not([class]) {
    text-decoration: none;
}

/* Content Styling */
.showcase-card .content {
    /*position: absolute;
    left: 0px;
    right: 0px;*/
    color: white;
    /*padding:10px;*/
    z-index: 2;
  background: rgba(0, 0, 0, 0.6);
}

.showcase-card .content h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.showcase-card .content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Knoppies */
.showcase-card .action-button {
    background-color: #1e90ff;
    color: white;
    padding: 10px 15px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.showcase-card .action-button:hover {
    background-color: #a6b53a;
}

/*Die span*/
.team-section {
    text-align: center;
    /*margin: 40px auto;*/
    padding: 42px;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.2rem;
}

.cta-link {
    font-weight: bold;
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.team-members {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #222;
    margin: 10px 0;
}

.team-member p {
    font-size: 0.9rem;
    color: #555;
    margin: 5px 0;
}

.team-member a {
    /*color: #007BFF;*/
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}

/* Contact Button */
.contact-btn {
    background: #061a1c;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background: #acf84b;
  color:#061a1c;
}

/*trusted banner*/
.trusted-banner {
    /*background-color: #031b17;
    color: #ffffff;*/
    padding: 20px;
    text-align: center;
  margin-bottom: -8px;
    /*margin-left: -33px;
    margin-right: -32px;*/
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*gap: 15px;*/ 
}
.trusted-logos img {
    max-width: 120px; 
}



/*navbar*/
.container-header {
    /*align-items: center;*/
    position: fixed ! Important;
    width: 100%;
    z-index: 1000;
    top: 0;
    background: linear-gradient(180deg, rgba(49, 49, 49, 0.9) 0%, rgba(49, 49, 49, 0.8) 30%, rgba(49, 49, 49, 0.6) 60%, rgba(49, 49, 49, 0.3) 100%);
    /*box-shadow: inset 0 5px 5px #00000008;*/
  height:80px;
  
}



/*footer*/
.footer {
    color: #fff;
    background-color: #313131 ! Important;
  background-image: none; 
}
address {
  line-height: 14px;
}