
html, body, div, p, h1, h2, h3, ul, li, form, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f7f9fc;
  color: #1a1a1a;
}

header {
  background-color: #003366;
  padding: 1rem;
  color: #ffd700;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.language-switcher {
  font-size: 1rem;
  font-weight: 600;
}

.language-switcher a {
  color: gold;
  margin: 0 0.5rem;
  text-decoration: none;
}

.language-switcher a:hover {
  color: purple;
}



.header-container {
  text-align: center;
  width: 100%;
}

.logo img {
  max-width: 70%;
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Menu for mobile */
  #main-menu {
    display: none;
    flex-direction: column;  /* Stack menu items vertically */
    width: 100%;
    background-color: #003366;
    padding: 0;  /* No extra padding */
    margin-top: 1rem;
    text-align: center; /* Center the text on mobile */
    list-style-type: none;  /* Remove any dots */
  }

  /* Show menu when hamburger icon is clicked */
  #main-menu.active {
    display: flex;
  }

  /* Mobile menu items */
  #main-menu li {
    width: 100%;
    padding: 0;  /* Remove padding */
    margin: 0;  /* Remove margin */
  }

  /* Mobile menu links styling */
  #main-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;  /* Adjusted padding to reduce space */
    text-decoration: none;
    font-size: 1.2rem;
    color: gold;
    text-transform: uppercase;
  }

  /* Mobile hover effect */
  #main-menu li a:hover {
    background-color: #ffd700;
    color: gold;
    transform: scale(1.05);
  }

  
}

/* Desktop Styles */
@media (min-width: 769px) {
  #main-menu {
    display: flex;
    justify-content: center;
    list-style: none; /* Removes bullet points */
    gap: 1.5rem;  /* Reduced gap between items */
    padding: 0;
    margin: 1.5rem 0;
  }

  /* Menu items for desktop */
  #main-menu li {
    position: relative;
  }

  /* Desktop menu links styling */
  #main-menu li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: gold;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  /* Hover effect for desktop menu items */
  #main-menu li a:hover {
    background-color: #003366;
    color: gold;
    border-color: #ffd700;
    transform: scale(1.05);
  }

  /* Active state for menu items */
  #main-menu li a:active {
    transform: scale(0.98);
  }

 

  /* Ensure the logo is bigger on desktop */
  .logo img {
    max-width: 70%;
  }
}

.hero {
  background: linear-gradient(135deg, #0077cc, #005fa3);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #ffd700;
  color: #003366;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #ffe56c;
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 1rem;
}

ul li {
  margin: 0.5rem 0;
}

form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #005fa3;
  color: white;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #00497c;
}

footer {
  text-align: center;
  background: #003366;
  color: #ffd700;
  padding: 1rem 0;
}

footer a {
  color: #ffd700;
  text-decoration: underline;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  z-index: 99999;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-button img {
  width: 26px;
  height: 26px;
}

.whatsapp-button span {
  font-size: 16px;
  color: white;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  background-color: #1ebc5b;
}

/* Review container styling */
.review {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  border-left: 4px solid #ffd700; /* Gold left border to highlight the review */
  gap: 1rem;
}

/* Reviewer's photo styling */
.review img.reviewer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

/* Review content container */
.review-content {
  flex: 1;
}

/* Review text styling */
.review-content p {
  margin: 0.3rem 0;
}

.review-content em {
  display: block;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-content strong {
  color: #003366;
}

/* Review stars styling */
.review .stars {
  color: gold; /* Gold color for stars */
  font-size: 1.5rem; /* Adjust size of the stars */
  display: flex;
  gap: 5px; /* Space between stars */
}
/* Star Rating styling */
.star-rating {
  display: flex;
  gap: 5px; /* Adds spacing between stars */
}

.star-rating i {
  font-size: 1.5rem; /* Adjust size of the stars */
  color: gold; /* Always gold color for stars */
}


/* If you're using Font Awesome for stars, like <i class="fas fa-star"></i> */
.review .stars i {
  color: gold; /* Ensure that the stars are gold */
}

/* Optional: change color for active/filled stars if you are using Font Awesome */
.review .stars .filled {
  color: gold; /* Gold for filled stars */
}

.review .stars .empty {
  color: #ccc; /* Grey for empty stars */
}


.page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.centered-section {
  text-align: center;
  padding: 2rem;
  margin: 2rem 0;
  width: 100%;
}

.centered-section h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 1rem;
}

.centered-section p {
  margin: 0 auto;
  max-width: 90%;
}

.login-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #003366;
  color: gold;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-image: url('/assets/logon.png');
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 40px;
  background-size: 20px 20px;
}

