 :root {
            --primary-color: #00aeef;
            --primary-dark: #0089c2;
            --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);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.98);
           
        }
.main-header

 {
    width: 100%;
    height: auto;  
    z-index: 999;
	 background-color:#fff;
}

.main-header.sticky {position: fixed;
    top: 0;}

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 12px 0;
            color: white;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            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);
        }

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

        .logo img {
            height: 45px;
            transition: var(--transition);
        }

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

        

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 550px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
        }

        .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slider-item.active {
            opacity: 1;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5);
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .slider-overlay h1 {
            font-size: 4em;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            cursor: pointer;
            z-index: 3;
            transition: var(--transition);
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-50%) scale(1.1);
        }

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

        /* Info Blocks */
        .info-blocks {
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--light-color), white);
        }

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

        .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);
        }

        .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: 2.2em;
            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: 1.5em;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

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


/* Intro Columns Section */
.intro-columns {  
	background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

 .intro-columns::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
            opacity: 0.3;
        }

.multi-column-text {
    column-count: 3;
    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: var(--primary-color);
            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(0, 174, 239, 0.3);
        }

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

        /* System Management */
        .system-management {
            padding: 80px 0;
            background: white;
        }
.system-management .section-title h2 {color: var(--dark-color);}

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

        .section-title h2 {
            font-size: 2.5em;
            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: 2.5em;
            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 {
            color: white;
            margin-bottom: 15px;
        }

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

        /* Clients */
        .our-clients {
            padding: 80px 0;
            background: var(--light-color);
        }

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

        .client-logos img {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: var(--transition);
        }

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

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 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 ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95em;
        }

        .footer-col ul li i {
            margin-right: 12px;
            color: var(--primary-color);
            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);
        }

        .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;
        }

        

        /* Responsive */
        @media (max-width: 992px) {
    

            .slider-overlay h1 {
                font-size: 2.5em;
            }

            .hero-slider {
                height: 400px;
            }

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

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

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

        @media (max-width: 576px) {
            .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/image-1.jpg"); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
    z-index: 1;
}

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

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.parallax-content h2 {
    font-size: 2.2em;
    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);
}

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


h2 {

}
