footer {
    background-color: #f8f9fa;
    background: linear-gradient(to right, #ff930f, #fff95b);
    border-top: 1px solid #dee2e6;
    padding-top: 1px; /* Adjusted padding-top */
    padding-bottom: 1px; /* Adjusted padding-bottom */
    
    bottom: 0;
    width: 100%;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
   
  }

  .footer-logo {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    margin-bottom: 1px;
  }

  .footer-logo svg {
    width: 40px;
    height: 32px;
    fill: #007bff; /* Bootstrap primary color */
  }

  .social-icons {
    display: flex;
    gap: 1rem;
  }

  .social-icon {
    font-size: 1.5rem;
    color: #007bff; /* Bootstrap primary color */
    text-decoration: none;
  }

  .nav-footerlinks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-footeritem {
    margin-right: 0.05rem;
  }

  .nav-footerlink {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-footerlink:hover {
    color: #007bff; /* Bootstrap primary color on hover */
  }

  .copyright {
    margin: 0;
    color: #6c757d;
  }