body {
  background-color: #f5f6f7;
  font-family: "Cairo", sans-serif;
}

/* Navbar */

.navbar-nav {
  width: 100%;
  justify-content: center;
}
.navbar-nav .nav-link {
  position: relative;
  color: #777;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #895200;
}
.navbar-toggler {
  border: 1px solid #895200;
  padding: 5px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}
/* Active Link */
.navbar-nav .nav-link.active,
.pagination-color {
  color: #895200 !important;
  font-weight: 600;
}

/* Underline effect */
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #895200;
  transition: 0.3;
}

.navbar-brand img {
  height: 70px;
  border-radius: 5px;
}

/* Header Section */
.header-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 20px 0;
}

.header-title {
  font-size: 32px;
  font-weight: bold;
}

/* Pagination main color */
.pagination .page-link {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #f5f5f5;
}

/* Hover effect */
.pagination .page-link:hover {
  background-color: #e0e0e0;
  color: #000;
}

/* Active page */
.pagination .page-item.active .page-link {
  background-color: #c58a2a;
  border-color: #c58a2a;
  color: #fff;
}
