/* Algemene stijlen */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color:black;
    background: url('../Images/backgroundtest11.svg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to top, #197bb2, #197bb2);
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	height: 60px;
}

header::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.logo img {
    height: 50px;
}

/* Navigatie */
nav {
    margin-left: 0;
    display: flex;
}

nav ul {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: black;
}


/* Contact Widget */
.contact-widget button {
    background-color: #197bb2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0px 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-widget img {
    max-width: 30px;
    max-height: 30px;
    margin-top: 5px;
}

/* Hamburger menu stijlen */
.hamburger {
    display: none; /* Verborgen op grotere schermen */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animaties voor open/gesloten menu */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown menu voor mobiele weergave */
@media screen and (max-width: 768px) {
    nav ul {
        display: none; /* Verborgen als standaard */
        flex-direction: column;
        align-items: flex-start; /* Horizontaal uitgelijnd vanaf de linkerkant */
        justify-content: flex-start; /* Verticaal gecentreerd */
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%; /* Zet het dropdown-menu direct onder de header */
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 400px;
        height: auto; /* Automatische hoogte, afhankelijk van de inhoud */
        padding: 0;
        z-index: 99;
        border-radius: 8px;
        visibility: hidden; /* Menu is verborgen totdat het wordt geopend */
        opacity: 0; /* Menu is transparant totdat het wordt geopend */
        transform: translateY(-20px); /* Start van boven */
        transition: visibility 0s, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    /* Menu geopend */
    nav.open ul {
        display: flex;
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* Links in dropdown-menu */
    nav ul li {
        margin: 5px 0; /* Verticale ruimte tussen links */
        padding: 12px 0;
        opacity: 0; /* Maak de menu-items oorspronkelijk onzichtbaar */
        transform: translateY(10px); /* Beginpositie: menu-items komen van beneden */
        animation: fadeInDropdown 0.5s ease forwards; /* Voeg de fade-in animatie toe */
    }

    /* Vertraging voor elke link zodat ze één voor één verschijnen */
    nav ul li:nth-child(1) {
        animation-delay: 0.2s; /* Eerste item komt als eerste */
    }
    nav ul li:nth-child(2) {
        animation-delay: 0.4s; /* Tweede item komt als tweede */
    }
    nav ul li:nth-child(3) {
        animation-delay: 0.6s; /* Derde item komt als derde */
    }
    nav ul li:nth-child(4) {
        animation-delay: 0.8s; /* Vierde item komt als vierde */
    }
    nav ul li:nth-child(5) {
        animation-delay: 1s; /* Vijfde item komt als vijfde */
    }

    nav ul li a:hover {
        color: black;
    }

    nav ul li a {
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        padding: 12px 20px;
        position: relative; /* Nodig voor de blauwe streep */
    }

    /* Voeg altijd de blauwe streep toe onder de links in het dropdown menu */
    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #197bb2;
    }

    /* Animatie voor het binnenkomen van de items */
    @keyframes fadeInDropdown {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Stijlen voor grote schermen */
@media screen and (min-width: 769px) {
    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    nav ul li a {
        color: white;
        font-size: 1rem;
        text-decoration: none;
        padding: 10px 20px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    nav ul li a:hover {
        border-radius: 5px;
    }
}

/* Modal content styling voor extra padding */
.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 30px 25px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    color: white;
    box-sizing: border-box; 
}

.responseMessage1 {
    text-align: center;
    color: black;

}
.responseMessage2 {
    text-align: center;
    color: white;
}

/* Contact formulier styling */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 8px; 
}

#contactForm label {
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea {
    width: 100%;
    padding: 10px;
    background-color: #1b1b1b;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px; 
}

#contactForm textarea {
    resize: vertical;
    min-height: 100px; 
}

#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm input[type="tel"]:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #20bec6;
}

#contactForm button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #20bec6;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contactForm button[type="submit"]:hover {
    background-color: #20bec6;
}

/* Hero sectie */
.hero {
  position: relative;
  height: calc(30svh - 0px);
  margin-top: 0;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Donkere fade van boven en onder */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.25) 60%,
        rgba(0,0,0,0.65) 100%
    );
}

/* Banner */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;

    animation: fadeIn 1.2s ease forwards;
}

.hero-content img {
    width: 280px;
    margin-bottom: 10px;
}

/* Subtiele glow voor betere integratie */
.hero-content h1,
.hero-content p {
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Animatie */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Hover secties */
.hover-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 2100px;
    margin: 0 auto;
}

