/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

h1 {
    font-size: 32px;
    font-weight: 300;
 }
h2 {
    font-size: 28px;
    font-weight: 300;
}

h3 {
    font-size: 24px;
    font-weight: 300;
}
p {
    font-size: 20px;
    font-weight: 300px;
}
li {
    font-size: 20px;
    font-weight: 300px;
}



.logo img {
    width: 210px;
    height: auto;
    margin-right: 15px;
    justify-content: center
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar:hover {
    background-color: rgba(41, 49, 51, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    position: relative;
    margin: 0 10px;
}
.navbar ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    display: block;
}

.navbar ul li a:hover {
    text-decoration: underline;
   
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    opacity: 0; /* Set opacity to 0 to prevent visual issues */
    position: absolute;
    background-color: rgba(41, 49, 51, 0.7); /* Transparent anthracite background */
    min-width: 200px;
    box-shadow: none; /* Initially no shadow */
    z-index: 1;
    border-radius: 5px;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition for visibility */
    padding: 0;
    visibility: hidden; /* Ensure it's fully hidden */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    visibility: visible; /* Make the dropdown visible */
    opacity: 1; /* Fade in smoothly */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow when visible */
    opacity: 5;
    padding: 12px 16px;
    color: white; /* Text color for dropdown */
    text-decoration: none;
}

/* Dropdown content link styling */
.dropdown-content li {
    text-align: left;
    margin-left: 0;
}

.dropdown-content li a {
    padding: 12px 16px;
    color: white; /* Text color for dropdown */
    text-decoration: none;
}

.dropdown-content li a:hover {
    background-color: rgba(64, 224, 208, 0.3); /* Add hover effect */
    color: white;
}
/* Hero Section */
.hero {
    height: 600px;
    background-image: url('IMG_4343.webp');
    background-size: 110%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.4);
    transition: background 0.3s ease;	
    
}

@keyframes zoomWindEffect {
    0% {
        background-size: 100%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 120%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 100%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}


.hero-content h1 {
    Font-size: 42px;
    margin: 0;
    font-weight: 300;
}

.tagline {
   font-size: 28px;
   margin: 0;
   font-weight: 300;
}

@media (max-width: 768px) {
   .hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}

@media (max-width: 375px) {
   .hero {
    background-height: 100vh;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}


.cta-button {
    background-color: #237970;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #293133;
}

.cta-button:hover ~ .background-overlay {
  background: rgba(0, 0, 0, 0);
}

.container { 
  display: flex;
  justify-content: flex-end;
 
  
}
.text-box {
  padding: 20px 20px;
  width: 70%;
  margin: 10px;
  font-weight: semi-bold;
   border-radius: 10px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {

   .text-box {
     background-color: #237970;
     font-size: 1.2em;
     color: white;
     
 }
}

/* Trusted By Section */
.trusted-by {
    padding: 50px 50px;
    background-color: #ffffff;
    color: white;
    text-align: center;
}

.trusted-by h2 {
    color: #f6f6f6;
    margin-bottom: 30px;
}

.trusted-by .clients img {
    max-width: 500px;
    margin: 0px;
}

/* Services Section */
#services {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

#services h2 {
    color: #293133;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 40px);
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    color: #237970;
    margin-bottom: 15px;
}

.service-item p {
    color: #131b1a;
    margin-bottom: 15px;
}
.service-item p strong {
    color: #144540;
    font-style: bold;
}

.learn-more {
    background-color: #237970;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.learn-more:hover {
    background-color: #144540;
}

/* Social Media Icons Styling */
.social-media {
    background-color: #ffffff;
    text-align: center;
    margin: 20px 0;
}

.social-media a img {
    width: 40px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-media a img:hover {
    transform: scale(1.2); /* Enlarge icons slightly on hover */
}
/* Newsletter Subscription Bar Styling */
#newsletter {
    background-image: url('honey2.webp') ;
    background-size: cover;
    background-position: top center;
    padding: 30px 20px;
    text-align: center;
    margin-top: 80px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.4);
    transition: background 0.3s ease;	
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #293133;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 16px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-right ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footer-right ul li {
    margin-left: 20px;
}

.footer-right ul li a {
    color: #293133;
    text-decoration: none;
    font-size: 16x;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul li {
        margin: 5px 0;
    }

    .service-grid {
        flex-direction: column;
        gap: 20px;
    }

    .service-item {
        width: 100%;
    }

    .trusted-by .clients img {
        max-width: 100px;
    }
}
/* General Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.navbar:hover {
    background-color: rgba(44, 44, 44, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Responsive Navbar for Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .logo {
	margin-left: auto;
	position: absolute;
	top: 0px;
	right: 20px;
}

    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: none; /* Hide the menu by default */
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background-color: rgba(41, 49, 51, 0.7);
        padding: 10px 0;
        border-radius: 5px;
    }

    .navbar ul li {
        margin: 5px 0;
    }

    .navbar ul.show {
        display: flex; /* Show the menu when toggled */
    }
}
/* Trusted By Section */
.trusted-by {
    display: none;
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff; /* Optional background color */
    color: #293133;
}

