 :root {
            --primary-color: #1f94c7;
            --primary-dark: #37a946;
            --secondary-color: #6c757d;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-color: #2c3e50;
            --border-color: #e1e8ed;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

             --fs-h1: clamp(1.75rem, 2.8vw, 2.75rem);
    --fs-h2: clamp(1.4rem, 2.1vw, 2.0rem);
    --fs-h3: clamp(1.25rem, 1.8vw, 1.75rem);
    --fs-h4: clamp(1.1rem, 1.4vw, 1.4rem);
    --fs-h5: clamp(1rem, 1.1vw, 1.15rem);
    --fs-h6: clamp(0.9rem, 1vw, 1rem);
    --fs-p: clamp(0.95rem, 0.9vw, 1.05rem);
}

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {   
			margin:0;
  font-family: "Asap", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
/* ----------------------------------
   Typography & Content Elements
---------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: "Asap", sans-serif;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    transition: var(--transition);
  
}

/* Headings */
h1 {
    font-size: var(--fs-h1);
   
    padding-bottom: 0.3em;
}

h2 {
    font-size: var(--fs-h2);
   
   
}

h3 {
    font-size: var(--fs-h3);
    
}

h4 {
    font-size: var(--fs-h4);
    
}

h5 {
    font-size: var(--fs-h5);
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h6 {
    font-size: var(--fs-h6);
    letter-spacing: 1px;
}

/* Paragraphs */
p {
    margin-bottom: 1.0em;
    font-size: var(--fs-p);
    line-height: 1.7;
}

/* Lists */
ul, ol {
    margin: 1em 0 1em 2em;
}

ul li, ol li {
    margin-bottom: 0.5em;
    transition: var(--transition);
}

ul li:hover, ol li:hover {
    
}
.mx_icon_spacing {
  margin-right: 8px;
  display: inline-block;
}
.mx_icon_spacing::before {
    display: inline-block; /* zorgt dat margin werkt */
    margin-right: 8px;     /* ruimte na het icoon */
	    color: var(--primary-color);
}
a {color: var(--text-color); text-decoration: none;}
a:hover {color:#999;}
.article-body.bootstrap-iso {
  position: relative;
  overflow: auto;
  scroll-behavior: smooth !important; /* "non" bestaat niet, dit is correct */
  -ms-overflow-style: none !important; /* verbergt scrollbars in IE/Edge */
  scrollbar-width: none !important; /* verbergt scrollbars in Firefox */
}

.article-body.bootstrap-iso::-webkit-scrollbar {
  display: none; /* verbergt scrollbars in Chrome, Safari, Opera */
}
.uniek-post-cont-hvr
 { background-color: rgba(0, 161, 218, 0.9) !important;
}
.uniek-post-anchor {
    margin: 25px auto;
    display: inline-block;
    width: auto;
    padding: 12px 15px;
    text-align: center;
    float: none;
    color: #000;
    text-decoration: none;
    background-size: 15px;
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 71, 34, 0.3);
    background: #6cc7de;
}
.uniek-post-anchor:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

/* Inline code */
code {
    background: #f3f9fc;
    color: var(--primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid var(--border-color);
}

/* Horizontal rule */
hr {
    border: 0;
    border-top: 2px solid var(--border-color);
    margin: 2em 0;
}


        .container, .container-blog {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
		
    position: relative;
        }

        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.98);
}
           
.main-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease, box-shadow 0.3s ease; /* vloeiende overgang */
  background: #fff; /* zodat hij niet transparant wordt */
}

/* Wanneer sticky actief wordt */
.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* optioneel, voor diepte */
}


        .top-bar {
            background: linear-gradient(
  135deg,
  #184493 0%,
  #5fc3d9 30%,
  #1c95a2 55%,
  #7bbe6c 80%,
  #249b3c 100%
);
            padding: 12px 0;
            color: white;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0px;
            flex-wrap: wrap;
        }

        .search-container {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-bar {
            position: relative;
            width: 100%;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 45px 10px 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            color: white;
            font-size: 0.95em;
            transition: var(--transition);
        }

        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .search-bar input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-1px);
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .search-bar button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.05);
        }

        .social-icons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
			text-decoration: none;
        }

        .social-icons a:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

