.navbar {
    position:sticky;
    top:0;
    z-index:1000;
}

.hero-v2 {
    min-height: 70vh;
    display:flex;
    align-items:center;
   /* background:
        linear-gradient(
            rgba(15,23,42,.4),
            rgba(15,23,42,.4)
        ),
        url('../images/hero-dashboard.png');*/
		
    background:
        linear-gradient(
            rgba(15,23,42,.75),
            rgba(15,23,42,.75)
        ),
        url('../images/home-dashboard-resize.jpg');

		
		
    background-size:cover;
    background-position:center;
}



.hero-v2 h1{
    color:#fff;
    font-size:4rem;
    font-weight:700;
}

.hero-v2 p{
    color:rgba(255,255,255,.9);
    font-size:1.3rem;
}

.section-v2{
    padding:80px 0;
}

.service-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .3s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.logo-grid img{
    max-height:80px;
    max-width:180px;
    width:auto;
    filter:grayscale(100%);
    opacity:.8;
    transition:.3s;
}

.logo-grid img:hover{
    filter:none;
    opacity:1;
}

.cta-section{
    background:#0f172a;
    color:#fff;
    padding:80px 0;
}

.cta-section h2{
    color:#fff;
}

.btn-kreios{
    background:#0ea5e9;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
}

.btn-kreios:hover{
    background:#0284c7;
    color:#fff;
}

.logo-grid {
    align-items:center;
}

.logo-grid img {
    max-height:70px;
	width: auto;
    object-fit:contain;
}

.hero-small {
    background:
        linear-gradient(
            rgba(15,23,42,.6),
            rgba(15,23,42,.6)
        ),
        url('../images/hero-dashboard.png');
    background-size:cover;
    background-position:center;
}

.hero-small h1 {
    color:white;
}

.hero-small p {
    color:rgba(255,255,255,.85);
}

.customer-card {
    background:white;
    border-radius:16px;
    padding:30px;
    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.customer-card:hover {
    transform:translateY(-5px);
}

.customer-card img {
    max-height:80px;
    max-width:100%;
    width:auto;
    object-fit:contain;

    filter:grayscale(100%);
    opacity:.8;
}

.customer-card:hover img {
    filter:none;
    opacity:1;
}

.news-preview {

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: 96px;
}

.modal-body {

    line-height: 1.7;
}

.modal-title {

    font-weight: 600;
}

.btn-news {

    color: #0f172a;
    border: 1px solid #0f172a;

    font-weight: 500;

    transition: all .3s ease;
}

.btn-news:hover {

    background: #0f172a;
    color: #ffffff;

    border-color: #0f172a;
}


.card {

    transition: all .3s ease;
}

.card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.contact-info h5 {

    font-weight: 600;
    color: #0f172a;
}

.contact-info a {

    color: #0f172a;
    text-decoration: none;
}

.contact-info a:hover {

    color: #0ea5e9;
}

.form-control {

    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {

    box-shadow: 0 0 0 .2rem rgba(14,165,233,.15);
    border-color: #0ea5e9;
}

.footer-v2 {

    background: #0f172a;

    color: rgba(255,255,255,.8);

    padding: 60px 0 30px;
}

.footer-v2 h4,
.footer-v2 h5 {

    color: white;

    margin-bottom: 20px;
}

.footer-v2 a {

    color: rgba(255,255,255,.8);

    text-decoration: none;

    transition: .3s;
}

.footer-v2 a:hover {

    color: #0ea5e9;
}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-links li {

    margin-bottom: 10px;
}

.footer-v2 hr {

    border-color: rgba(255,255,255,.1);

    margin: 30px 0;
}

.navbar .nav-link.active {

    /*color: #0ea5e9 !important;*/
	color: #0ea5e9 !important;
	
    font-weight: 600;

    /*border-bottom: 2px solid #0ea5e9;0066CC*/
	
	border-bottom: 2px solid #0ea5e9;
}

/* Voeg dit toe aan je modern.css */
.navbar-nav .dropdown > a::after {
    content: " ▼"; /* klein pijltje */
    font-size: 0.7em;
    margin-left: 4px;
}

/* dropdown menu standaard verborgen */
.navbar-nav .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    padding: 0.5rem 0;
}

/* hover op parent laat dropdown zien */
.navbar-nav .dropdown:hover .dropdown-menu {
    background-color: #f1f1f1;
	display: block;
}

/* dropdown-items styling */
.navbar-nav .dropdown-item {
    background-color: #f1f1f1 !important;
	display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
}

.navbar-nav .dropdown-item:hover {
    color: #0ea5e9;
	background-color: #f1f1f1;
}

.navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: #f1f1f1 !important;
  
}

.partner-icons-container {
    display: flex;           /* of 'inline-flex' als het nodig is */
    justify-content: center; /* horizontaal centreren */
    align-items: center;     /* optioneel: verticaal centreren */
    flex-wrap: wrap;         /* zodat ze netjes op meerdere regels vallen bij small screens */
    gap: 20px;               /* optioneel: ruimte tussen de icons */
}


/* Algemene hero-knop stijl */
.hero-button {
    display: inline-block;
    font-family: 'Inter', sans-serif; /* of je gebruikte font */
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Blauwe primaire knop (Contact Us) */
.hero-button.primary {
    background: linear-gradient(135deg, #00BFFF, #0066CC);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-button.primary:hover {
    background: linear-gradient(135deg, #0066CC, #004999);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Witte secundaire knop (Explore Solutions) */
.hero-button.secondary {
    background: #ffffff;
    color: #0066CC;
    border: 2px solid #0066CC;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-button.secondary:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.hero-button.primary::before {
    content: " →"; /* pijltje */
    margin-left: 2px; /* afstand tussen tekst en pijltje */
    transition: transform 0.3s ease;
}

/* optioneel: pijltje bewegen bij hover */
.hero-button.primary:hover::before {
    transform: translateX(4px);
}

.hero-button.secondary::before {
    content: " →"; /* pijltje */
    margin-left: 2px; /* afstand tussen tekst en pijltje */
    transition: transform 0.3s ease;
}

/* optioneel: pijltje bewegen bij hover */
.hero-button.secondary:hover::before {
    transform: translateX(4px);
}


/* Ruimte tussen hero-buttons */
/*.hero-button {*/
/*    margin-right: 16px;*/ /* ruimte rechts van elke knop */
/*}*/

/* optioneel: laatste knop geen extra margin */
/*.hero-button:last-child {*/
    /*margin-right: 0;*/
/*}*/


.about-page h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.about-page h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #4f4e4e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.about-page p {
    line-height: 1.7;
    color: #333;
}
.about-page ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}
.about-page ul li {
    margin-bottom: 0.5rem;
}
.about-page .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.hero-about {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-about .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255,255,255,0.3); /* lichte wit overlay */
    backdrop-filter: blur(6px);
    z-index: 1;
}

.hero-about .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
	
}

.cta-buttons-about {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
	justify-content: center;
}


@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .cta-buttons-about {
        flex-direction: column;
        align-items: center;
    }
}