.hover-item {
    position: relative;
    height: 250px;
    max-width: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.hover-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hover-item:hover img {
    transform: scale(1.1);
}

.hover-item:hover .hover-text {
    opacity: 0;
}

.hover-text h3 {
    margin: 0;
    font-size: 20px;
    color: white;
}

.hover-text p {
    margin-top: 10px;
    font-size: 14px;
}

/* Industriesectie */
.industries-banner {
    text-align: center;
    padding: 20px 20px;
    background: linear-gradient(to top right, #2a2a2a, #505050);
}

.industries-banner h2 {
    font-size: 35px;
    color: white;
    margin: 0px;
}

.industries-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 2100px;
    margin: auto;
    margin-bottom: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    background-color: #dfe7f0; 
    padding: 20px;
    border-radius: 15px; /* Slightly larger rounding for elegance */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for scale and shadow */
}

.industry-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.industry-item img {
    width: 35%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.industry-item div {
    width: 65%;
    padding: 20px;
}

.industry-item h3 {
    text-align: center;
    top: 0px;
    color: #20bec6;
    font-size: 30px;
    margin-bottom: 10px;
}

.industry-item h4 {
    text-align: center;
    top: 0px;
    color: #aed477;
    font-size: 30px;
    margin-bottom: 10px;
}

.industry-item p {
    font-size: 19px;
    line-height: 1.6;
    color: black;
}

.industry-item p2 {
    font-size: 19px;
    line-height: 1.6;
    color: white;
}

.industry-item.reverse {
    flex-direction: row-reverse;
    background-color: #15364a !important;
    color: white
}

/* Diensten-sectie */
.diensten-banner {
    text-align: center;
    padding: 20px 20px;
    background: linear-gradient(to top right, #2a2a2a, #505050);
}
.diensten-banner h2 {
    font-size: 35px;
    color: white;
    margin: 0px;
}
.services-section {
    padding: 20px;
    text-align: center;
    max-width: 2100px;
    margin: auto;
    margin-bottom: 20px;
}

.services-section h2 {
    font-size: 35px;
    color: white;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    background-color: #dfe7f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for scale and shadow */
}

.service-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 35%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.service-item div {
    width: 65%;
    padding: 20px;
    color: white;
    text-align: left;
}

.service-item h3 {
    color: #20bec6;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.service-item h4 {
    color: #aed477;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.service-item p {
    font-size: 18px;
    line-height: 1.6;
    color: black;
}

.service-item p2 {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.service-item.reverse {
    flex-direction: row-reverse;
    background-color: #15364a;
}

/* Over Ons Specifieke Stijlen */
#about-page {
    font-family: 'Roboto', sans-serif;
    color: #ddd; 
    padding: 20px;
}

#about-page .story {
    display: flex;
    flex-direction: row-reverse;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to top right, #dfe7f0, #dfe7f0);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 2100px;
    margin: auto;
    margin-bottom: 20px;
    align-items: center;
}

#about-page .story-image {
    width: 40%;
    display: block;
    margin: 0 auto; /* Centreert de afbeelding */
    border-radius: 10px; /* Maakt de hoeken afgerond */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Geeft een subtiele schaduw */
    margin: 10px;
}

#about-page .story:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#about-page .story h2 {
    font-size: 36px;
    color: #20bec6;
    margin-bottom: 20px;
    margin-top: 0;
}

#about-page .story p {
    font-size: 18px;
    line-height: 1.6;
    color: black; 
    margin: 0 auto;
    padding: 10px;
}

/* Team Sectie */
#about-page .team {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#about-page .team h2 {
    font-size: 36px;
    color: #20bec6;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 0px;
}

h4 {
    margin: 0px;
    margin-bottom: 20px;
    font-size: 36px;
    /* background: linear-gradient(to top right, #20bec6, #197bb2); */
    border-radius: 10px;
    color: #20bec6;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    max-width: 2100px;
}

#about-page .team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#about-page .team-member {
    width: 300px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #15364a;
    border-radius: 10px;
    padding: 20px;
}

#about-page .team-member:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#about-page .team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

#about-page .team-member h3 {
    font-size: 22px;
    margin-top: 15px;
    color: #aed477;
}

#about-page .team-member p {
    font-size: 16px;
    color: white;
}

/* Waarden Sectie */
#about-page .values {
    display: flex;
    flex-direction: row;
    text-align: center;
    padding: 40px 20px;
    background: #15364a;
    border-radius: 10px;
    max-width: 2100px;
    margin: auto;
    margin-bottom: 20px;
    align-items: center;
}

#about-page .values:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


#about-page .values h2 {
    font-size: 36px;
    color: #aed477;
    margin-bottom: 20px;
    margin-top: 0px;
}

#about-page .values p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

/* Call to Action Sectie */
.cta {
    text-align: center;
    padding: 20px 0px; 
    /* background: linear-gradient(to top right, #20bec6, #197bb2); */
    color: #20bec6;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 2100px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #20bec6;
}

.cta-button {
    padding: 12px 30px;
    background-color: #197bb2;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Responsieve Aanpassingen */
@media (max-width: 768px) {
    #about-page .team-members {
        flex-direction: column;
    }

    #about-page .team-member {
        width: 100%;
        margin-bottom: 20px;
    }
}

.call-to-action{
    padding: 20px;
    text-align: center;
}


/* Team sectie */
.team-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 2100px;
    margin: 0 auto;
}

.team-section h2 {
    color: white;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.team-member {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #15364a;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.member-info {
    padding-top: 15px;
}

.member-info h3 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #aed477;
}

.member-info p {
    color: white;
    font-size: 16px;
}