.trusted-by h2 {
    margin-bottom: 30px;
    color: #293130;
}

.trusted-by .clients {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
    flex-wrap: wrap; /* Ensures images wrap on smaller screens */
}

.trusted-by .client {
    position: relative;
    width: 200px; /* Fixed width for all images */
    height: 200px; /* Fixed height for all images */
    overflow: hidden; /* Ensures hover effects don't go outside bounds */
    border-radius: 10px; /* Optional: Rounded corners for images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: transform 0.3s ease; /* Smooth hover animation */
}

.trusted-by .client img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container */
    transition: transform 0.3s ease; /* Smooth scale-up on hover */
}

.trusted-by .client:hover img {
    transform: scale(1.2); /* Enlarges the image by 20% */
}

.trusted-by .client .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%; /* Adjust height of overlay */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 1.2;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease; /* Fade-in effect */
}

.trusted-by .client:hover .overlay {
    opacity: 1; /* Shows the overlay on hover */
}
/* Testimonials Section Styling */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    background-color: #ffffff;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and content */
}

/* Circular Image Styling */
.testimonial-image {
    flex-shrink: 0; /* Prevent shrinking of the image */
    width: 80px; /* Adjust size as needed */
    height: 80px;
    border-radius: 50%; /* Make the image circular */
    overflow: hidden;
    border: 1px solid #293133; /* Optional: Border for the image */
}

.testimonial-image img {
    align-item: center;
    width: 120%;
    height: 120%;
    object-fit: cover; /* Ensure the image fits properly */
}

/* Testimonial Content Styling */
.testimonial-content {
    max-width: 600px; /* Limit the width of the text */
}

.testimonial-text {
    font-size: 16px;
    color: #333; /* Dark text color */
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    font-weight: bold;
    color: #237970; /* Accent color for the author name */
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 20px 10px;
    }

    .testimonial {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
    }

    .testimonial-content {
        max-width: 100%; /* Allow full width */
    }
}


/* Contact page */
#contact-hero {
    height:600px;
    background-image: url('contact.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.4);
    transition: background 0.3s ease;	
    
}

#contact-hero {
    Position: flex
    text-align: right;
    padding: 50px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #contact-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.contact {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.contact h1 {
    color: #237970;
    margin-bottom: 10px;
    text-align: center;
}

.contact h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}

.contact h3 {
    color: #293133;
    Padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}
.contact p {
    color: #293133;
    padding: 2px 4px;
    font-weight: 400;
}


.contact p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: 400;
}

.contact {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}


/* Ensure proper alignment */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns text properly */
    flex-wrap: wrap; /* Ensures responsiveness */
    max-width: 900px; /* Adjust based on your design */
    margin: auto;
}

/* Adjust text styling */
.contact-container h1 {
    font-size: 24px;
    text-align: left; /* Ensures consistency */
}

/* Improve form field width */
.contact-form input,
.contact-form textarea {
    width: 100%; /* Makes input fields full width */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Fix button alignment */
.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #237970;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #1a5b52;
}

