.partners-area {
    position: relative;
    padding: 80px 0;
}

.partners-carousel.owl-carousel .owl-nav button {
    background: rgba(0, 0,0, 0.08);
    border-radius: 50%;
    color: #666;
    font-size: 28px;
    height: 50px;
    width: 50px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 2;
    left: -60px;
    visibility: hidden;
    box-shadow: 0 2px 8px rgba(0, 0,0, 0.1);
}

.partners-carousel.owl-carousel .owl-nav button i {
    position: relative;
    top: -2px;
}

.partners-carousel.owl-carousel .owl-nav button:hover {
    background: #f07c29;
    color: #fff;
}

.partners-carousel.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -60px;
}

.partners-area:hover .partners-carousel.owl-carousel .owl-nav button {
    opacity: 1;
    visibility: visible;
}

.partners-area:hover .partners-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -55px;
}

.partners-area:hover .partners-carousel.owl-carousel .owl-nav button.owl-next {
    right: -55px;
}

.partners-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-item a {
    display: block;
    width: 100%;
}

.partner-item img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    margin: 0 auto;
    display: block;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}


.bestseller-area-custom-padding {
    padding-top: 88px;
}

/* ==================== Latest Events Section ==================== */
.latest-events-area {
    background: #fff;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 124, 41, 0.15);
}

.event-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-img img {
    transform: scale(1.08);
}

.event-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.event-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f07c29;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(240, 124, 41, 0.4);
}

.event-card-date .event-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.event-card-date .event-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.event-card-content {
    padding: 25px;
}

.event-card-content .event-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #f07c29;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.event-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.4;
}

.event-card-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-card-content h3 a:hover {
    color: #f07c29;
}

.event-card-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.event-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-read-more:hover {
    color: #333;
    gap: 10px;
}

.event-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.event-read-more:hover i {
    transform: translateX(4px);
}

/* View All Events Button */
.events-view-all-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #f07c29;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f07c29;
}

.events-view-all-btn:hover {
    background: transparent;
    color: #f07c29;
}

.events-view-all-btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.events-view-all-btn:hover i {
    transform: translateX(4px);
}

/* Events Empty State */
.events-empty {
    padding: 80px 20px;
}

.events-empty i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.events-empty h3 {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
}

.events-empty p {
    color: #bbb;
    font-size: 15px;
}

/* ==================== Event Detail Page ==================== */
.event-detail-wrapper {
    padding: 20px 0;
}

.event-detail-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.event-detail-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f07c29;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.event-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 15px;
    line-height: 1.3;
}

.event-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #999;
    font-size: 15px;
}

.event-detail-meta i {
    color: #f07c29;
    margin-right: 6px;
}

.event-detail-hero {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.event-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.event-detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.event-detail-content p {
    margin-bottom: 20px;
}

.event-gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f07c29;
    display: inline-block;
}

.event-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.event-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.event-gallery-item:hover img {
    transform: scale(1.1);
}

.event-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 124, 41, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-gallery-item:hover .event-gallery-overlay {
    opacity: 1;
}

.event-gallery-overlay i {
    color: #fff;
    font-size: 28px;
}

.event-detail-back {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.event-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-detail-back a:hover {
    color: #333;
    gap: 10px;
}

/* ==================== Blog Listing Page ==================== */
.blog-page-area {
    background: #fff;
}

.blog-category-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}

.blog-category-btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: #f5f5f5;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-category-btn:hover,
.blog-category-btn.active {
    color: #fff;
    background: #f07c29;
    border-color: #f07c29;
}

.blog-category-btn .cat-count {
    display: inline-block;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 12px;
    margin-left: 4px;
}

.blog-category-btn:hover .cat-count,
.blog-category-btn.active .cat-count {
    background: rgba(255, 255, 255, 0.3);
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 124, 41, 0.15);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.blog-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f07c29;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(240, 124, 41, 0.4);
}

.blog-card-date .blog-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.blog-card-date .blog-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content .blog-category-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #f07c29;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: #f07c29;
}

.blog-card-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #333;
    gap: 10px;
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blogs-empty {
    padding: 80px 20px;
}

.blogs-empty i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.blogs-empty h3 {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
}

.blogs-empty p {
    color: #bbb;
    font-size: 15px;
}

/* ==================== Blog Detail Page ==================== */
.blog-detail-wrapper {
    padding: 20px 0;
}

.blog-detail-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-detail-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f07c29;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.blog-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 15px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #999;
    font-size: 15px;
}

.blog-detail-meta i {
    color: #f07c29;
    margin-right: 6px;
}