.login-button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.login-button:focus {
  outline: none;
  border: 2px solid gold;
}

.login-button:active {
  background-color: #00284d;
}

#offerte {
  padding: 2rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#offerte h2 {
  color: #003366;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

textarea:focus {
  outline: none;
  border-color: #003366;
  box-shadow: 0 0 5px rgba(0, 51, 102, 0.3);
}

button[type="submit"] {
  background-color: #003366;
  color: gold;
  padding: 0.8rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005fa3;
}

button[type="submit"]:active {
  background-color: #002f57;
}

textarea:invalid {
  border-color: #ff4d4d;
}

textarea:valid {
  border-color: #4CAF50;
}

label span {
  color: #ff4d4d;
  margin-left: 0.2rem;
}

.fancy-back-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(45deg, #003366, #005fa3);
  color: gold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fancy-back-button:hover {
  background: linear-gradient(45deg, #005fa3, #003366);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.fancy-back-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.back-to-menu {
  text-align: center;
  margin-top: 2rem;
}

.cta-button.offerte-aanvraag {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #007bff;
  color: gold;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button.offerte-aanvraag:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.cta-button.offerte-aanvraag:active {
  background-color: #003f7f;
  transform: translateY(0);
}

/* Download Button Popup Styling */
.download-btn-container {
  position: relative;
  display: inline-block;
}

.download-btn-popup {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -120%);
  background-color: #000;
  color: gold;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  white-space: nowrap;
  z-index: 10;
  max-width: 250px;
  word-wrap: break-word;
}

.download-btn-container:hover .download-btn-popup {
  visibility: visible;
  opacity: 1;
}

.download-btn-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}
/* Optionally, limit the maximum width */
.responsive-image {
  max-width: 100%; /* Scale to fit the container */
  height: auto; /* Maintain aspect ratio */
  width: auto;
  display: block;
  margin: 0 auto;
  max-width: 600px; /* Optional: limit max width */
}
/* Centering the blog button container */
.blog-button-container {
  display: flex;
  justify-content: center; /* Centers the button horizontally */
  align-items: center; /* Centers the button vertically if needed */
  width: 100%; /* Ensure the container spans the full width */
  height: 100vh; /* Optional: Makes the container take the full height of the viewport */
}

/* High-Class Styling for 'Bekijk onze Blog' button */
.fancy-blog-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #003366; /* TransArabe main color */
  color:gold;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Light shadow */
  border: 2px solid #003366; /* Border matching the background color */
  width: auto;
  max-width: 300px; /* Limit max width for responsiveness */
  margin: 10px 0;
  text-transform: initial;
  font-family: 'Inter', sans-serif; /* Clean, modern font */
  position: relative;
}

/* Hover effect for 'Bekijk onze Blog' button */
.fancy-blog-button:hover {
  background-color: #ffd700; /* Golden background on hover */
  color: #003366; /* Change text color to dark blue */
  transform: scale(1.05); /* Slight scale-up effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Active state for 'Bekijk onze Blog' button */
.fancy-blog-button:active {
  background-color: #00284d; /* Darker shade when clicked */
  transform: scale(0.98); /* Slight scale-down effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Lighter shadow on active */
}

/* Icon positioning (optional) */
.fancy-blog-button::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url('/assets/logo.png'); /* Optional: Add an icon (TransArabe logo) */
  background-size: contain;
  background-repeat: no-repeat;
} 
/* Responsive user avatar image */
.user-avatar img.avatar-img {
    width: 100%;
    height: auto;
    max-width: 150px; /* or any size you prefer */
    border-radius: 50%; /* Optional, for a circular avatar */
}
/* Fancy menu button style */
.nav-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003366; /* TransArabe dark blue */
    color: gold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a.cta-button:hover {
    background-color: #ffd700; /* TransArabe yellow */
    color: #003366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu a.cta-button:active {
    background-color: #0056b3;
    box-shadow: none;
}

.nav-menu a.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #ffd700;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-menu a.cta-button:hover::before {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}
/* Avatar Section: Make avatar responsive */
.avatar-container {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-img {
    width: 100%;
    height: auto;
    max-width: 150px; /* Adjust max-width as per your design */
    border-radius: 50%; /* Circular shape for the avatar */
    border: 2px solid #ddd; /* Optional: adds a border around the avatar */
}

/* Responsive styling for menu items */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #003366; /* Dark blue background */
    color: gold;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
}

