﻿
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
    background: transparent;
    border: none;
}

.header-logo img {
    width: 140px;
    height: auto;
}

.trending-layout1 {
    position: relative;
    padding: 80px 0px 50px;
    overflow: hidden;
    z-index: 1;
    /* margin: 80px 0px; */
}

    .trending-layout1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg/bg-1.png') center/cover no-repeat;
        opacity: 0.1;
        z-index: -1;
    }



.product-content {
    padding: 8px;
}

.product-title a {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
}

.product-text {
    font-size: 13px;
    color: #494949;
    /* margin: 12px 0; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fe940b;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
}

    .read-more span {
        transition: 0.3s;
    }

    .read-more:hover span {
        transform: translateX(5px);
    }

.sec-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    max-width: 700px;
    margin: 15px auto 0;
}

{
}

.romance-layout1 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
}

    .romance-layout1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg/bg-3.png') center/cover no-repeat;
        opacity: 0.1;
        z-index: -1;
    }





.podcast-video-card {
    background: #fff;
    border: 2px solid #ffc107;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 8px;
    border-radius: 30px;
}

.podcast-video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    height: auto;
}

    .podcast-video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.podcast-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 53%), rgba(0, 0, 0, 0.10));
    /* border: 2px solid #ffc107; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.podcast-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-decoration: none;
}

    .podcast-play-btn i {
        color: #fff;
        font-size: 34px;
        margin-left: 4px;
    }

.podcast-video-content {
    padding: 18px 10px 10px;
}

    .podcast-video-content h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
    }

        .podcast-video-content h3 a {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.5;
            max-height: 3em;
            color: #000;
        }

#videoModal .modal-dialog {
    max-width: 1100px;
}

#videoModal .modal-content {
    border: none;
    background: transparent;
}

#videoModal video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    background: #000;
}

.video-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

    .video-close-btn i {
        font-size: 20px;
        color: #000;
    }

    .video-close-btn:hover {
        transform: scale(1.05);
    }

#videoModal .modal-body {
    position: relative;
}

.modal-backdrop.show {
    opacity: 0.85 !important;
    background: #000 !important;
}

@media (max-width: 767px) {
    #videoModal video {
        height: 300px;
        border-radius: 15px;
    }

    .podcast-play-btn {
        width: 70px;
        height: 70px;
    }

        .podcast-play-btn i {
            font-size: 28px;
        }
}

.custom-about-image-wrap {
    position: relative;
    padding-right: 90px;
    padding-bottom: 80px;
}

.custom-about-main-img {
    border-radius: 30px;
    overflow: hidden;
}

    .custom-about-main-img img {
        width: 100%;
        height: 490px;
        object-fit: cover;
        border-radius: 30px;
        display: block;
    }

.custom-about-small-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    border-radius: 25px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

    .custom-about-small-img img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

@media (max-width: 991px) {

    .custom-about-image-wrap {
        padding-right: 50px;
        padding-bottom: 60px;
    }

    .custom-about-main-img img {
        height: 520px;
    }

    .custom-about-small-img {
        width: 220px;
    }

        .custom-about-small-img img {
            height: 220px;
        }
}

@media (max-width: 767px) {

    .custom-about-image-wrap {
        padding-right: 0;
        padding-bottom: 0;
    }

    .custom-about-main-img img {
        height: 400px;
    }

    .custom-about-small-img {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

        .custom-about-small-img img {
            height: 250px;
        }
}

.about-layout1 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
}

    .about-layout1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg/bg-2.png') center/cover no-repeat;
        opacity: 0.1;
        z-index: -1;
    }


.categories-layout2 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
}

    .categories-layout2::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg/bg-4.png') center/cover no-repeat;
        opacity: 0.1;
        z-index: -1;
    }



.offer-card {
    /* background: #fff; */
    position: relative;
    padding-bottom: 80px;
}

.offer-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
}

.offer-content {
    background: #fff;
    padding: 16px;
    width: 90%;
    margin-top: -44px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: absolute;
    left: 50%;
    z-index: 1;
    border-radius: 8px 8px 8px 8px;
    /* margin: 0px 15px; */
    transform: translate(-50%, 0px);
}

    .offer-content h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 3px;
        color: #222;
    }

    .offer-content p {
        font-size: 13px;
        color: #494949;
        margin-bottom: 0px;
        flex: 1;
    }

