
body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 18px; /* Increased font size */
}
.navbar {
  position: fixed;
  width: 100%;
  background-color: #4f74a7;
  color: white;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between; /* Space between items */
  align-items: center; /* Center items vertically */
  padding: 0px 20px; /* Adjusted padding */
  font-size: 14px; /* Smaller font size */
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Enhanced shadow for more depth */
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 3px 13px; /* Reduced padding */
  transition: color 0.3s; /* Smooth color transition */
  position: relative; /* Added relative positioning */
}

.navbar a.highlight {
  color: yellow;
}

.navbar a:hover {
  color: #91ae73; /* Change text color on hover */
}

.navbar a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #91ae73; /* Fancy underline color */
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

.navbar a:hover::before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar .logo {
  height: 50px;/* Adjust logo height as needed */
 
}

.nav-links {
  display: flex;
  flex-grow: 1; /* Allow nav-links to grow */
  justify-content: space-around; /* Evenly distribute nav links */
}

.nav-links a {
  margin: 0 20px; /* Add margin between nav buttons */
} 

.header {
  background: url('img/bg.webp') no-repeat center center/cover;
  height: 500px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  color: white;
}

.header .left-column,
.header .right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .right-column {
  justify-content: center;
}

.header .icon {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin: 10px;
  border-radius: 50%; /* Ensures circular shape */
  transition: box-shadow 0.3s ease; /* Smooth transition for the glow effect */
}

.header .icon:hover {
  box-shadow: 0 0 30px 10px rgba(40, 164, 69, 0.8); /* Green glow shadow effect */
}

.header .icon img.ev-plugin-hybrid {
  width: 310px; /* Adjusted size */
  height: auto;
}

