footer {
    background-color: #2e2a4e;
    color: white;
    margin-top: -80px; /* Add a negative margin-top value to create a gap between the banner container and the footer */
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2; /* Decrease the z-index to keep the footer below the container */
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin: 10px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f2f2f2;
}

.footer-left {
  flex: 1;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-social-media {
  list-style: none;
  display: flex;
  padding: 0;
  scale: 2;
  margin-right: 20px;
}

.footer-social-media li {
  margin-right: 10px;
}

.footer-social-media a {
  color: #fcf9f9;
}

.footer-sitemap {
  list-style: none;
  padding: 10px;
  margin: 20px;
}

.footer-sitemap li {
  margin-bottom: 5px;
}

.footer-sitemap a {
  color: #ffffff;
  text-decoration: none;
}
.footer-contact-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-left: 0px;
  margin-top: 30px;
  overflow-x: hidden;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 90%;
  padding: 8px;
  margin-bottom: 10px;
  border-right: 10px solid #ffffff;
  background-color:#2e2a4e;
  border: 1px solid #ffffff;
  border-radius: 4px;
}

.footer-contact-form button {
  padding: 8px 16px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-contact-form button:hover {
  background-color: #555;
}
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0e0e0;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.footerimage-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f200;
  padding: 20px;
  position: relative;
  bottom: 0;
  padding-bottom: 55px;
  left: 0;
  margin-top: 100px;
  width: 100%;
}

.footerimage-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 1s;
  
}
            .background-image {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 75vh;
            background-image: url("images/home-banner.png");
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -1;
            margin-top: 0px;
            margin-bottom: 100px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5); /* Drop shadow properties */
            }