.offer-btn {
    display: inline-block;
    /* padding: 8px 25px; */
    /* border: 1px solid #e36b2c; */
    color: #e36b2c;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 600;
    line-height: 20px;
}

    .offer-btn:hover {
        /* background: #e36b2c; */
        color: #e36b2c;
    }

.offer-bottom {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    width: 100%;
    gap: 10px;
}

@media (max-width: 768px) {
    .offer-content {
        width: 100%;
        margin-top: 0px;
        position: relative;
    }
}


.offer-bottom p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 3px;
}



.social-icon-list {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 30px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Individual Colors */
.facebook {
    background: #1877f2;
}

.twitter {
    background: #000;
}

.instagram {
    background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888 );
}

.youtube {
    background: #ff0000;
}


.social-icon:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



.footer-about-widget {
    max-width: 300px;
}

.footer-logo img {
    max-width: 165px;
    margin-bottom: 13px;
    /* filter: brightness(0) invert(1); */
}

.footer-text {
    font-size: 15px;
    line-height: 28px;
    color: #000000;
    margin: 0;
}


.widget_title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .widget_title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #ff6600;
        border-radius: 10px;
    }



.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35);
    transition: all 0.3s ease;
    z-index: 999;
}

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(255, 102, 0, 0.45);
    }

    .back-to-top i {
        transition: 0.3s;
    }

    .back-to-top:hover i {
        transform: translateY(-3px);
    }




.books-layout1 {
    position: relative;
    padding: 80px 0px 50px;
    overflow: hidden;
    z-index: 1;
}

    .books-layout1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg/bg-1.png') center/cover no-repeat;
        opacity: 0.1;
        z-index: -1;
    }


.product-title a,
.event-short-text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-top: 4px;
    margin-bottom: 0px;
    line-height: 30px;
}

.product-title {
    margin-bottom: 6px;
}

.event-short-text {
    font-size: 13px;
    color: #494949;
    line-height: 1.5;
}



.header-contact ul {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .header-contact ul li {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #fff;
    }

        .header-contact ul li a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
            font-size: 15px;
        }

            .header-contact ul li a:hover {
                color: #ff9751;
            }

.header-contact i {
    color: #ffffff;
}


.header-search-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 0px 10px;
    border-radius: 40px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.08); */
    min-width: 400px;
    border: 1px solid #ff6600;
}

/* SEARCH BUTTON */
.hs-search-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #a7a7a7;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hs-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    padding: 10px;
    background: transparent;
    color: #000 !important;
}

    .hs-input::placeholder {
        color: #a7a7a7;
        opacity: 1;
        font-size: 14px;
    }

    .hs-input:focus {
        background-color: #fff !important;
    }

.hs-voice-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #ff6600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .hs-voice-btn:hover {
        transform: scale(1.1);
        background: #e85a00;
    }


.poet-layout1 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
}

    .poet-layout1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg/bg-2.png') center/cover no-repeat;
        opacity: 0.1;
        z-index: -1;
    }




