.page-navigation-wrapper {
  position: relative;
  overflow: hidden;
  background: #e6eff2;
  padding: 173px 0;
}

.book1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.book2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.page-heading h1 {
  color: #012e4a;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  position: relative;
  z-index: 9;
}

.custom-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.custom-navigation li {
  color: #036280;
  text-transform: capitalize;
  list-style: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.custom-navigation li i {
  color: #012e4a;
  font-size: smaller;
  font-weight: bolder;
}

.custom-navigation li a {
  color: #012e4a;
  text-decoration: none;
}

.custom-navigation li a:hover {
  color: #012e4a;
  text-decoration: none;
}
.author-fix {
  padding: 100px 0;
}

.author-card {
  background-color: #d0e1e7;
  padding: 2rem;
  border-radius: 16px;
  max-width: 1550px;
  display: flex; /* Use flexbox for horizontal layout */
  align-items: center; /* Center align items vertically */
}

.author-image-wrapper {
  margin-right: 1rem; /* Space between image and info */
}

.author-image-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed #ff6500;
  padding: 4px;
  overflow: hidden; /* Ensure the image stays within bounds */
}

.author-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex-grow: 1; /* Allow info section to take remaining space */
}

.author-label {
  color: #2d3748;
  font-size: 24px;
  font-weight: 700;
  margin-left: 4px;
}

.author-location {
  color: #2d3748;
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 4px;
}

.author-description {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: #e2e8f0;
  color: #2d3748;
}

.stats-container {
  display: flex;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 0 1.5rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: #cbd5e0;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  color: #4a5568;
  font-size: 0.875rem;
}


.featured-books-title {
  color: #0b2d4d;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-top: 30px;
}

.unique-books-container {
  position: relative;
  overflow-x: auto;
  padding: 20px 0;
}
.unique-books-wrapper {
  display: flex;
  gap: 20px;
  padding: 10px;
}
.unique-book-card {
  min-width: 280px;
  position: relative;
  overflow: hidden;
}
.unique-book-cover {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.unique-rating-stars {
  color: #ffc107;
}
.unique-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.unique-hover-dots {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.unique-dot-action {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.5s ease;
  transform: rotateY(180deg);
  opacity: 0;
  perspective: 1000px;
}
.unique-book-card:hover .unique-dot-action {
  transform: rotateY(0);
  opacity: 1;
}
.unique-book-card:hover .unique-dot-action:nth-child(1) {
  transition-delay: 0s;
}
.unique-book-card:hover .unique-dot-action:nth-child(2) {
  transition-delay: 0.1s;
}
.unique-book-card:hover .unique-dot-action:nth-child(3) {
  transition-delay: 0.2s;
}
.unique-book-image-container {
  position: relative;
  overflow: hidden;
}
.unique-books-container::-webkit-scrollbar {
  display: none;
}
.unique-books-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

