.top-fixed header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo-box {
  width: auto; /* Adjust width dynamically */
  height: 100px; /* Set maximum width */
  background-color: #f0f0f0;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden; /* Ensure the image does not overflow */
  margin-right: 10px; /* Add spacing between logo and text */
}
.logo-box img {
  display: block; /* Ensure the image behaves as a block element */
  height: 100px;
  border-radius: 10px;
  object-fit: contain; /* Preserve aspect ratio */
}
/* Basic setup */
body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
header img {
  width: 100%;
  height: auto;
  display: block;
}
/* Separate content sections */
section {
  margin: 10px;
  padding: 20px;
  background-color: #f8f9fa;
  box-shadow: 0 0 5px #ccc;
}
/* Navigation styles */
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #f0f0f0;
  text-align: center;
  padding: 5px;
}
nav ul li {
  display: inline;
  margin-right: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #444; /* Dark gray text */
  font-weight: bold; /* Make the text bold */
  transition: color 0.3s; /* Smooth transition for color change */
}
nav ul li a:hover {
  color: #777; /* Lighter gray text on hover */
}
.top-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-bottom: 0px;
}
/* Main content area styles */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 200px;
}
.main-container {
  max-width: 1000px; /* Example max-width */
}
.main-content {
  width: 80%; /* Adjust based on your design */
  margin-bottom: 20px; /* Add some space between main content and widgets */
}
/* Widget container styles */
.widget-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 0 5px #ccc;
  padding: 10px; /* Add 10px of padding on the left and right */
  width: 80%; /* Make sure the widget container spans the entire width */
  max-width: 1000px; /* Limit the maximum width of the widget container */
  margin: 0 auto; /* Center the widget container horizontally */
}
.widget {
  width: calc(250px); /* Adjust based on your design */
  min-height: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
	
	
}
.widget img {
  width: 100%;
  height: 200px;
  object-fit:contain;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.widget p {
  text-align: center;
  margin-top: 10px;
}
.success {
  color: green;
  font-weight: bold;
}
.error {
  color: red;
  font-weight: bold;
}
/* Centering style for map content */
.map-content {
  text-align: center;
  margin-top: 20px;
}
/* Responsive adjustments */
@media (max-width: 800px) {
  /* Hide the map content */
  .map-content {
    display: none;
  }
  .nav ul li {
    display: block;
    margin-right: 0;
  }
  .header img {
    h: 100%;
    height: auto;
    display: block;
  }
  .main {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    padding-top: 180px;
  }
  .main-content {
    width: 100%;
  }
  .widget-container {
    flex-direction: column;
    padding: 0; /* Reset padding */
  }
  .widget {
    width: calc(100% - 20px); /* Adjust the width to fit the container with padding */
    margin-bottom: 20px; /* Add some space between widgets */
  }
  .logo-box {
    display: none; /* Initially hide the logo box */
  }
}