.author-review-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: 25px;
    /*border: 2px solid #e6e6e6;*/
    transition: 0.4s ease;
    height: 100%;
    background-color: #fff;
    background-image: url('../img/bg/poet-bg.jpg');
}

    .author-review-card:hover {
        transform: translateY(-6px);
        /*border-color: #ff5a00;*/
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

.author-img {
    min-width: 130px;
    text-align: center;
}

    .author-img img {
        width: 150px;
        height: 150px;
        border-radius: 118px 118px 118px 118px;
        object-fit: cover;
        border: 4px solid #f2f2f2;
    }

    .author-img h5 {
        margin-top: 15px;
        font-size: 17px;
        font-weight: 600;
        color: #111;
    }

.author-content {
    flex: 1;
}

    .author-content p {
        font-size: 15px;
        /* line-height: 1.8; */
        color: #040404;
        margin-bottom: 18px;
    }

    .author-content h3 {
        font-size: 15px;
        font-weight: 600;
        color: #111;
    }

@media(max-width:767px) {

    .author-review-card {
        flex-direction: column;
        text-align: center;
    }

    .author-content h3 {
        font-size: 22px;
    }

    .author-content p {
        font-size: 15px;
    }
}




.whatsapp {
    display: inline-block;
    position: fixed;
    right: 30px;
    bottom: 120px;
    background: limegreen;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff !important;
    text-align: center;
    line-height: 56px;
    z-index: 99999999999;
    animation: ripple-out 1.5s ease-in-out infinite;
}

    .whatsapp i {
        font-size: 30px;
    }

@keyframes ripple-out {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}


@media (max-width: 767px) {

    .header-top {
        display: none;
    }

    .header-layout1.style2 .menu-inner {
        justify-content: space-between;
    }

    .trending-layout1 {
        padding: 40px 0 20px;
    }

    .romance-layout1 {
        padding: 40px 0px;
    }

    .about-layout1 {
        padding: 40px 0;
    }

    .categories-layout2 {
        padding: 40px 0px 20px;
    }

    .books-layout1 {
        padding: 40px 0px 20px;
    }

    .offer-card {
        padding-bottom: 20px;
    }

    .poet-layout1 {
        padding: 40px 0;
    }

    .footer-layout1::before {
        background-position: left;
    }

    .footer-layout1 .footer-top {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .header-layout1.style2 .header-middle {
        background-position: left;
        background-size: cover;
    }
}


.mobile-logo .logo {
    width: 100px;
}



/*---------------------------------------------publication-----------------------------------------------*/

.pub-section {
    position: relative;
    padding: 100px 0;
    background: url("../img/bg/bg-1.png") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 1;
}

    .pub-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(255 255 255 / 82%);
        z-index: -1;
    }


.py-120 {
    padding: 120px 0;
}

.pub-row {
    margin-bottom: 50px;
}

    .pub-row:last-child {
        margin-bottom: 0;
    }

.pub-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

    .pub-image img {
        width: 100%;
        height: 370px;
        object-fit: cover;
        transition: .5s;
    }

    .pub-image:hover img {
        transform: scale(1.08);
    }

.pub-content {
    padding-left: 40px;
}

.pub-subtitle {
    display: inline-block;
    padding: 6px 22px;
    background: #f3e7c9;
    color: #b17b15;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.pub-title {
    font-size: 30px;
    font-weight: 700;
    color: #1b2232;
    margin-bottom: 14px;
}

.pub-content p {
    color: #333;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
}

.pub-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

    .pub-list li {
        position: relative;
        padding-left: 28px;
        font-weight: 600;
        color: #222;
    }

        .pub-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #c18b21;
            font-size: 18px;
            font-weight: bold;
        }

.pub-btn {
    display: inline-block;
    padding: 10px 40px;
    background: linear-gradient(135deg, #dc3545, #ff8533);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(193,139,33,.30);
}

    .pub-btn:hover {
        background: #1b2232;
        color: #fff;
        transform: translateY(-5px);
    }

@media(max-width:991px) {

    .pub-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .pub-title {
        font-size: 34px;
    }

    .pub-image img {
        height: auto;
    }

    .pub-list {
        grid-template-columns: 1fr;
    }

    .pub-row {
        margin-bottom: 80px;
    }
}

@media(max-width:576px) {

    .py-120 {
        padding: 70px 0;
    }

    .pub-title {
        font-size: 28px;
    }

    .pub-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .pub-btn {
        width: 100%;
        text-align: center;
    }
}
/*----------------------------------------------------end------------------------------------------------*/


/*--------------------------------------------------vision mission----------------------------------------*/
.vm-section {
    padding: 80px 0;
    /* background: #f9f7f2; */
    position: relative;
}

.vm-row {
    margin-bottom: 70px;
}

.vm-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .vm-image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: .5s;
        display: block;
    }

    .vm-image:hover img {
        transform: scale(1.08);
    }

.vm-content {
    padding: 25px 20px 25px 45px;
}