/* Make mobile-friendly */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}




/* Mission Section styling*/
.mission {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.mission h1, .mission h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
    }
.mission p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: bold;
}
.mission a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.mission a hover {
    color: #40e0d0;
}
.mission {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.vision {
    padding: 50px 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.vision h1, .vision h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
 }
.vision p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: bold;
}
.vision a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.vision a hover {
    color: #40e0d0;
}
.vision {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}


#mission-hero {
    height:600px;
    background-image: url('IMG_4567.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(41, 49, 51, 0.3);
    transition: background 0.3s ease;	
    
}

#mission-hero h1 {
    Position: flex;
    text-align: right;
    padding: 50px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #mission-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}



/* Chat button styling */

.chat-button {
   
    position: fixed;

    bottom: 20px;

    right: 20px;

    width: 60px;

    height: 60px;

    background-color: #21e578; /* Green background */

    color: white;

    border-radius: 50%;

    display: none;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    cursor: pointer;

    z-index: 1000;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}



/* Chat popup styling */

.chat-popup {

    position: fixed;

    bottom: 90px;

    right: 20px;

    width: 300px;

    padding: 15px;

    background-color: white;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    display: none; /* Hidden by default */

    z-index: 1000;

}
.chat-button {
   background-color: rgba(35, 121, 112, 0.9);
}



/* Hover effect for chat button */

.chat-button:hover {

    background-color: #293133;

}
@media (max-width: 768px) {

    .chat-popup {

        width: 90%;

        right: 5%;

    }

}

#whoweare {
    height:600px;
    background-image: url('whoweare.jpeg');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(41, 49, 51, 0.3);
    transition: background 0.3s ease;	
    
}

#whoweare h1 {
    Position: flex
    text-align: right;
    padding: 50px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #whoweare {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.Intro {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.Intro h1 {
    color: #237970;
    text-align: center;
    margin-bottom: 20px;
}

.Intro h2 {
    color: #293133;
    text-align: center;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 28px;
}
.Intro p strong {
    color: #237970;
    font-weight: bold;
    padding: 2px 4px;
}
.Intro a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.Intro a hover {
    color: #40e0d0;
}
.Intro {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.Personal {
    padding: 50px 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.Personal h1, .Personal h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
    }

.Personal p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: bold;
}

.Personal a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.Personal a hover {
    color: #40e0d0;
}
.Personal {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}
.Values {
    padding: 50px 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.Values h1, .Values h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}
.Values p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: bold;
}
.Values a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.Values a hover {
    color: #40e0d0;
}
.Values {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}
.WWA-CTA {
    padding: 50px 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.WWA-CTA h1, .WWA-CTA h2 {
    color: #293133;
    padding: 50px 20px;
    text-align: center;
     margin-bottom: 20px;
}
.WWA-CTA p strong {
    text-collor: #40e0d0;
    padding: 2px 4px;
    font-weight: 500;
}

.WWA-CTA {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;

}
#Energy-hero {
    height:600px;
    background-image: url('Energymgt.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 45, 56, 0.5);
    transition: background 0.3s ease;	
    
}

#Energy-hero h1 {
    Position: flex
    text-align: right;
    padding: 50px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #Energy-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
#Energymgt {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

#Energymgt h1 {
    color: #237970;
    margin-bottom: 50px;
    text-align: center;
}
#Energymgt h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}

#Energymgt h3 {
    color: #293133;
    Padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}

#Energymgt p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: 400;
}

#Energymgt {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}
.CTA-EMT {
    padding: 50px 20px;
    text-align: center;
}
.CTA-EMT cta-button {
    text-decoration: none;
}

.Analyse {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
}

.optimalisatie {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.Implementatie {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.Monitoring {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.process-icon {
    width: 40px;
    height: 40px;
}
#CSRD-hero {
    height:600px;
    background-image: url('CSRD.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.4);
    transition: background 0.3s ease;	
    
}

#CSRD-hero h1 {
    Position: flex
    text-align: right;
    padding: 50px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #CSRD-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
#CSRD {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

#CSRD h1 {
    color: #293133;
    margin-bottom: 10px;
    text-align: center;
}
#CSRD h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}

#CSRD h3 {
    color: #293133;
    Padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}

#CSRD p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: 400;
}