.content {}
/* Custom UL styling */
.content ul {
    list-style: none;
    margin: 1em 0;
    padding-left: 0;
}

.content ul li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 0.5em;
}

.content ul li::before {
    content: "✔";
    position: absolute;
  left: 5px;
    top: 5px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
}

/* Content Section - zelfde effect als Why Choose Us */
.content {
  background: linear-gradient(to bottom, #ffffff, #f3f8fc);
 padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
  animation: floatBG 10s ease-in-out infinite alternate;
  z-index: 0;
}

/* Zorg dat de inhoud erboven blijft */
.content .container, .content .container-blog {
  position: relative;
  z-index: 1;
}



/* Ordered list markers */
ol li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Bestaande stijl behouden */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Nieuwe adviesknop */
.advies-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.advies-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .logo img {
          
		    max-height: 64px;
    width: 100%;
    transition: var(--transition);
    margin-top: 10px;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        

/* =========================
   HERO SLIDER WRAPPER
========================= */
.hero-slider {
    width: 100%;
    position: relative;
}

/* Swiper core fix */
.swiper-wrapper {
    align-items: stretch;
}

/* =========================
   SLIDES
========================= */
.swiper-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
}

/* image styling */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

/* =========================
   OVERLAY (jouw hero content)
========================= */
.slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: #fff;
    text-align: center;
    z-index: 2;
	    display: none;
}

/* titel */
.slider-overlay h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* tekst */
.slider-overlay p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 1em;
}

/* CTA button */
.slider-overlay .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-overlay .cta-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

/* =========================
   SWIPER NAVIGATION ARROWS
========================= */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* tablet */
@media (max-width: 1024px) {
    .slider-overlay {
        padding: 20px;
    }
}

/* mobiel */
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .slider-overlay h2 {
        font-size: var(--fs-h2);
    }
}
.hero-single {
    position: relative;
    height: 300px; /* smal, bovenin de contentpagina */
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color) 0%, #37a946 100%);
}

.hero-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-single {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color) 0%, #37a946 100%);
}

.hero-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-single .slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 511px;
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-single .slider-overlay h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-single .slider-overlay h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.hero-single .slider-overlay p {
    font-size: 1em;
    margin-bottom: 15px;
}





     /* Info Blocks */


.portfolio-item-image {
    height: 160px; /* vaste hoogte voor alle blokken */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.portfolio-item-image img {
    max-width: 144px;
    max-height: 144px;
    width: auto;
    height: auto;
    display: block;
}


.info-blocks {
    margin-top: 0px;
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-color), white);
    border-top: solid 15px #6cc7de;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 126px;
    align-items: stretch;
    margin-bottom: 40px;
}

/* tablet: 2 boven + 1 gecentreerd onder */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 .info-block:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center; /* 🔥 CENTREREN */
    }
}

/* mobiel: alles onder elkaar */
@media (max-width: 600px) {
	.portfolio-item-image {
    height:auto;

}
	
    .grid-3 {
		row-gap: 56px;
        grid-template-columns: 1fr;
    }

    .grid-3 .info-block:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
        justify-self: stretch;
    }
}

.info-block {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);

    display: flex;
    flex-direction: column;
    height: auto;
}

.info-block p:last-child {
    margin-top: auto;
}

.info-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin: 0 auto 25px;
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
    transition: var(--transition);
}

.info-block:hover .icon-circle {
    transform: rotateY(360deg);
}

.info-block h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-block p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* --- TEAM SECTIE --- */
.team-section {
    padding: 60px 20px;
   
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolommen op desktop */
    gap: 40px;
}

/* De Kaart */
.team-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* De Icoon/Foto placeholder */
.icon-gradient {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f94c7, #37a946);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--fs-h2);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(31, 148, 199, 0.2);
}

