body {
    font-family: 'Roboto', sans-serif; /* Apply Roboto font to the body */ /* Adjust the blur intensity as needed */
  }

/* Styles for the header */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Adjust as needed */
    background-color: transparent;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
    /* Other header styles */
  }

  .image-container {
    position: fixed;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ensure the image is above the background overlay */
  }
  
  /* Style for the image */
  .image-container img {
    max-width: 80%; /* Adjust the image size as needed */
    max-height: 80vh; /* Adjust the image height as needed */
    object-fit: contain; /* Ensure the entire image is visible */
  }

  .container-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
  }
  
  .content-1 {
    flex: 1;
    padding-right: 20px;
  }

  .container-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
  }
  
  .content-2 {
    flex: 1;
    padding-right: 20px;
  }

  .container-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
  }
  
  .content-3 {
    flex: 1;
    padding-right: 20px;
  }
  
  .container-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
  }
  
  .content-4 {
    flex: 1;
    padding-right: 20px;
  }

  /* Background overlay for blur effect */
  .background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    backdrop-filter: blur(8px); /* Apply the blur effect */
    background-size: cover;
  }
  /* Styles for the header background */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Graphics/IMG_0537.jpg); /* Replace with your image path */
    background-size: cover; /* Maintain aspect ratio and cover the entire header */
    background-position: center; /* Center the image */
    z-index: -1; /* Place it behind other header content */
    /* Other styles for the background */
  }

  /* Styles for the company block */
  .company-block {
    position: absolute;
    top: 50%; /* Initial position - vertically centered */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #818181cc; /* Adjust the background color and opacity */
    padding: 20px;
    border-radius: 0px;
    transition: top 0.3s ease; /* Smooth transition when scrolled */
    text-align: center; /* Center the text */
    width: auto; /* Initial width */
  }
  
  .company-block.fixed {
    position: fixed;
    top: 0; /* Position at the top when scrolled */
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 40px); /* Match the width of the initial block */
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Add shadow when fixed */
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hidden outside the viewport */
    width: 250px;
    height: 100%;
    background-color: #333;
    padding-top: 50px; /* Space for the toggle button */
    transition: left 0.3s ease-in-out; /* Smoother slide effect */
    z-index: 999; /* Ensure sidebar appears above other content */
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
  }
  
  /* Styles for the sidebar toggle button */
  .toggle-button {
    font-size: 24px;
    padding: 10px;
    border: none;
    background-color: #fff; /* Transparent background */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
    cursor: pointer;
    z-index: 1000; /* Ensure the button stays above other elements */
    position: fixed; /* Fixed position */
    top: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    transition: left 0.3s ease-in-out; /* Smoother slide effect */
  }
  
  /* Styles for sidebar links/buttons */
  .sidebar-link {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    background-color: transparent; /* Transparent background */
    color: #fff; /* Text color */
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Hover background color */
  }
  
  /* Styles for the contact form */
  .contact-form {
    text-align: center;
    display: block; /* Initially shown */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #818181cc; /* Background color */
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
    transition: left 0.3s ease-in-out;
    width: 90%;
    max-width: 400px;
  }
  
  .contact-input {
    width: calc(100% - 20px);
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  }
  
  .contact-input[type="textarea"] {
    resize: none;
    overflow-y: auto;
    height: 150px;
  }
  
  .contact-submit {
    width: calc(100% - 20px);
    padding: 10px;
    border: none;
    border-radius: 0px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .contact-submit:hover {
    background-color: #eee;
  }
  
  .buffer-section {
    background-color: #333; /* Set the background color */
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5); /* Add a shadow effect */
    padding: 20px; /* Add padding inside the shadow */
    height: 300px; /* Set a fixed height or adjust as needed */
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none; /* Initially hidden */
  }

  .popup {
    display: none; /* Hide the pop-up initially */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Set the width of the pop-up */
    max-width: 500px; /* Set the maximum width of the pop-up */
    max-height: 70vh; /* Limit the height of the pop-up */
    overflow-y: auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2; /* Ensure the pop-up is above other content */
  }
  
  .popup-content {
    text-align: left;
  }
  
  /* Close button styles */
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  
  .close:hover {
    color: red;
  }