#CSRD {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}
.Steps {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.Steps h1 {
    color: #237970;
    margin-bottom: 50px;
    text-align: center;
}
.Steps h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}

.Steps h3 {
    color: #293133;
    Padding: 0px 10px;
    text-align: center;
    margin-bottom: 20px;
}

.Steps p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: 400;
}

.Steps {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.CTA-CSRD {
    padding: 50px 20px;
    text-align: center;
}
.CTA-CSRD h2 {
    color: #293133;
    padding: 0px 20px;
    text-align: center;
}

.CTA-CSRD cta-button {
    text-decoration: none;
}

.Analyse {
    padding: 10px 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
}

.plan {
    padding: 50px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
}
.Implementatie {
    padding: 50px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
}
.Monitoring {
    padding: 50px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.process-icon {
    width: 40px;
    height: 40px;
}
#CSRD h1 {
    color:#237970;
}
.workflow-image {
   width: 100%;
   max-width: 600px;
   max-height: auto;
   border-radius: 10px;
   margin: 10px auto;
   display: block;
}
@media (max-width: 768px) {
 .workflow-image {
   width: 100%;
}
}
.services-image {
   width: 100%;
   max-width: 600px;
   max-height: auto;
   border-radius: 10px;
   margin: 10px auto;
   display: block;
}
@media (max-width: 768px) {
 .services-image {
   width: 100%;
}
}
html {
    scroll-behavior: smooth;
}

/* news page */

#News-hero {
    height:600px;
    background-image: url('news.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 45, 56, 0.5);
    transition: background 0.3s ease;	
    
}

#News-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #News-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
/* News Section Styling */

.news-container {

    max-width: 1200px;

    margin: 20px auto;

    padding: 20px;

    background-color: #fff;

    border-radius: 8px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}



h1 {

    text-align: center;

    margin-bottom: 20px;

}



.news-list {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 20px;

}



.news-item {

    border: 1px solid #ddd;

    border-radius: 8px;

    overflow: hidden;

    background-color: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s;

}



.news-item:hover {

    transform: translateY(-5px);

}






.news-item h2 {

    margin: 15px;

    font-size: 20px;

    color: #333;

}



.news-item p {

    margin: 15px;

    color: #666;

}



.read-more {

    display: block;

    margin: 15px;

    color: #237970;

    text-decoration: none;

    font-weight: bold;

}



.read-more:hover {

    text-decoration: underline;

}


/* news card (new) */
.news-card {
  display: block; /* Makes the whole card a block element */
  text-decoration: none; /* Removes the default link underline */
  color: inherit; /* Keeps the text color consistent */
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
  transform: scale(1.02); /* Slight zoom effect */
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.card-content img {
  width: 100%; /* Makes the image responsive */
  border-radius: 8px 8px 0 0; /* Rounds top corners */
  height: 180px;
  object-fit: cover;

}

}

.card-content h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  margin-top: 10px;
  background-color: #237970;
  color: white;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #1a5b52;
}


/* article pages */

#article1-hero {
    height:600px;
    background-image: url('EPC NR.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.3);
    transition: background 0.3s ease;	
    
}

#article1-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #article1-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}

#article2-hero {
    height:600px;
    background-image: url('Distri.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.3);
    transition: background 0.3s ease;	
    
}

#article2-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #article2-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}

#article3-hero {
    height:600px;
    background-image: url('Regels.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.3);
    transition: background 0.3s ease;	
    
}

#article3-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #article3-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h1 {
   color: #237970;
   text-align: justify;
   padding: 50px 20px;
}

.article p strong {
   color: #237970;
}

#article4-hero {
    height:600px;
    background-image: url('budapest.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.3);
    transition: background 0.3s ease;	
    
}

#article4-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #article4-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h1 {
   color: #237970;
   text-align: justify;
   padding: 50px 20px;
}