.blog-detail-hero {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.blog-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-back {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-back a:hover {
    color: #333;
    gap: 10px;
}

/* ==================== Partner Detail Page ==================== */
.partner-detail-wrapper {
    padding: 20px 0 60px;
}

.partner-detail-hero {
    text-align: center;
    padding: 50px 0 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}

.partner-detail-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: #fff;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.partner-detail-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(240, 124, 41, 0.2);
}

.partner-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.3;
}

.partner-detail-subtitle {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 20px;
}

.partner-detail-count {
    display: inline-block;
    background: rgba(240, 124, 41, 0.1);
    color: #f07c29;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
}

.partner-detail-count i {
    margin-right: 6px;
}

.partner-subject-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.partner-subject-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 124, 41, 0.15);
}

.partner-subject-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-subject-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.partner-subject-card:hover .partner-subject-card-img img {
    transform: scale(1.08);
}

.partner-subject-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-subject-card:hover .partner-subject-card-img::after {
    opacity: 1;
}

.partner-subject-card-content {
    padding: 25px;
}

.partner-subject-card-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.4;
}

.partner-subject-card-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-subject-card-content h3 a:hover {
    color: #f07c29;
}

.partner-subject-card-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.partner-subject-browse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-subject-browse:hover {
    color: #333;
    gap: 10px;
}

.partner-subject-browse i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.partner-subject-browse:hover i {
    transform: translateX(4px);
}

.partner-subject-empty {
    padding: 80px 20px;
    text-align: center;
}

.partner-subject-empty i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.partner-subject-empty h3 {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
}

.partner-subject-empty p {
    color: #bbb;
    font-size: 15px;
    margin-bottom: 20px;
}

.partner-detail-back {
    padding-top: 30px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.partner-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-detail-back a:hover {
    color: #333;
    gap: 10px;
}

/* ==================== Books Listing Page ==================== */
.books-page-area {
    background: #fff;
    padding: 0 0 60px;
}

.books-page-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #f5f5f5;
}

.books-page-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
}

.books-page-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f07c29;
    border-radius: 2px;
}

.books-count {
    font-size: 15px;
    color: #999;
    margin-top: 18px;
}

.books-back {
    margin-top: 15px;
}

.books-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #f07c29;
    text-decoration: none;
    transition: all 0.3s ease;
}

.books-back a:hover {
    color: #333;
    gap: 10px;
}

.books-back a i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.books-back a:hover i {
    transform: translateX(-4px);
}

.book-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(240, 124, 41, 0.15);
}

.book-card-img {
    position: relative;
    overflow: hidden;
    height: 380px;
    background: #f9f9f9;
}

.book-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-card:hover .book-card-img img {
    transform: scale(1.08);
}

.book-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-card-img::after {
    opacity: 1;
}

.book-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 124, 41, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.book-card:hover .book-card-overlay {
    opacity: 1;
}

.book-card-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-card-overlay a:hover {
    background: #fff;
    color: #f07c29;
}

.book-card-content {
    padding: 20px;
    text-align: center;
}

.book-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.book-card-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.book-card-content h4 a:hover {
    color: #f07c29;
}

.books-empty {
    padding: 80px 20px;
    text-align: center;
}

.books-empty i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.books-empty h3 {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
}

.books-empty p {
    color: #bbb;
    font-size: 15px;
}

/* ==================== Book Detail Page ==================== */
.book-detail-breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.book-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.book-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.book-breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.book-breadcrumb-list li a:hover {
    color: #f07c29;
}

.book-breadcrumb-list li::after {
    content: '\f105';
    font-family: 'FontAwesome';
    margin: 0 12px;
    color: #ccc;
    font-size: 12px;
}

.book-breadcrumb-list li:last-child::after {
    display: none;
}

.book-breadcrumb-list li.active {
    color: #f07c29;
    font-weight: 600;
}

.book-detail-area {
    padding: 0 0 50px;
}

.book-detail-cover-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: sticky;
    top: 20px;
}

.book-detail-cover-inner {
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
}

.book-detail-cover-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.book-detail-cover-card:hover .book-detail-cover-inner img {
    transform: scale(1.03);
}

.book-detail-info {
    padding-left: 30px;
}

.book-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.book-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.publisher-tag {
    background: rgba(240, 124, 41, 0.1);
    color: #f07c29;
}

.subject-tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.book-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 18px;
    line-height: 1.3;
}

.book-detail-isbn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.isbn-label {
    background: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.isbn-value {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.book-detail-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 4px solid #f07c29;
}

.book-detail-description p {
    margin: 0;
}

.book-detail-components {
    margin-bottom: 30px;
}

.components-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f07c29;
    display: inline-block;
}