/* Tekst styling */
.team-card h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.job-title {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.team-card p {
    font-size: var(--fs-h5); /* Iets groter conform je p-stijl */
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 30px;
    /* Toon max 3 regels op de kaart */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* De Knop */
.btn-read-more {
    margin-top: auto;
    background: linear-gradient(to right, #72c6d9, #a3d9e6);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(114, 198, 217, 0.3);
    transition: var(--transition);
}

.btn-read-more:hover {
    background: linear-gradient(to right, #1f94c7, #72c6d9);
    box-shadow: 0 6px 15px rgba(31, 148, 199, 0.4);
	
}

/* --- MODAL (POPUP) STYLING --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.7); /* overlay */
    backdrop-filter: blur(5px);
}

/* --- CONTENT --- */
.modal-content {
    margin: 120px auto;
    padding: 50px;
    background-color: #fff;
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideIn 0.3s ease-out;

    /* SCROLL FIX (belangrijk) */
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /* scrollbar stabiliteit */
    scrollbar-gutter: stable;
    scrollbar-width: auto;
}

/* --- SCROLLBAR (Chrome / Edge) --- */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* --- ANIMATIE --- */
@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- CLOSE BUTTON --- */
.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: var(--secondary-color);
}

/* --- MOBILE --- */
@media (max-width: 850px) {
    .modal-content {
       
        padding: 20px;
        max-height: calc(100vh - 100px);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Intro Columns Section */
.intro-columns {
    background: linear-gradient(135deg, #184998 0%, #66c5dc 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/*.intro-columns::after {
  content: "";
    position: absolute;
    top: 0;
    right: -65px;
    width: 30%;
    height: 100%;
    background: url(../images/Meenderman_Beeldmerk_Def.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(-17deg);
    z-index: 1;
    pointer-events: none;
}*/




.duo-column-text {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.duo-left h3 > a,.duo-right h3 > a  {color:#ffffff;}

.duo-left, .duo-right {
  flex: 1;
}

.duo-left {
  max-width: 50%;
}

.duo-right {
  max-width: 50%;
}

@media (max-width: 768px) {
  .duo-column-text {
    flex-direction: column;
  }

  .duo-left, .duo-right {
    max-width: 100%;
	  width: 100%;
  }
}

.multi-column-text {
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1em;
}

@media (max-width: 992px) {
    .multi-column-text {
        column-count: 2;
        column-gap: 30px;
    }

}

@media (max-width: 600px) {
    .multi-column-text {
        column-count: 1;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .intro-item {
        padding: 30px 20px;
    }

    .intro-item h3 {
        font-size: 1.3em;
    }
}




        .btn-learn-more {
            display: inline-block;
            background: #6cc7de;
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85em;
            letter-spacing: 0.5px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(233, 71, 34, 0.3);
        }

        .btn-learn-more:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);color:#fff;
        }

        /* System Management */
        .system-management {
            padding: 80px 0 20px;
            background: white;   
			 border-top: solid 15px #6cc7de;
        }



.system-management .section-title h2 {color: var(--dark-color);}

        .section-title {
            text-align: center;
            margin-bottom: 0px;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--light-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            border-radius: 2px;
        }

        .system-management-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
			
        }

        .system-management-item {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border-color);
			
        }

        .system-management-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .system-management-item:hover::before {
            left: 100%;
        }

        .system-management-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .icon-box {
            width: 90px;
            height: 90px;
            background: white;
            color: var(--primary-color);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin: 0 auto 25px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .system-management-item:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-md);
        }

        /* Why Choose Us */
        .why-choose-us {
           background: linear-gradient(to bottom, #ffffff, #f3f8fc);
            color: black;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
.why-choose-us::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
    animation: floatBG 10s 
ease-in-out infinite alternate;
}


       

        .why-choose-us .section-title h2 {
            color: black;
        }

        .why-choose-us .section-title h2::after {
          
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;

        }

        .why-choose-us h3 {
           
            margin-bottom: 15px;
        }

        .why-choose-us p {
            color: #666;
            line-height: 1.8;
        }

/* Clients */
.our-clients {
    padding: 80px 0 20px;
    background: var(--light-color);
}
.our-clients h2 { 
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Logo Grid */
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
}

/* Witte vakjes rondom logo's */
.client-logos .logo-wrapper {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;  /* hoogte van vakje */
    width: 150px;   /* breedte van vakje */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optionele schaduw */
    transition: transform 0.3s;
    border-radius: 8px; /* afgeronde hoeken */
}

/* Logo styling */
.client-logos .logo-wrapper img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s, transform 0.3s;
}

.client-logos .logo-wrapper img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}


        /* Footer */

        .footer {
            background: linear-gradient(135deg, #184998 0%, #66c5dc 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3em;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 0.95em;
        }
.footer-col  a {color:#fff;}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Voeg vinkjes toe aan alle li behalve in .no-check */
.footer-col:not(.no-check) ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.footer-col:not(.no-check) ul li::before {
    content: "✔";           /* Vinkje */
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
    font-size: 1em;
    line-height: 1;
}



        .footer-col ul li i {
            margin-right: 12px;
          color:#fff;
            font-size: 1.2em;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 0.95em;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
        }

        .social-icons-footer {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-icons-footer a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3em;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
			text-decoration:none;
        }

        .social-icons-footer a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9em;
        }
.footer-bottom p span,.footer-bottom p span a  {font-size:11px; color:#ccc;}

/* maatwerk blog */

.uniek-post-cont-hvr {border-radius: 20px;}
/* FOTO links */
.uniek-top-cont li:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden; /* zorgt dat de afbeelding de afgeronde hoeken volgt */
}

/* TEKST rechts */
.uniek-top-cont li:nth-child(2) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
/* FOTO bovenaan */
.main-container-div-for-background .uniek-image-cont {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden; /* zorgt dat de afbeelding de ronde hoeken volgt */
}

/* TEKSTVAK onderaan */
.main-container-div-for-background .uniek-post-cont-col {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* optioneel: als er een hover-div overheen komt */
.main-container-div-for-background .uniek-post-cont-hvr {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.uniek-post-cont li
 { 
    border-radius: 20px;
}
figure > img {
    width: 100% !important;
    border-radius: 20px;
}
@media (max-width: 1450px) {

.hero-slider {
    position: relative;
    height: 650px;
	}
	
	.info-blocks {
   
	}
	
}


/* MOBIEL: onder elkaar, dus foto boven, tekst onder */
@media (max-width: 769px) {
  .uniek-top-cont li:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .uniek-top-cont li:nth-child(2) {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}


        /* Responsive */
        @media (max-width: 992px) {
    
	 .info-blocks.home {
			    margin-top: 0px;
           
        }
			
            .slider-overlay h1 {
                font-size: clamp(2rem, 4vw, 3.5rem);
            }

            .hero-slider {
                height: 400px;
            }

          

            .top-bar-content {
                flex-direction: column;
            }

            .search-container {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
			
			  .grid-3 {
                grid-template-columns: 1fr;
            }
			
            .slider-overlay h1 {
                font-size: 2em;
            }

            .section-title h2 {
                font-size: 2em;
            }

            .hero-slider {
                height: 300px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2em;
            }

            .slider-arrow.left { left: 15px; }
            .slider-arrow.right { right: 15px; }
        }




/* Parallax Section */
.parallax-section {
    position: relative;
    background-image: url("../images/Afbeelding-voorpagina-DOW.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
    z-index: 1;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* fallback voor mobiel */
        background-position: center;
    }
}
/*.parallax-section::after {
  content: "";
    position: absolute;
    top: 0;
    right: -65px;
    width: 30%;
    height: 100%;
    background: url(../images/Meenderman_Beeldmerk_Def.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(-17deg);
    z-index: 0;
    pointer-events: none;
}
*/

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25); /* donkere overlay voor betere leesbaarheid */
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.parallax-content img {
	    width: 100%;
	max-width:400px;
    height: auto;
}

.parallax-content h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.parallax-content p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* Mobiele weergave */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* Fix voor iOS en Android (geen fixed ondersteuning) */
        min-height: 300px;
    }

    .parallax-content h2 {
        font-size: 1.6em;
    }

    .parallax-content p {
        font-size: 1em;
    }
}
/* CTA Button in Slider */
.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 680px) {

.main-header.sticky {position: fixed;border-top: 10px solid #fff;
    }
}
.container, .article-content-frame {
        padding: 0 20px !important;
       
    }


h2 {

}
