.links {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Search bar styling */
.search-form {
  display: flex;
  width: 100%; /* takes full available width */
  max-width: 500px; /* controls how long it can get */
}

.search-input {
  flex: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: #007bff;
}

.search-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #0056b3;
}

/* Optional: make it look good on small screens */
@media (max-width: 600px) {
  .links {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-form {
    max-width: 100%;
  }
}
.fotter-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.fotter-social-links ul li {
  display: inline-block;
}

.fotter-social-links .footer-link {
  color: #fff; /* adjust to match footer theme */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.fotter-social-links .footer-link:hover {
  color: #010409; /* Bootstrap primary color */
}