.article p strong {
   color: #237970;
}
#article5-hero {
    height:600px;
    background-image: url('cos.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#article5-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #article5-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h2 {
   color: #144550;
   font-weight: 500;
   text-align: justify;
   padding: 10px 10px;
}

.article ul { 
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #333;
}

.article p strong {
   font-weight: 600;
   color: #237970;
}

.article li strong {
   font-weight: 600;
   color: #237970;
}
@media (max-width: 768px) {

.article h2 {
    font-size: 1.5em;
}
.article p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
.article p strong {
     font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li strong {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
 }

#VSME-hero {
    height:600px;
    background-image: url('VSME.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#VSME-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #VSME-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h2 {
   color: #144550;
   font-weight: 500;
   text-align: justify;
   padding: 10px 10px;
}

.article ul { 
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #333;
}

.article p strong {
   font-weight: 600;
   color: #237970;
}

.article li strong {
   font-weight: 600;
   color: #237970;
}
@media (max-width: 768px) {

.article h2 {
    font-size: 1.5em;
}
.article p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
.article p strong {
     font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li strong {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
 }

#VSME-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #VSME-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h2 {
   color: #144550;
   font-weight: 500;
   text-align: justify;
   padding: 10px 10px;
}

.article ul { 
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #333;
}

.article p strong {
   font-weight: 600;
   color: #237970;
}

.article li strong {
   font-weight: 600;
   color: #237970;
}
@media (max-width: 768px) {

.article h2 {
    font-size: 1.5em;
}
.article p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
.article p strong {
     font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li strong {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
 }

#FacqM-hero {
    height:600px;
    background-image: url('m2.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#FacqM-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #FacqM-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h2 {
   color: #144550;
   font-weight: 500;
   text-align: justify;
   padding: 10px 10px;
}

.article ul { 
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #333;
}

.article p strong {
   font-weight: 600;
   color: #237970;
}

.article li strong {
   font-weight: 600;
   color: #237970;
}
@media (max-width: 768px) {

.article h2 {
    font-size: 1.5em;
}
.article h3 strong {
  color: #237970;
}    
.article p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
.article p strong {
     font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li strong {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
 }

#rentre-hero {
    height:600px;
    background-image: url('IMG_3086.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#rentre-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #rentre-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h2 {
   color: #144550;
   font-weight: 500;
   text-align: justify;
   padding: 10px 10px;
}

.article ul { 
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #333;
}

.article p strong {
   font-weight: 600;
   color: #237970;
}

.article li strong {
   font-weight: 600;
   color: #237970;
}
@media (max-width: 768px) {

.article h2 {
    font-size: 1.5em;
}
.article h3 strong {
  color: #237970;
}    
.article p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
.article p strong {
     font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li strong {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
 }

#AI-hero {
    height:600px;
    background-image: url('AITools.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#AI-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #AI-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
.date {
   padding: 20px 5px;
}
.article {
   margin: 0 auto;
   text-align: justify;
   max-width: 1000px;
   padding: 50px 20px;
}

.article h2 {
   color: #144550;
   font-weight: 500;
   text-align: justify;
   padding: 10px 10px;
}

.article ul { 
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #333;
}

.article p strong {
   font-weight: 600;
   color: #237970;
}

.article li strong {
   font-weight: 600;
   color: #237970;
}
@media (max-width: 768px) {

.article h2 {
    font-size: 1.5em;
}
.article h3 strong {
  color: #237970;
}    
.article p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
.article p strong {
     font-size: 0.9em;
    margin-bottom: 1.5em;
}
.article li strong {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
 }
   

/* Casestudies page*/

#ref-hero {
    height:600px;
    background-image: url('ref.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.3);
    transition: background 0.3s ease;	
    
}

#ref-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #ref-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}

#temp {
    text-align: center;
}

/* Testimonials Section Styling */
.ref-testimonials {
    display: flex; /*normal flex*/
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    background-color: #ffffff;
}

.ref-testimonial {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and content */
}

/* Circular Image Styling */
.reftestimonial-image {
    flex-shrink: 0; /* Prevent shrinking of the image */
    width: 80px; /* Adjust size as needed */
    height: 80px;
    border-radius: 50%; /* Make the image circular */
    overflow: hidden;
    border: 2px solid #293133; /* Optional: Border for the image */
}

.reftestimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fits properly */
}

/* Testimonial Content Styling */
.ref-testimonial-content {
    max-width: 600px; /* Limit the width of the text */
}

.testimonial-text {
    font-size: 16px;
    color: #333; /* Dark text color */
    margin-bottom: 10px;
    line-height: 1.6;
}

.ref-testimonial-author {
    font-size: 14px;
    font-weight: bold;
    color: #237970; /* Accent color for the author name */
}

/* Partners Page */

#part-hero {
    height:600px;
    background-image: url('partner.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.3);
    transition: background 0.3s ease;	
    
}

#part-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #part-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}

/* ===== partners.css ===== */

/* Theme */
:root{
  --teal:#144550;
  --anth:#293133;
  --border: rgba(41,49,51,0.18);
  --border2: rgba(41,49,51,0.28);
  --bg:#ffffff;
  --muted: rgba(41,49,51,0.72);
  --radius: 14px;
}

/* Layout */
.partners-wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--anth);
}

.partners-header h1{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.partners-header p{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* Cards */
.card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--bg);
}

.card h2{
  margin: 0 0 10px;
   font-size: 0.9rem;
  color: var(--teal);
}

.card ul{
  margin: 0;
   font-size: 0.9rem;
    line-height: 1.5;
  line-height: 1.6;
  color: var(--anth);
}

/* Form */
.partner-form{
  margin-top: 18px;
}

.partner-form h2{
  margin: 0 0 14px;
  font-size: 20px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Two columns on wider screens */
@media (min-width: 760px){
  .form-grid.two-col{
    grid-template-columns: 1fr 1fr;
  }
}

.field label{
  display:block;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--anth);
}

.req{
  color: var(--teal);
  font-weight: 800;
}

/* Inputs */
.field input,
.field select,
.field textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  outline: none;
  font-size: 14px;
  background: #fff;
}

.field textarea{
  resize: vertical;
}

/* Focus states */
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(20,69,80,0.55);
  box-shadow: 0 0 0 3px rgba(20,69,80,0.15);
}

/* Fieldset */
fieldset{
  border: 0;
  padding: 0;
  margin: 10px 0 14px;
}

legend{
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--anth);
}

.checkbox-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 760px){
  .checkbox-grid{
    grid-template-columns: 1fr 1fr;
  }
}
/*  checkbox: mobile-proof */
@media (max-width: 768px) {

  /* Als je consent in een label zit */
  .checkbox-grid,
  label.consent,
  .consent label{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.25;
    max-width: 100%;
  }

  .checkbox-grid input[type="checkbox"],
  label.consent input[type="checkbox"],
  .checkbox-grid label input[type="checkbox"]{
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 20px;
  }

  /* Tekst mag wrappen en niet “verdwalen” */
  .checkbox-grid .checkbox-grid-value,
  label.checkbox-grid span,
  .checkbox-grid label span{
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
.checkbox{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--anth);
}

.checkbox input{
  margin-top: 3px;
}

.helper{
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Consent */
.consent{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 12px 0 18px;
  color: var(--anth);
}

.consent input{
  margin-top: 3px;
}

/* Button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.btn:hover{
  filter: brightness(1.05);
}

.small-note{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Popup */
.popup.hidden{ display:none; }
.popup{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index: 9999;
}
.popup-inner{
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(41,49,51,0.2);
}
.popup-inner h3{
  margin: 0 0 8px;
  color: var(--teal);
}
.popup-inner p{
  margin: 0 0 14px;
  color: var(--anth);
}
/* Consent / privacy checkbox: mobile-proof */
@media (max-width: 768px) {

  /* Als je consent in een label zit */
  .consent,
  label.consent,
  .consent label{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.25;
    max-width: 100%;
  }

  .consent input[type="checkbox"],
  label.consent input[type="checkbox"],
  .consent label input[type="checkbox"]{
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 20px;
  }

  /* Tekst mag wrappen en niet “verdwalen” */
  .consent .consent-text,
  label.consent span,
  .consent label span{
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
/* Trainings Page */
#Academy-hero {
    height:600px;
    background-image: url('Academy.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#Academy-hero h1 {
    Position: flex
    text-align: right;
    padding: 10px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #Academy-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}

.training-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Trainingscards */
.training-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.training-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease;
}
.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.training-card h2 {
  font-size: 1.3em;
  color: #0a3553;
}
.training-card p {
  margin-bottom: 10px;
}
.training-card .link {
  color: #0a3553;
  text-decoration: underline;
  font-weight: bold;
}

/* Whitepaper blokken */
.whitepaper-card {
  background: #eef3f5;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin: 20px auto;
  max-width: 500px;
}
.whitepaper-card img {
  max-width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.whitepaper-card img:hover {
  transform: scale(1.03);
}

/* Formulieren */
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}
form button {
  background-color: #0a3553;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
form button:hover {
  background-color: #072639;
}

/* Popup en modal */
.modal, .popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal-content, .popup {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}
.close {
  float: right;
  font-size: 1.5em;
  cursor: pointer;
}
/* Responsive Design */
@media (max-width: 768px) {
    .whitepaper-card {
        width: 90%;
    }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* Semi-transparent background */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
}

label {
  margin-top: 10px;
}
input[type="text"],
input[type="Name"] {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
input[type="text"],
input[type="Title"] {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
input[type="text"],
input[type="Company"] {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
input[type="text"],
input[type="email"] {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

input[type="email"] {
  margin-bottom: 15px; /* Add more space below the email input */
}

input[type="checkbox"] {
  margin-left: 0;
  margin-top: 10px;
}

label[for="consent"] {
  margin-left: 5px;
  display: inline-block;
}

button {
  background-color: #144540;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 5px;
}

button:hover {
  background-color: #293133;
}

#subscription-form-container {
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-top: 2px solid #ddd;
}

#subscription-form-container h2 {
    text-align: center;
    color: #293133;
}

#subscription-form-container label {
    color: #144540;
    font-weight: 400;
}

#subscription-form-container form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#subscription-form-container label {
    margin-top: 10px;
    margin-bottom: 5px;
}

#subscription-form-container input,
#subscription-form-container select,
#subscription-form-container textarea {
    max-width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#subscription-form-container button {
    padding: 10px 20px;
    background-color: #237970;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#subscription-form-container button:hover {
    background-color: #144550;
}


/* certification page */
#cert-hero {
    height:600px;
    background-image: url('ISO.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 45, 56, 0.5);
    transition: background 0.3s ease;	
    
}

cert-hero h1 {
    Position: flex
    text-align: right;
    padding: 50px 20px;
}

.cert-hero cta-button {
    padding: 50px 20px
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #cert-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
#certificates {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

#certificates h1 {
    color: #237970;
    margin-bottom: 50px;
    text-align: center;
}
#certificates h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}

#certificates h3 {
    color: #293133;
    Padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}

#certificates p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: 400;
}

#certificates {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.cert-icon {
    width: 100px;
    height: 100px;
}

/*General @media styling */
@media (max-width: 768px) {
    h1 {
    font-size: 1.5em;
}
    p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
}
li {
    font-size: 0.9em;
    margin-bottom: 1.5em;

  }
 }


.fixed-button {
   position: fixed;
   bottom: 20px;
   left: 20px;
   z-index: 999;
   background-color: rgba(41, 49, 51, 0.5);
   color: white;
   text-decoration: none;
   border: none;
   padding: 10px 20px;
   border-radius: 5px;
   font-size: 16px;
   cursor: pointer;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
   transition: transform 0.2s ease, background-color 0.3s ease;
}

.fixed-button:hover {
   background-color: #237970;
   transform: scale(1.05);
}

.link {
   padding: 10px 10px;
   font-size: 1.2em;
   font-weight: 600;
   text-decoration: none; 
   color:#237970;
}
.link:hover {
   text-decoration: underline;
   color:#293133;
}

.popup {

    display: none;

    position: fixed;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    background-color: white;

    padding: 20px;

    border: 1px solid #ccc;

    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);

    text-align: center;

}

.popup button {

    margin-top: 10px;

    padding: 5px 10px;

}

/*Mailchimp signup*/

#mc_embed_signup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

#mc_embed_signup_scroll h3{
    font-weight: 300;
    color: #144540;
}

#mc_embed_signup_scroll input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 10px;
    border: 1px solid: #2c2c2C;
    border-radius: 5px;
}