.vm-subtitle {
    display: inline-block;
    background: #f6e7bf;
    color: #b98313;
    padding: 4px 22px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 13px;
    font-size: 13px;
}

.vm-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 34px;
    margin-bottom: 10px;
}

.vm-content p {
    font-size: 15px;
    color: #333;
    line-height: 26px;
    margin-bottom: 16px;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

    .vm-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 16px;
        font-size: 17px;
        font-weight: 600;
        color: #222;
    }

        .vm-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #c49728;
            font-size: 20px;
            font-weight: 700;
        }

.vm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 34px;
    background: linear-gradient(135deg, #dc3545, #ff8533);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(193,139,33,.30);
}

    .vm-btn:hover {
        background: #8d6409;
        color: #fff;
        transform: translateY(-4px);
    }

@media(max-width:991px) {

    .vm-image img {
        height: 420px;
    }

    .vm-content {
        padding: 40px 0 0;
    }

    .vm-title {
        font-size: 34px;
    }

    .vm-row {
        margin-bottom: 60px;
    }
}

@media(max-width:767px) {

    .vm-section {
        padding: 40px 0;
    }

    .vm-image img {
        height: 320px;
    }

    .vm-title {
        font-size: 26px;
    }

    .vm-content p {
        font-size: 16px;
        line-height: 28px;
    }
}

/*----------------------------------------------------end-------------------------------------------------*/


/*----------------------------------------------------why choose us--------------------------------------*/


.sp-why-section {
    padding: 80px 0;
    /* background: #f8f7f2; */
}

.sp-why-heading {
    margin-bottom: 70px;
}

.sp-why-subtitle {
    display: inline-block;
    padding: 8px 24px;
    background: #f4e4bd;
    color: #b88411;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sp-why-title {
    font-size: 35px;
    font-weight: 700;
    color: #1d2738;
    margin-bottom: 20px;
    line-height: 45px;
}

.sp-why-heading p {
    color: #333;
    font-size: 15px;
    line-height: 30px;
}

.sp-why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    border-bottom: 4px solid transparent;
}

    .sp-why-card:hover {
        transform: translateY(-10px);
        border-color: #c89828;
    }

.sp-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc3545, #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.sp-why-card:hover .sp-why-icon {
    background: #c89828;
}

.sp-why-icon i {
    font-size: 42px;
    color: #ffffff;
    transition: .4s;
}

.sp-why-card:hover .sp-why-icon i {
    color: #fff;
}

.sp-why-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.sp-why-card p {
    color: #333;
    line-height: 26px;
    margin: 0;
    font-size: 15px;
}

@media(max-width:991px) {

    .sp-why-section {
        padding: 40px 0;
    }

    .sp-why-title {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .sp-why-title {
        font-size: 28px;
    }

    .sp-why-card {
        padding: 35px 25px;
    }
}
/*------------------------------------------------------end-------------------------------------------------*/

.breadcumb-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.breadcumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.6); /* Dark blue overlay */
    z-index: 1;
}

.breadcumb-wrapper .container {
    position: relative;
    z-index: 2;
}

.breadcumb-title,
.breadcumb-menu a,
.breadcumb-menu span {
    color: #fff;
}




.page-gallery{
	padding: 80px 0px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: pointer;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
    width: 100%;
    aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 20px;
}



.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A; 
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}


@media (max-width: 767px){
    .pub-section {
    padding: 40px 0;

}
}



.book-gallery{
    background: #fff;
    position: relative;
    padding: 80px 0px 0px;
}

.book-box{
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:all .4s ease;
}

.book-box img{
    width:100%;
    display:block;
    border-radius:15px;
    transition:transform .5s ease;
}

.book-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.book-box:hover img{
    transform:scale(1.05);
}

@media (max-width:768px){
    .book-box{
        max-width:350px;
        margin:auto;
    }
}



.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub-title {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6c0b;
    margin-bottom: 12px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title h2 .text-theme {
    color: #0d6efd;
}

.section-title p {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    .section-title .sub-title {
        font-size: 13px;
    }
    .book-gallery {
    padding: 40px 0px 0px;
}
}

.pb-80{
    padding-bottom:80px !important;
}