/* Contact Pagina Stijlen */



/* Nav sectie horizontaal gecentreerd */
nav {
    width: 100%; 
    display: flex;
    justify-content: center; 
    padding: 0;
}

nav ul li {
    display: inline;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: black;
}

#contact-page {
    font-family: 'Roboto', sans-serif;
    color: #ddd;
    padding: 20px;
}

#contact-page .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

/*#contact-page .contact-info:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}*/

#contact-page h2 {
    font-size: 36px;
    color: #20bec6;
    text-align: center;
    margin-bottom: 20px;
}

#contact-page .contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#contact-page .contact-item {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 20px;
    background-color: #15364a;
    text-align: center;
    margin: 20px;
}

#contact-page .contact-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

#contact-page .contact-item h3 {
    font-size: 24px;
    color: #aed477;
    margin-bottom: 10px;
}

#contact-page .contact-item p {
    font-size: 18px;
    color: white;
}

#contact-page .information {

}

/* Formulier Sectie */
#contact-page .contact-form {
    background: linear-gradient(to top right, #dfe7f0, #dfe7f0);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 2100px;
    margin: auto;
    margin-bottom: 20px;
}

#contact-page .contact-form:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#contact-page .contact-form h2 {
    font-size: 36px;
    color: #20bec6;
    text-align: center;
    margin-bottom: 20px;
}

#contact-page .contact-form .form-group {
    margin-bottom: 20px;
}

#contact-page .contact-form label {
    display: block;
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
}

#contact-page .contact-form textarea {
    height: 200px;
    font-size: 16px;
}

#contact-page .contact-form input, 
#contact-page .contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
}



#contact-page .contact-form input:focus, 
#contact-page .contact-form textarea:focus {
    border-color: #20bec6;
    outline: none;
}

#contact-page .contact-form .submit-btn {
    padding: 15px 30px;
    background-color: #20bec6;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#contact-page .contact-form .submit-btn:hover {
    background-color: #20bec6;
}

/* Responsieve Aanpassingen */
@media (max-width: 768px) {
    #contact-page .contact-details {
        flex-direction: column;
    }

    #contact-page .contact-item {
        margin-bottom: 20px;
    }
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px 10px; /* Increase padding for better spacing */
    font-family: 'Arial', sans-serif; /* Clean, modern font */
    color: #fff; /* Default text color */
    border-top: 2px solid rgba(255, 255, 255, 0.1); /* Add a subtle top border */
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3); /* Shadow effect for depth */
    background: linear-gradient(to top right, #2a2a2a, #505050);
}

/* Flexbox container for content */
.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; /* Center the sections horizontally */
    align-items: start; /* Center the content vertically */
    gap: 20px; /* Add spacing between sections */
}

.metaalunie-voorwaarden {
    display: flex;
    flex-direction: row;
    max-width: 2100px;
    margin: 0 auto;
    justify-content: center;
}

.algemene-voorwaarden {
    display: flex;
    flex-direction: column;
}

/* Individual footer sections */
.footer-section1,
.footer-section2,
.footer-section3 {
    flex: 1;
    min-width: 300px; /* Adjust minimum width for responsiveness */
    max-width: 400px; /* Optional: cap maximum width for consistency */
    padding: 10px; /* Add inner padding */
    display: flex; /* Enable flexbox on individual sections */
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

/* Section headings */
.footer-section1 h2,
.footer-section2 h2,
.footer-section3 h2 {
    color: #fec34e; /* Vibrant heading color */
    font-size: 1.4rem; /* Slightly larger font for headings */
    margin-bottom: 10px; /* Add space below headings */
    text-transform: uppercase; /* Optional: make headings uppercase */
    text-align: center; /* Center the headings */
}

/* Section content (optional styling for lists or links) */
.footer-section1 ul,
.footer-section2 ul,
.footer-section3 ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    text-align: center; /* Center-align list content */
}

.footer-section1 li,
.footer-section2 li,
.footer-section3 li {
    margin: 5px 0; /* Add spacing between list items */
    font-size: 0.9rem; /* Slightly smaller font size for list items */
}

/* Links within the footer */
footer a {
    color: #1e90ff; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth color change on hover */
}

footer a:hover {
    color: #00ced1; /* Hover color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack sections on smaller screens */
        align-items: center; /* Center-align stacked sections */
    }

    .footer-section1,
    .footer-section2,
    .footer-section3 {
        max-width: 100%; /* Allow full width for smaller screens */
    }
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive ontwerp */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        position: fixed;
        width: 100vh;
        height: 100vh;
        top: 80px;
        background-color: rgba(18, 18, 18, 0.95);
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    nav ul.active {
        left: 0;
    }

    .hover-sections {
        grid-template-columns: 1fr;
    }

    .industry-item,
    .industry-item.reverse,
    .service-item,
    .service-item.reverse,
    .story, 
    .values
     {
        flex-direction: column !important;
        text-align: center;
    }

    .industry-item img,
    .service-item img,
    .industry-item div,
    .service-item div,
    .story-image
     {
        width: 100% !important;
    }

}