.components-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.component-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.component-badge i {
    color: #f07c29;
    font-size: 14px;
}

.component-badge:hover {
    border-color: #f07c29;
    background: rgba(240, 124, 41, 0.05);
    color: #f07c29;
}

.book-sample-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #f07c29;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f07c29;
}

.book-sample-preview-btn:hover {
    background: transparent;
    color: #f07c29;
}

.book-sample-preview-btn i {
    font-size: 16px;
}

/* Downloads Section */
.book-downloads-area {
    padding: 60px 0 70px;
    background: #fff;
}

.book-section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.book-section-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
}

.book-section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f07c29;
    border-radius: 2px;
}

.book-section-heading h2 i {
    color: #f07c29;
    margin-right: 8px;
}

.book-section-heading p {
    font-size: 15px;
    color: #999;
    margin-top: 18px;
}

.book-downloads-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.book-downloads-row .book-download-card {
    flex: 1 1 0;
    max-width: calc(20% - 16px);
    min-width: 200px;
}

.book-download-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.book-download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(240, 124, 41, 0.18);
    border-color: transparent;
}

.book-download-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 22px 20px;
    position: relative;
}

.book-download-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 14px;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: center;
}

.book-download-card:hover h4 {
    color: #f07c29;
}

.download-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.download-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef5ec, #fff8f2);
    border-radius: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.book-download-card:hover .download-card-icon {
    background: linear-gradient(135deg, #fde8d4, #fdd9b8);
    transform: scale(1.08);
}

.download-card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.download-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.download-status.available {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.download-status.unavailable {
    background: rgba(0, 0, 0, 0.04);
    color: #bbb;
}

.download-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.download-lock-overlay i {
    font-size: 20px;
    color: #bbb;
    transition: all 0.3s ease;
}

.book-download-card.locked:hover .download-lock-overlay {
    background: rgba(255, 255, 255, 0.85);
}

.book-download-card.locked:hover .download-lock-overlay i {
    color: #f07c29;
    transform: scale(1.15);
}

/* Back Button */
.book-detail-back-section {
    padding: 40px 0 60px;
    background: #fff;
}

.book-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: #f07c29;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f07c29;
}

.book-back-btn:hover {
    background: #f07c29;
    color: #fff;
}

.book-back-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.book-back-btn:hover i {
    transform: translateX(-4px);
}

 /* ==================== Responsive ==================== */
@media (max-width: 991px) {
    .event-card-img {
        height: 200px;
    }

    .event-detail-title {
        font-size: 28px;
    }

    .blog-card-img {
        height: 200px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .partner-detail-title {
        font-size: 28px;
    }

    .partner-subject-card-img {
        height: 180px;
    }

    .book-card-img {
        height: 320px;
    }

    .book-detail-title {
        font-size: 28px;
    }

    .book-detail-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .book-detail-cover-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .book-downloads-row .book-download-card {
        max-width: calc(33.333% - 14px);
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .event-card-img {
        height: 180px;
    }

    .event-card-content {
        padding: 20px;
    }

    .event-card-content h3 {
        font-size: 18px;
    }

    .event-detail-title {
        font-size: 24px;
    }

    .event-gallery-item img {
        height: 160px;
    }

    .blog-card-img {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-content h3 {
        font-size: 18px;
    }

    .blog-detail-title {
        font-size: 24px;
    }

    .blog-category-filter {
        gap: 8px;
    }

    .blog-category-btn {
        padding: 7px 16px;
        font-size: 13px;
    }

    .partner-detail-title {
        font-size: 24px;
    }

    .partner-detail-logo {
        width: 100px;
        height: 100px;
    }

    .partner-subject-card-img {
        height: 160px;
    }

    .partner-subject-card-content {
        padding: 20px;
    }

    .partner-subject-card-content h3 {
        font-size: 18px;
    }

    .books-page-header h2 {
        font-size: 26px;
    }

    .book-card-img {
        height: 280px;
    }

    .book-card-content {
        padding: 15px;
    }

    .book-card-content h4 {
        font-size: 15px;
    }

    .book-detail-title {
        font-size: 24px;
    }

    .book-detail-description {
        padding: 15px;
        font-size: 14px;
    }

    .book-section-heading h2 {
        font-size: 24px;
    }

    .book-download-card h4 {
        font-size: 14px;
    }

    .download-card-icon {
        width: 46px;
        height: 46px;
    }

    .download-card-icon img {
        width: 30px;
        height: 30px;
    }
}