nav ul li a:hover {
    background-color: #ffd700; /* Yellow hover effect */
    color: #003366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav ul li a:active {
    background-color: #0056b3;
    box-shadow: none;
}

/* Avatar upload form */
form input[type="file"] {
    display: block;
    margin: 10px 0;
    padding: 5px;
    font-size: 16px;
}

.cta-button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #ffd700;
    color: purple;
}

.cta-button:active {
    background-color: #0056b3;
}
 /* Fancy popup styling */
        .download-btn {
            background-color: #007bff;
            color: gold;
            padding: 8px 15px;
            text-decoration: none;
            border-radius: 5px;
            position: relative;
        }

        .download-btn:hover {
            background-color: #0056b3;
        }

        /* External filename popup */
        .download-btn:hover::after {
            content: attr(data-file-name);
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: gold;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            visibility: visible;
            opacity: 1;
            max-width: 400px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        /* Status cell coloring */
        .status-cell {
            padding: 10px;
            font-weight: bold;
            text-align: center;
            position: relative;
        }

        .status-pending {
            background-color: #f8d7da;
            color: #721c24;
        }

        .status-in-progress {
            background-color: gold;
            color: #856404;
        }

        .status-done {
            background-color: #d4edda;
            color: #155724;
        }

        .status-cancelled {
            background-color: #f8d7da;
            color: #721c24;
        }

      /* Pagination container */
.pagination {
    display: flex;
    justify-content: center; /* Center the pagination controls */
    align-items: center;
    margin-top: 20px;
    gap: 10px; /* Space between items */
}

.pagination-btn, #page-input, button {
    padding: 8px 15px;
    font-size: 16px;
    background-color: #003366;
    color: gold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-btn:hover, button:hover {
    background-color: #ffd700;
    color: #003366;
}

.pagination-btn.disabled {
    background-color: #ccc;
    pointer-events: none;
}

#page-input {
    width: 60px; /* Adjust width of the input box */
    text-align: center;
}

/* Disable Go button when page is out of range */
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
@media screen and (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-logo img {
        max-width: 100px; /* Make logo smaller on mobile */
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 18px;
    }
}
/* Center the logo and make it smaller */
.dashboard-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-logo img {
    width: 100%;  /* Ensure logo is responsive */
    max-width: 150px; /* Max width to make the logo smaller */
    height: auto;
}

/* Make the text larger */
h2 {
    font-size: 2rem; /* Larger font size for headings */
    font-weight: bold;
    text-align: center;
}

/* Increase text size on smaller screens */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.8rem; /* Slightly smaller text for smaller screens */
    }

    .dashboard-logo img {
        max-width: 120px; /* Reduce logo size on small screens */
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.5rem; /* Even smaller text for very small screens */
    }

    .dashboard-logo img {
        max-width: 100px; /* Further reduce logo size on very small screens */
    }
}
/* Search Input Styling */
.search-input {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 300px; /* Max width for the search input */
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Button Styling */
.cta-button, .pagination-btn, button {
    padding: 12px 25px;
    background-color: #003366; /* Dark blue */
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover, .pagination-btn:hover, button:hover {
    background-color: #ffd700; /* Yellow on hover */
    color: #003366;
}

.cta-button:active, .pagination-btn:active, button:active {
    background-color: #0056b3;
    box-shadow: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.pagination-btn {
    background-color: #003366;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.pagination-btn:hover {
    background-color: #ffd700;
    color: #003366;
}

.pagination-btn.disabled {
    background-color: #ccc;
    pointer-events: none;
}

button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
}
 /* TransArabe Fancy Style */
        .main-header {
            background-color: #003366;
            padding: 1rem;
            color: gold;
            text-align: center;
        }

        .dashboard-logo img {
            width: 120px;
            height: auto;
        }

        .nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .nav-menu li {
            display: inline-block;
        }

        .nav-menu a {
            text-decoration: none;
            color: gold;
            background-color: #ffbb33;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
        }

        .nav-menu a:hover {
            background-color: #ff9900;
        }

        .cta-button {
            background-color: #003366;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
        }

        .cta-button:hover {
            background-color: #ffbb33;
        }

        .user-info-card {
            background-color: #f4f4f4;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .user-info {
            flex: 1;
        }

        .user-avatar {
            flex-shrink: 0;
            margin-left: 20px;
        }

        .avatar-img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        .request-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .request-table th, .request-table td {
            padding: 12px;
            text-align: left;
            border: 1px solid #ddd;
        }

        .request-table th {
            background-color: #003366;
            color: white;
        }

        .request-table tr:hover {
            background-color: #f5f5f5;
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .pagination-btn {
            background-color: #003366;
            color: white;
            padding: 8px 12px;
            margin: 0 5px;
            text-decoration: none;
            border-radius: 5px;
        }

        .pagination-btn:hover {
            background-color: #ffbb33;
        }

        .pagination-btn.disabled {
            background-color: #ccc;
            pointer-events: none;
        }

        .search-input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }

        .request-table td a {
            color: #003366;
            text-decoration: none;
            font-weight: bold;
        }

        .request-table td a:hover {
            color: #ffbb33;
        }
		.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1.1em;
    border-radius: 5px;
}

/* Tooltip style */
.download-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.download-btn::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;  /* Position the tooltip above the element */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: gold;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    white-space: nowrap;
    font-size: 12px;
}