mc_embed_signup .clear.foot .button {
    background-color: #237970;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px 5px;
    font-weight: 500;
}

#mc_embed_signup .clear.foot .button:hover {
    background-color: #144540;
}
#terms {
      margin-top: 100px;
      padding: 50px 20px;
      max-width: 1000px;
      margin: 0 auto;
}

#terms h2:strong {
      text-align: center;
      font-size: 1.1em; 
      font-stile: bold;
}

#terms p {
      font-size: 0.9em;
}
/* Strategy Section styling*/
.strategy {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.strategy h1, .strategy h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
    }
.strategy p strong {
    color: #144540;
    padding: 2px 4px;
    font-weight: bold;
}

.strategy ul li{
    font-size: 20px;
    font-weight: 300;
}


.strategy a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.strategy a hover {
    color: #40e0d0;
}
.strategy {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.strategy-approach {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.strategy-approach h1, .strategy-approach h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
 }
.strategy-approach p strong {
    color: #144540;
    padding: 2px 4px;
    font-weight: bold;
}
.strategy-approach a {
    text-color #144540;
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.strategy-approach a hover {
    color: #40e0d0;
}
.strategy-approach {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}


#strategy-hero {
    height:600px;
    background-image: url('chess.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 69, 0.5);
    transition: background 0.3s ease;	
    
}

#strategy-hero h1 {
    Position: flex;
    text-align: right;
    padding: 50px 50px;
}

#strategy-hero li {
    font-size: 22px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #strategy-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
#QS-hero {
    height:600px;
    background-image: url('QS.webp');
    background-size: 120%; /* Slightly larger to allow zoom */
    background-position: 0% 50%; /* Start position for wind */
    animation: zoomWindEffect 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 45, 56, 0.5);
    transition: background 0.3s ease;	
    
}

