
.footer-sec {
    background-color: #2c3e50;
    background-size: cover;
    width: 100%;
    min-height: 100vh; /* This ensures the footer takes at least the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
    margin: 0;
    box-sizing: border-box;
}
.content-box {
    border: 2px solid #ccc; /* Creates a border around the content */
    border-radius: 10px;    /* Optional: Rounds the corners of the box */
    padding: 20px;          /* Adds space inside the box */
    margin: 20px 0;         /* Adds vertical margin to separate it from other content */
    background-color: #f9f9f9; /* Light background color inside the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for a raised effect */
}
.light-blue-text {
    color: #00308F; /* This is a light blue color */
}

.Products {
    justify-self: center; /* Centers the "Products" column within its grid cell */
}
/* Existing styles */
body {
    padding-top: 80px;
    padding-bottom: 0px;
  }
  
  /* ... (all other existing styles) ... */
  
  /* Responsive styles for navbar */
  @media (max-width: 767px) {
      .navbar-brand {
          font-size: 16px;
      }
      .navbar-brand img {
          height: 40px;
          width: auto;
      }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
      .navbar-brand {
          font-size: 18px;
      }
      .navbar-brand img {
          height: 45px;
          width: auto;
      }
  }
  
  @media (min-width: 992px) {
      .navbar-brand {
          font-size: 20px;
      }
      .navbar-brand img {
          height: 50px;
          width: auto;
      }
  }
  
  /* Add any other styles here */
  <style>
  .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}
.navbar-brand img {
    margin-right: 20px; /* Adjust this value to control the space between logo and text */
    position: static; /* Remove absolute positioning */
}
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 16px;
    }
    .navbar-brand img {
        height: 40px;
        width: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand {
        font-size: 18px;
    }
    .navbar-brand img {
        height: 45px;
        width: auto;
    }
}

@media (min-width: 992px) {
    .navbar-brand {
        font-size: 20px;
    }
    .navbar-brand img {
        height: 50px;
        width: auto;
    }
}
   /* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .footer{
        padding: 30px 15px;
    }
}