/* Show the tooltip when hovering over the download button */
.download-btn:hover::after {
    opacity: 1;
    visibility: visible;
}
 /* Make images responsive */
        .blog-thumbnail {
            width: 100%;    /* Make image take the full width of its container */
            height: auto;   /* Keep the aspect ratio intact */
            border-radius: 8px;  /* Optional: Add rounded corners */
        }

        /* Blog post container */
        .blog-posts-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .blog-post {
            flex: 1 1 calc(33% - 20px);  /* Adjust the width of the post */
            box-sizing: border-box;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .post-details {
            padding: 10px;
        }

        .read-more {
            color: #005fa3;
            text-decoration: underline;
        }

        .read-more:hover {
            color: #003366;
        }
		/* Style for the images to make them responsive */
        .blog-thumbnail {
            width: 100%;    /* Make image take up the full width of its container */
            height: auto;   /* Maintain the aspect ratio */
            border-radius: 8px;  /* Optional: Add rounded corners */
        }

        /* Blog Post Container */
        .blog-post-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .post-details {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .post-details h2 {
            font-size: 2rem;
            color: #003366;
            margin-bottom: 10px;
        }

        .post-content {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        }

        /* Navigation Links Styling */
        nav ul {
            list-style-type: none;
            padding: 0;
        }

        nav ul li {
            display: inline;
            margin-right: 20px;
        }

        nav ul li a {
            color: #005fa3;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul li a:hover {
            color: #003366;
        }
		/* Button Styles */
.cta-button {
    background-color: #005fa3;
    color: white;
    padding: 12px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: purple;
}

/* Google login button */
.google-login-btn {
    background-color: #db4437; /* Google Red */
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    color: white;
    transition: background-color 0.3s ease;
}

.google-login-btn:hover {
    background-color: #c1351d;
}

.google-login-btn i {
    margin-right: 10px;
}

/* Responsive image */
.responsive-image {
    max-width: 100%;
    height: auto;
}
/* Ensure the menu items do not exceed the right margin */
#main-menu {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 0;
}

#main-menu li {
  margin: 0;
}

/* Style for the menu links to ensure visibility */
#main-menu li a {
  text-decoration: none;
  padding: 10px 15px;
  color: gold;  /* White text color by default */
  font-weight: 600;
  font-size: 16px;
  background-color: #003366;  /* Blue background */
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s ease;  /* Added color transition */
}

#main-menu li a:hover {
  background-color: #005fa3;  /* Lighter blue background on hover */
  color: gold;  /* Ensure text is white on hover */
}