.header .icon img.other-icons {
  width: 100px; /* Adjusted size */
  height: auto;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.content {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: 10px;
  text-align: left;
}

.center-text {
  text-align: center;
  width: 100%;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .header {
    display: none; /* Hide header section on small screens */
  }
  .content {
    max-width: 100%;
  }
  .custom-button {
    padding: 5px 10px; /* Adjust padding for smaller buttons */
    font-size: 14px; /* Adjust font size for smaller buttons */
    margin-right: -5px; /* Adjust margin */
    margin-bottom: 5px; /* Adjust margin */
  }
  .custom-button button {
    padding: 5px 10px; /* Adjust padding for smaller buttons */
    font-size: 14px; /* Adjust font size for smaller buttons */
  }
}

.custom-button {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

.custom-button button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-color: #28a745; /* Green background color */
  color: #fff; /* White text color */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-button button:hover {
  background-color: #218838; /* Darker green on hover */
}

.utility-incentives {
  margin-top: 20px; /* Top margin for the section */
  margin-bottom: 20px; /* Bottom margin for the section */
  padding: 20px; /* Padding inside the section */
  background-color: #f8f9fa; /* Light gray background color */
  border: 2px solid #a0ba87; /* Border color */
  text-align: center; /* Center align text */
}

.utility-incentives h1 {
  color: #007bff; /* Blue heading color */
  margin-bottom: 20px; /* Bottom margin for the heading */
}

.utility-incentives p {
  margin-top: 10px; /* Top margin for paragraphs */
  margin-bottom: 0; /* Remove bottom margin for paragraphs */
}

.text-center {
  text-align: center; /* Center align text */
  padding: 20px; /* Padding for space */
}

.map {
  width: 100%;
  max-width: 100%;
  height: 300px; /* Fixed height for the map */
  overflow: hidden; /* Hide overflow if necessary */
  margin-bottom: 20px; /* Optional: add margin-bottom for spacing between map and empty space */
}

.empty-space {
  height: 100px; /* Fixed height of the empty space */
  background-color: #ffffff; /* White background */
}

.video-section {
  text-align: center; /* Center align video and text */
  padding: 0px;/* Optional: add padding for spacing */
}

.video-section h2 {
  margin-bottom: 0px; /* Optional: adjust margin for spacing */
}

.glow-border {
  max-width: 100%; /* Ensure video does not exceed container width */
  height: auto; /* Maintain aspect ratio */
  box-shadow: 0 0 80px #91ae73; /* Light glow border */
  border: 2px solid #91ae73; /* Optional: add a solid border */
}

.responsive-div {
  /* General styles for the div */
}

@media (max-width: 768px) {
  .header {
    display: none; /* Hide header section on small screens */
  }
  .content {
    max-width: 100%;
  }
  .custom-button {
    padding: 5px 10px; /* Adjust padding for smaller buttons */
    font-size: 14px; /* Adjust font size for smaller buttons */
    margin-right: -5px; /* Adjust margin */
    margin-bottom: 5px; /* Adjust margin */
  }
  .custom-button button {
    padding: 5px 10px; /* Adjust padding for smaller buttons */
    font-size: 14px; /* Adjust font size for smaller buttons */
  }

  .hamburger {
    display: block; /* Ensure the hamburger menu is visible on small screens */
    cursor: pointer;
    width: 30px; /* Width of the hamburger icon */
    height: 25px; /* Height of the hamburger icon */
    position: absolute; /* Change position to absolute */
    left: 10px; /* Move to the left */
    top: 10px; /* Optional: adjust top position */
    z-index: 1100; /* Ensure it's above other elements */
  }

  .hamburger div {
    background-color: #fff; /* Color of the hamburger lines */
    height: 4px; /* Thickness of the lines */
    width: 100%; /* Full width */
    position: absolute;
    left: 0;
    transition: 0.3s; /* Smooth transition for animations */
  }

  .hamburger div:nth-child(1) {
    top: 0;
  }

  .hamburger div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger div:nth-child(3) {
    bottom: 0;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
  }

  .nav-links {
    display: none; /* Hide nav-links by default on small screens */
  }

  .nav-links.active {
    display: flex; /* Show nav-links when active */
    flex-direction: column; /* Stack links vertically */
    font-size: 18px; /* Increase font size */
    padding: 10px; /* Optional: Add padding for spacing */
    background-color: #4f74a7; /* Background color to match navbar */
  }

  .nav-links a {
    color: white; /* White text color */
    padding: 15px; /* Increased padding for easier clicking */
    text-decoration: none; /* Remove underline */
    border-bottom: 1px solid #ffffff; /* Optional: Add border between items */
    transition: background-color 0.3s; /* Smooth background color transition */
  }

  .nav-links a:hover {
    background-color: #2c4b70; /* Darker background color on hover */
  }

  /* Move logo to the right on small screens */
  .navbar .logo {
    position: relative; /* Ensure it's positioned relative to its normal position */
    left: 20px; /* Move the logo 20px to the right; adjust as needed */
  }


}
.highlight-service {
  font-weight: bold; /* Make the text bold */
  background-color: #f1f8f1; /* Light green background to highlight the text */
  padding: 10px; /* Add padding around the text */
  margin-top: 10px; /* Add space from the top */
  margin-bottom: 0; /* Remove any bottom margin */
  border-left: 5px solid #28a745; /* Add a green left border to emphasize the highlight */
  color: #333; /* Dark text color for better readability */
  line-height: 1.4; /* Adjust line height for better spacing */
}
.highlight-join {
  font-weight: bold; /* Make the text bold */
  background-color: #f1f8f1; /* Light green background to highlight the text */
  padding: 10px; /* Add padding around the text */
  margin-top: 0px; /* Add space from the top */
  border-left: 5px solid #28a745; /* Add a green left border to emphasize the highlight */
  color: #333; /* Dark text color for better readability */
}
.main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px; /* Remove padding thats the gap between top and buttom of paragraph or picture in middel page */
  margin: 0px; /* Remove margin */
  box-sizing: border-box;
  flex-wrap: wrap;
}
.image-area {
    position: relative;
}

.centered-image {
    width: 400px; /* Adjusted size */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the overlay both horizontally and vertically */
    color: white;
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}
