.navbar-center {
      justify-content: center;
    }

    @media (max-width: 991.98px) {
      .navbar-center {
        justify-content: start;
      }
    }

.search-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    background: #ffffff;
    max-width: 400px;
    margin: 0 auto;
  }

  .search-title {
    font-size: 20px;
    font-weight: 700;
    color: #198754;
  }

  .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.2);
  }

  .btn-search {
    background-color: #198754;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }

  .btn-search:hover {
    background-color: #157347;
  }

  @media (max-width: 576px) {
    .search-card {
      padding: 1.5rem;
    }
  }

    .form-control:focus {
      border-color: #198754;
      box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
    }
    /* Footer Styling */
  footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  footer h5 {
    color: #ffffff;
    font-size: 1.1rem;
    border-bottom: 2px solid #6366f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  footer p, footer li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
  }

  footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: #6366f1; /* Indigo hover */
    text-decoration: underline;
  }

  footer .fa {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  footer .fa:hover {
    transform: scale(1.1);
    color: #6366f1;
  }

  footer .list-unstyled li {
    margin-bottom: 8px;
  }

  footer hr {
    border-top: 1px solid #4b5563;
    margin: 30px 0;
  }

  footer .text-center p {
    font-size: 0.9rem;
    color: #9ca3af;
  }

  /* Responsive tweaks */
  @media (max-width: 767px) {
    footer {
      text-align: center;
    }

    footer .row > div {
      margin-bottom: 30px;
    }

    footer .fa {
      margin: 0 10px;
    }
  }