/* Responsive image for logo */
.responsive-image {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

/* Button styles */
.cta-button {
  background-color: #003366;
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

/* Fancy button for Google login */
.google-login-btn {
  display: inline-flex;
  align-items: center;
  background-color: #db4437;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.google-login-btn:hover {
  background-color: #c1351d;
}

.google-login-btn i {
  margin-right: 10px;
}

/* Back to Menu Button */
.fancy-back-button {
  background-color: #003366;
  color: gold;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.fancy-back-button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}
/* Style for the top bar where the language links are located */
.language-switcher {
    display: flex;
    align-items: center;  /* Vertically align the items */
    justify-content: flex-start;  /* Align to the left */
    gap: 15px;  /* Add spacing between the links */
    font-size: 16px;  /* Adjust font size */
    font-weight: bold; /* Make text bold */
}

/* Style for individual language links */
.language-switcher a {
    text-decoration: none;  /* Remove underline */
    color: gold;  /* Set text color to gold */
    padding: 5px 10px;
    border-radius: 5px;
    background-color: transparent;  /* Transparent background */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for language links */
.language-switcher a:hover {
    background-color: #005fa3;  /* Light blue background when hovered */
    color: purple;  /* White text color when hovered */
}

/* Active language link (current language) */
.language-switcher a.active {
    background-color: #005fa3;  /* Active language button gets highlighted */
    color: purple;  /* White text color for active link */
}

/* Fancy Button Styling specifically for Translator Space button */
.fancy-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: initial;
    text-align: center;
    border-radius: 8px;
    background-color: #003366; /* TransArabe Blue */
    color: gold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Hover Effect for the "Translator Space" Button */
.fancy-btn:hover {
    background-color: #FFD700; /* TransArabe Yellow */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow for hover */
}

/* Focused (active) State */
.fancy-btn:active {
    background-color: #003366; /* Darker Blue when clicked */
    transform: translateY(0); /* Reset lift */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Reset shadow */
}

/* Optional: Adding a slight gradient for extra effect */
.fancy-btn {
    background-image: linear-gradient(45deg, #003366, #005fa3); /* Gradient effect */
}

/* Responsive Design: Make the button a little larger on smaller screens */
@media screen and (max-width: 768px) {
    .fancy-btn {
        padding: 14px 28px;
        font-size: 18px;
    }
}
/* Search bar styling */
.search-bar {
    margin-bottom: 1rem;
}

#request-search {
    padding: 8px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#request-search::placeholder {
    color: #888;
}

/* Optional: Style the search bar on focus */
#request-search:focus {
    outline: none;
    border-color: #003366; /* Highlight border on focus */
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003366; /* Dark Blue */
    color: gold;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #005fa3; /* Lighter Blue */
    transform: translateY(-2px);
}

.fancy-btn {
    border: 2px solid #003366; /* Matching border for consistency */
    padding: 12px 25px;
    background-color: transparent;
    color: #003366;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fancy-btn:hover {
    background-color: #003366;
    color: gold;
    transform: translateY(-2px);
}
/* ========================== Navigation Section ========================== */
/* Main navigation menu styles */
#main-menu {
  display: flex;
  justify-content: center; /* Center align menu items */
  list-style: none; /* Remove list bullet points */
  gap: 2rem; /* Space between menu items */
  padding: 0;
  margin: 1.5rem 0; /* Vertical spacing */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: none; /* Hidden by default on mobile */
}

/* Styling for each navigation link */
#main-menu li a {
  text-decoration: none;
  font-size: 1.4rem;
  color: gold;
  font-weight: 700;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#main-menu li a:hover {
  background-color: #003366;
  color: gold;
  border-color: #ffd700;
}

/* ========================== Mobile Navigation Toggle ========================== */
/* Mobile navigation toggle (hidden by default) */
.nav-toggle {
  display: none; /* Hide toggle button on desktop */
  flex-direction: column; /* Stack the toggle icon */
  justify-content: center; /* Vertically center the toggle */
  cursor: pointer; /* Show pointer cursor */
}

.nav-toggle span {
  background: #ffd700; /* Gold toggle icon color */
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

/* ========================== Media Queries for Mobile ========================== */
/* Show hamburger menu only on small screens */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex; /* Show toggle button on mobile */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 9999; /* Ensure it stays on top */
  }

  .nav-toggle span {
    background: #ffd700; /* Gold toggle icon */
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px; /* Rounded corners for toggle icon */
  }

  /* Hide the main menu by default on mobile */
  #main-menu {
    display: none;
  }

  /* Show the main menu when the 'active' class is added */
  #main-menu.active {
    display: flex; /* Show the menu */
    flex-direction: column; /* Stack menu items vertically */
    align-items: center; /* Center-align items */
  }
}
/* Styling for gold border text */
.gold-border-text {
  font-size: 2rem; /* Adjust font size */
  font-weight: light; /* Make the text bold */
  color: gold; /* Default gold text color */
  position: relative;
  display: inline-block; /* Make the text behave like a block element */
  text-decoration: none; /* Remove underline from the link */
  padding: 5px; /* Add padding around the text */
  border: 2px solid transparent; /* Transparent border */
  border-radius: 5px; /* Optional: Rounded corners for the border */
  transition: color 0.3s, border-color 0.3s; /* Smooth transition for hover */
}