#QS-hero h1 {
    Position: flex
    text-align: right;
    padding: 50px 20px;
}

@keyframes zoomWindEffect {
    0% {
        background-size: 122%; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 140%; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 122%; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}

@media (max-width: 768px) {
   #QS-hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center;
   }
@keyframes zoomWindEffect {
    0% {
        background-size: 200vh; /* Normal size */
        background-position: 0% 50%; /* Start from left */
    }
    50% {
        background-size: 240vh; /* Zoom in */
        background-position: 50% 50%; /* Move to center */
    }
    100% {
        background-size: 200vh; /* Back to normal size */
        background-position: 100% 50%; /* Move to right */
    }
}
}
#quickscan {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

#quickscan h1 {
    color: #237970;
    margin-bottom: 50px;
    text-align: center;
}
#quickscan h2 {
    color: #293133;
    text-align: center;
    margin-bottom: 20px;
}

#quickscan h3 {
    color: #293133;
    Padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}

#quickscan p strong {
    color: #237970;
    padding: 2px 4px;
    font-weight: 400;
}

#quickscan {
    opactity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}
.CTA-EMT {
    padding: 50px 20px;
    text-align: center;
}
.CTA-EMT cta-button {
    text-decoration: none;
}



/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

h1 {
    font-size: 32px;
    font-weight: 300;
 }
h2 {
    font-size: 28px;
    font-weight: 300;
}

h3 {
    font-size: 24px;
    font-weight: 300;
}
p {
    font-size: 20px;
    font-weight: 300px;
}
/* === Standaard spacing voor desktop (herhaal gerust als basis) === */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

h1, h2, h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* === Media query voor kleinere schermen (max 768px) === */
@media (max-width: 768px) {
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