/* Hover effect for changing color */
.gold-border-text:hover {
  color: purple; /* Change text color to purple on hover */
  border-color: purple; /* Change border color to purple on hover */
}
/* Google Maps button style */
        .view-map-btn {
            background-color: #4285f4; /* Google blue */
            color: white;
            font-size: 16px;
            font-weight: 500;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .view-map-btn:hover {
            background-color: #357ae8; /* Darker blue on hover */
        }

        .view-map-btn .material-icons {
            font-size: 20px;
        }

        /* Optional: Shadow effect */
        .view-map-btn:focus {
            outline: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
		.legalize-btn {
    background-color: #1a73e8; /* Green color */
    color: gold;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline */
}

.legalize-btn:hover {
    background-color: #1558b3; /* Darker green on hover */
}

.legalize-btn .material-icons {
    font-size: 20px;
}

.legalize-btn:focus {
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.phone-btn {
    background-color: #1a73e8; /* Light blue for phone */
    color: gold;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline */
}

.phone-btn:hover {
    background-color: #1558b3 /* Darker blue on hover */
}

.phone-btn .material-icons {
    font-size: 20px;
}

.phone-btn:focus {
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-btn {
    background-color: #1a73e8; /* Google blue */
    color: gold;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #1558b3; /* Darker blue on hover */
}

.contact-btn .material-icons {
    font-size: 20px;
}

.contact-btn:focus {
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Desktop-only header alleen zichtbaar op brede schermen */
.desktop-only-header {
  display: none;
}

@media screen and (min-width: 1024px) {
  .desktop-only-header {
    display: block;
  }

  /* Verberg originele mobiele menu op desktop */
  .header-container,
  .nav-toggle {
    display: none !important;
  }
}
/* Paars bij hover op desktop menu-links */
.desktop-only-header nav ul li a:hover {
  color: purple !important;
}
.desktop-only-header a:hover {
  color: purple !important;
}
.nav-icon-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-icon-menu li {
  display: flex;
}

.nav-icon-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: gold; /* standaardkleur tekst */
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid purple;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.nav-icon-menu a i {
  color: gold; /* standaardkleur icoon */
  transition: color 0.3s ease, transform 0.4s ease;
  font-size: 1.2rem;
}

/* Hover-effect: goudkleurig */
.nav-icon-menu a:hover {
  color: #ffd700;            /* tekst goudkleur */
  border-color: #ffd700;     /* rand ook goudkleur */
  background-color: rgba(255, 215, 0, 0.1); /* zachte achtergrond */
}

.nav-icon-menu a:hover i {
  color: #ffd700;            /* icoon goudkleur */
  transform: rotate(-20deg) scale(1.25);
}
/* Mobiel menu: algemeen */
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Standaard items met iconen */
.mobile-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: bold;
  font-size: 1rem;
  color: purple;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.mobile-menu li a i {
  color: gold;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover: goud */
.mobile-menu li a:hover,
.mobile-menu li a:hover i {
  color: #ffd700;
}

/* GIF-knoppen (alleen onderaan) */
.gif-button {
  border: 2px solid purple;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  color: purple;
}

.gif-button:hover {
  color: #ffd700;
  border-color: #ffd700;
  background-color: rgba(255, 215, 0, 0.08);
}

.gif-button .gif-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
#home h1 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
}
#home {
  min-height: 60vh;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.request-table {
  width: 100%;
  border-collapse: collapse;
}

.request-table th,
.request-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

/* Mobiele weergave */
@media screen and (max-width: 768px) {
  .request-table {
    border: 0;
  }

  .request-table thead {
    display: none; /* Kolomkoppen bovenaan niet zichtbaar op mobiel */
  }

  .request-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
  }

  .request-table td {
    display: block;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    box-sizing: border-box;
  }

  .request-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .request-table {
    border: 0;
  }

  .request-table thead {
    display: none;
  }

  .request-table tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .request-table td {
    display: block;
    text-align: left;
    padding: 10px 10px 10px 120px; /* ruimte voor label */
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .request-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100px;
    font-weight: bold;
    white-space: normal;
    font-size: 15px;
    color: #333;
  }

  .request-table td:last-child {
    border-bottom: none;
  }
}
.download-btn {
  position: relative;
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 4px;
}

.download-btn:hover::after {
  content: attr(data-file-name);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: gold;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
}
<style>
  @media (max-width: 768px) {
    #diensten > div {
      flex-wrap: wrap !important;
      flex-direction: column !important;
      align-items: center !important;
    }

    #diensten aside {
      margin-bottom: 1.5rem;
    }
  }
</style>
