:root {
    --light-brown: #b15f61;
    --light-purple: #d0c4e8;
    --light-blue: #0e4480;
    --dark-blue: #1c3d7b;
    --dark-black: #000000;
    --text-color: #333333;
    --heading-color: #050505;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    transition: color 0.3s ease-in-out;
    transition: background-color 0.3s ease, color 0.3s ease;
    transition: padding 0.3s ease, color 0.3s ease;
    transition: transform 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
}

header {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--heading-color);
}

h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 36px;
    line-height: 44px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
}

h4 {
    font-size: 22px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 26px;
}

h6 {
    font-size: 16px;
    line-height: 30px;
}

p,
a {
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

p {
    color: var(--text-color);
}

div {
    padding: 10px;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.gradient-text {
    color: #B4C5FF;
    background: linear-gradient(45deg, #0e4480, #b15f61);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: animated-text 5s ease infinite;
}

@keyframes animated-text {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.my-container {
    width: 1260px;
    margin: auto;
    padding: 0;
}

.pre-topbar,
.pre-top-btn-container {
    background-color: var(--light-brown);
    padding: 0;
}

.pre-topbar {
    display: flex;
    justify-content: center;
}

.pre-top-btn-container {
    width: 100%;
    text-align: center;
}

.pre-top-btn:hover {
    color: var(--light-brown);
    background-color: #fff;
}

.pre-top-btn {
    color: #fff;
    padding: 5px 10px;
    display: block;
    border: 1px solid #fff;
    font-weight: 600;
    border-top: 0;
}

.o-topbar {
    background-color: #1c3d7b1a !important;
}

.ol-topbar {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    a {
        color: var(--text-color) !important;
    }

    .mail {
        display: flex;
        gap: 20px;
    }
}

.ol-topbar a:hover {
    color: var(--light-blue) !important;
}

#google_translate_element,
.goog-te-gadget {
    padding: 0;
}

.goog-te-gadget-icon {
    display: none;
}

.topbar {
    background-color: var(--light-brown);
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.topbar a {
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
}

.topbar a:hover {
    color: var(--light-purple);
}

/* .logo-link{
    margin: auto;
    display: inline-block;
} */

.og-header-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.og-logo-container {
    width: 170px;
}

.sub-sub-site-title {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--light-blue);
    padding: 0;

}

.og-title-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 68%;
}

.og-logo {
    width: 100%;
}

.header-search-container {
    width: 500px;
    margin: auto;
    padding: 0;
}

.search-div {
    display: flex;
    gap: 10px;
    padding: 0;
}

.search-btn {
    background-color: var(--dark-blue);
    color: #fff;
    border-radius: 8px;
    padding: 5px 10px;
}

#header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.my-site-title {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: capitalize;
    padding: 0;
}

.site-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 900;
    text-transform: capitalize;
    padding: 0;
}

.my-sub-site-title {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--light-blue);
    padding: 0;
}

.sub-site-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--light-blue);
    padding: 0;
}

.fa-bahai {
    font-size: 20px;
    margin-top: -2px;
    color: var(--light-brown);
}


.header-action-button,
.centered-button {
    padding: 12px 24px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background-color: var(--dark-blue);
    font-size: 18px;

    i {
        padding-right: 5px;
    }
}

.btn-botton {
    background-color: var(--light-brown);
}

.btn-botton:hover {
    background-color: var(--dark-blue) !important;
}

.header-action-button:hover,
.centered-button:hover {
    background-color: var(--light-brown);
}

.header-action-button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.home-banner {
    margin: auto;
    width: 100%;
}

.btn-slide {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.btn-slider .slick-next:before,
.btn-slider .slick-prev:before {
    color: var(--text-color) !important;
    font-size: 28px !important;
}

.testimonial-video-slider .slick-next:before,
.testimonial-video-slider .slick-prev:before {
    color: var(--text-color) !important;
    font-size: 48px !important;
}

.testimonial-video-slider .slick-next {
    right: 45%;
}

.testimonial-video-slider .slick-prev {
    left: 45%;
}

.testimonial-video-slider .slick-next,
.testimonial-video-slider .slick-prev {
    top: 98% !important;
}

.btn-slider>div {
    padding: 0;
}

.btn-slider {
    background-color: #b15f611a;
}

.rrrn-btn-container {
    text-align: center;
}

.section-title {
    text-align: center;
}

.professor-testimonial-container {
    padding: 50px 10px;
}

.section-para {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.latest-book-box {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e5e599;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    text-align: center;
    height: 200px;
    justify-content: center;
}

.lt-books-btn {
    padding: 0;
}

.lt-btn {
    padding: 5px 18px;
    font-size: 16px;
}

.recent-updates-container {
    padding: 50px 10px;
    text-align: center;
}

.rc-updates-container {
    display: flex;
    justify-content: space-evenly;
    padding-top: 30px;
}

.why-choose-contents-updates-container {
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    border: 1px solid var(--light-brown);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    width: 590px;
    margin: auto;
    margin-top: 20px;
}

.left-recent-updates-container {
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    border: 1px solid var(--light-brown);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.recent-updates-title-container {
    background-color: var(--light-brown);

    h4 {
        color: #fff;
    }
}

.recent-content {
    padding: 16px 32px;
    text-align: left;
    height: 225px;
    overflow-y: auto;
}

.why-choose-content {
    padding: 16px 32px;
    text-align: left;
    overflow-y: auto;
}

.why-choose-contents {
    list-style: none;

    li {
        position: relative;
        padding-left: 36px;
        margin-bottom: 18px;
        font-size: 18px;
        color: var(--dark-blue);
    }
}

.why-choose-contents li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    left: 0;
    color: green;
    padding-top: 2px;
    font-size: 18px;
}

.recent-contents {
    list-style: none;

    li {
        position: relative;
        padding-left: 48px;
        margin-bottom: 20px;
    }
}

.recent-contents li::before {
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    left: 0;
    color: var(--light-brown);
    padding-top: 5px;
    font-size: 38px;
}

.recent-content-link {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: var(--dark-blue);
    line-height: 1.5em;
}

.recent-content-link:hover {
    color: var(--light-brown);
}

.cont-rc {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
}

.bottom-image-container {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 200px;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    border: 1px solid #e5e5e599;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.bottom-image-one {
    background-image: url(../images/banners/Image-2A.png);
}

.bottom-image-two {
    background-image: url(../images/banners/Image-2B.jpg);
}

.bottom-image-three {
    background-image: url(../images/banners/Image-3C.jpg);
}

.bottom-image-slider .slick-next:before,
.bottom-image-slider .slick-prev:before {
    font-size: 40px;
    color: #333333;
}

.bottom-image-heading {
    border: 1px solid;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
}

.contact-form-container {
    background-color: #b15f611a;
    padding: 50px 10px;
    text-align: center;
}

.bottom-image-slider-container {
    padding: 50px 10px;
}

.main-container {
    padding: 0;
}

.dual-inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.home-contact-form-container, .chapter-form-container {
    width: 500px;
    margin: auto;
    text-align: left;
    margin-top: 20px;
    padding: 32px 24px;
    border: 1px solid #e5e5e599;
    background-color: #ffffff1a;
    border-radius: 8px;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;

    div {
        padding: 0;
        margin-bottom: 10px;
    }
}

.chapter-form-container{
    width: 550px;
}

label {
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
}

.input-container {
    width: 100%;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 10px;
}

#submit-btn {
    width: 100%;
    font-size: 18px;
    padding: 12px 24px;
    background-color: var(--dark-blue);
    color: #fff;
    border-radius: 8px;
    border: 0;
}

#submit-btn:hover {
    background-color: var(--light-brown);
}

#footer {
    background-color: var(--dark-blue);
    padding: 50px 10px 10px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li::before {
    content: "-";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: relative;
    left: -15px;
    color: #fff;
    font-size: 16px;
}

.footer-menu-item {
    color: #fff;
    font-size: 16px;
}

.footer-menu-item:hover {
    padding-left: 5px;
}

.footer-iconed-menu {
    padding: 10px 10px 10px 18px;
}

.footer-title {
    color: #fff;
}

.footer-logo {
    width: 165px;
}

.footer-lg-title,
.footer-lg-sub {
    color: #fff;
}

.footer-first {
    text-align: center !important;
}

.icon-contact {
    list-style: none;
}

.icon-contact li.footer-phone-item::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    left: -15px;
    color: #fff;
    font-size: 16px;
}

.icon-contact li.footer-mail-item::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    left: -15px;
    color: #fff;
    font-size: 16px;
}

.icon-contact li.footer-address-item::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    left: -15px;
    color: #fff;
    font-size: 16px;
}

.footer-column,
.footer-bottom,
.policy-menu {
    display: flex;
    justify-content: space-between;
}

.footer-first,
.footer-second,
.footer-third {
    width: 33.33%;
}

.footer-social-link {
    color: #fff;

    .fa-brands {
        padding: 10px;
        background-color: #ffffff1a;
        width: 46px;
        font-size: 22px;
        text-align: center;
    }
}

.footer-social-link:hover .fa-brands {
    transform: scale(1.1);
}

.social-icon-footer {
    display: flex;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #fff;
}

.footer-copyright {
    color: #fff;
}

.policy-menu {
    gap: 20px;
    list-style: none;
}

.policy {
    color: #fff;
}

.header-menu-container {
    background-color: var(--dark-blue);
}

.navbar {
    display: flex;
    flex-direction: row-reverse;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    display: block;
    padding: 5px 25px;
    color: white;
    text-decoration: none;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

.navbar ul li ul.horizontal-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 10px;
    background: #fff;
    min-width: 160px;
    flex-direction: column;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    border: 1px solid #00000017;
    border-radius: 3px;
    z-index: 999;

    a {
        color: var(--light-blue);
    }
}

.navbar ul li ul li {
    width: 100%;
}

.navbar ul li:hover>ul {
    display: block;
}

/* Nested Dropdown */
.navbar ul li ul li ul {
    top: 0;
    left: 100%;
}

.hamburger {
    padding: 0;
}

.header-menus {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-slider .slick-next:before,
.banner-slider .slick-prev:before {
    color: #1c3d7b;
    font-size: 32px;
}

.two-book-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}

.publisher-book-img {
    width: 100%;
}

.new-book-box {
    text-align: center;
}

.new-book-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.call-now-book,
.call-now-book:hover {
    background-color: #822631;
}

span.regular-price {
    text-decoration: line-through;
    font-size: 20px;
    font-weight: 500;
    color: #6e6e6e;
    padding-right: 5px;
}

.new-book-price {
    font-size: 24px;
    font-weight: 700;
    padding: 5px 5px 10px;
}

.new-book-box {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.new-book-img {
    width: 100%;
    border-radius: 8px;
}

.new-book-loader {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.new-book-box {
    width: calc(25% - 15px);
    /* 4 per row */
    display: none;
}

.new-book-box.show {
    display: block;
}

.see-more-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.see-more-btn {
    padding: 0;
    border: none;
    background: #2c3e5000;
    color: var(--dark-blue);
    cursor: pointer;
    font-size: 22px;
    text-decoration: underline;
}

.New-book-loader-container, .major-setion-bp {
    padding: 50px 10px;
}

.index-img {
    width: 100%;
}

.index-img-container {
    padding: 0;
}

.index-img-slider .slick-slide {
    padding: 0 15px;
}

.index-img-slider .slick-list {
    margin: 0 -15px;
}

.index-img-slider-container{
    padding: 50px 10px;
    background-color: #1c3d7b1a;
}

.open-chapter-submission-container{
    padding: 50px 10px;
    text-align: center;
}

.subject-dropdown{
    text-align: left;
    width: fit-content;
    margin: 20px 0 20px 0;
}

.subject-drop{
    font-size: 28px;
    list-style-position: inside;
}

.sub-droped{
    font-size: 22px;
    margin: 5px 0 0 10px;
}

.publish-a-book, .book-author{
    border: 1px solid #ccc;
}

.book-detail-container, .book-author-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    width: 550px;
    margin: auto;
    margin-top: 20px;
}

.book-author{
    margin-top: 20px;
}

.book-img-container img, .book-author-img-container img{width: 100%;}
.book-img-container, .book-author-img-container{
    width: 40%;
}

.book-details, .author-details{
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    width: 50%;
}

.publish-a-book-heading, .book-author-heading{
    padding: 10px;
    background-color: #b15f611a;
}

.form-heading{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--light-brown);
}

.form-flex-one, .check-row, .input-container-section{
    margin-bottom: 20px !important;
    padding: 10px !important;
    border: 1px solid #ccc;
}

.red-btn{
    background-color: var(--light-brown);
    border-radius: 8px;
    color: #fff;
}

.green-btn{
    background-color: #6db15f;
    border-radius: 8px;
    color: #fff;
}

.three-btn-container{
    background-color:#b15f611a;
    padding: 10px 10px 50px 10px;
}

.blinker-btn {
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    animation: blink 1s infinite;
    display: inline-block;
}

@keyframes pulse-red {
    0% {
        background-color: #ff0000;
        box-shadow: 0 0 5px #ff0000;
    }
    50% {
        background-color: #990000;
        box-shadow: 0 0 20px #ff0000;
    }
    100% {
        background-color: #ff0000;
        box-shadow: 0 0 5px #ff0000;
    }
}

@keyframes pulse-yellow {
    0% {
        background-color: #ffd700;
        box-shadow: 0 0 5px #ffd700;
    }
    50% {
        background-color: #ff9900;
        box-shadow: 0 0 20px #ffcc00;
    }
    100% {
        background-color: #ffd700;
        box-shadow: 0 0 5px #ffd700;
    }
}

.red-btn {
    animation: pulse-red 0.8s infinite;
    color: white;
}

.yellow-btn {
    animation: pulse-yellow 0.8s infinite;
    color: black;
}

.blinker-btn-container, .quad-btn-container{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.curved-box{
    padding: 20px;
    margin-top: 20px;
    background-color: #1c3d7b1a;
    text-align: center;
    border: 2px solid var(--light-brown);
    transform: skewX(-15deg);
    /* padding: 15px 20px; */
    box-shadow: 5px 5px 20px 0px #b15f617d;
    margin-bottom: 30px;
}

.curving{
    transform: skewX(15deg);
}

.main-heading-container{
    text-align: center;
    padding: 50px 10px;
}

.aparted-get-in-touch{
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 50px 10px;
}

.info-box{
    background-color: #1c3d7b1a;
    text-align: center;
    border: 1px solid var(--light-brown);
    border-radius: 8px;
    box-shadow: 5px 5px 20px 0px #b15f617d;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 50%;
    margin: auto;
    margin-bottom: 30px;
}

.box-b{
    background-color: #b15f611a !important;
    border: 1px solid var(--light-blue) !important;
    box-shadow: 5px 5px 20px 0px #1c3d7b7d;
}

.info-list{
    list-style-position: inside;
    text-align: left;
}

.info-boxes, .get-in-form-container{
    width: 100%;
}

.info-box2{
    text-align: center;
    padding: 10px 10px 50px 10px;
}

.info-heading2{
    padding-bottom: 20px;
}

.info-list2{
    display: flex;
    justify-content: center;
    gap: 50px;
}

.support-container {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;   /* Light background */
    color: #222;
    overflow: hidden;
}

/* Glowing animated border */
.support-container::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    background: linear-gradient(90deg, red, yellow, red);
    background-size: 300% 300%;
    animation: moveGlow 2s linear infinite;
    z-index: -1;
}

/* Soft inner shadow for premium feel */
.support-container {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.support-container {
    animation: pulseLight 1.5s infinite;    
}

@keyframes pulseLight {
    0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 204, 0, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.4); }
}

.support-txt{
    font-size: 32px;
    font-weight: 800;
}

.support-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-btn-c{
    background-color: green;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

.about-us, .publishing-plan{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /* padding: 50px 10px; */
}

.about-us-txt, .publishing-plan-txt{
    width: 60%;
}
.about-us-img, .publishing-plan-img{
    width: 40%;
}

.about-img, .plan-img{
    width: 100%;
}

.plan-table-container{
    border: 1px solid var(--light-blue);
    margin-top: 20px;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    /* overflow-y: scroll; */
}

.plan-table-heading{
    padding: 10px 20px;
    background-color: #1c3d7b;
    text-align: center;
    color: #fff;
}

.plan-table{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.plan-table-cell{
    padding: 20px;
    width: 50%;
    text-align: center;
    font-weight: 600;
}

.plan-table .plan-table-cell:nth-child(4n+1),
.plan-table .plan-table-cell:nth-child(4n+2) {
    background-color:#b15f611a;
}

.plan-table .plan-table-cell:nth-child(4n+3),
.plan-table .plan-table-cell:nth-child(4n+4) {
    background-color:#1c3d7b1a;
}

.publishing-plan-container, .services-container, .popular-authors-container{
    padding: 50px 10px;
}

.our-services-section{
    text-align: center;
}

.our-services{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.our-services-card{
    border-radius: 8px;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    padding: 20px;
}
.our-services-img{
    margin-bottom: 20px;
    padding: 0;
}

.our-services-heading{
    margin-bottom: 20px;
}

.academic-txt-book-img img{
    width: 100%;
}

.custom-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    width: 900px;
    max-width: 95%;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* Mobile full width */
@media (max-width: 768px) {
    .popup-content {
        width: 100%;
        height: auto;
        border-radius: 0;
        overflow-y: scroll;
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes popupFade {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.academic-container{
    padding: 50px 10px;
    text-align: center;
}

.popular-authors-card-container, .popular-authors-card{
    display: flex;
    gap: 30px;
}

.popular-authors-card{
    width: 50%;
    background-color: #1c3d7b1a;
    border-radius: 8px;
    padding: 20px;
    align-items: center;
}

.popular-authors-txt{
    display: flex;
    flex-direction: column;
    gap: 5px;    
}

.popular-authors-txt, .popular-authors-img{
    width: 50%;
    img{
        width: 100%;
    }
}

.popular-authors-see:hover, .blog-read:hover{color: var(--light-blue);}

.popular-authors-see, .blog-read{
    color: var(--light-brown);
    text-decoration: underline;
}

.my-author-slide img{
    width: 100%;
}

.btp-button-container, .my-img-slider{
    padding: 50px 10px;
}

.btp-button-container{
    text-align: center;
}

.publisher-by-book, .journal-img-slide{
    padding: 0;
    img{
        width: 100%;
    }
}

.journal-portfolio-container, .ultimate-collection, .book-journal-section{
    padding: 50px 10px;
}

.journal-portfolio-section{
    text-align: center;
}
.journal-img-slider{
    margin-bottom: 20px;
}

.journal-slides{
    display: flex;
    gap:20px;
}

.journal-slider{
    width: 70%;
}

.a1{
    background-image: url("../images/banners/slide-1.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.a2{
    background-image: url("../images/banners/slide-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.a3{
    background-image: url("../images/banners/slide-3.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.journal-space{
    height: 265px;
}

.pop-btn-o:hover{
    background-color: var(--light-brown);
}

.pop-btn-o{
    background-color: var(--light-blue);
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

.ultimate-collection-heading-container{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.ultimate-collection-slide, .ultimate-collection-slide{
    padding: 0;
    img{
        width: 100%;
    }
}

.blog-box{
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e599;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
}

.blog-image{
    width: 100%;
    margin-bottom: 10px;
}

.journal-offer img{
    width: 100%;
}

.iti__country-container{
    margin-bottom: 0 !important;
    div{
        margin-bottom: 0 !important;
    }
}

.iti__selected-dial-code{
    font-size: 14px !important;
}

.blue-container{
    background-image: url(../images/banners/Poster-1.jpg);
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.trending-month-img{
    width: 208px;
    height: 286px !important;
}

.bp-major-container{
    display: flex;
    gap: 20px;
}

.work-with-us-container{
    width: 18%;
}
.major-container-txt{
    width: 82%;
}

.work-with-us-menu-boxes{
    border-collapse: collapse;
    width: 100%;
}

.work-with-us-heading{
    text-align: center;
}

.work-with-us-menu-boxes, .work-with-us-menu-boxes tr{
    border: 1px solid var(--light-blue);
}

.work-with-us-menu-boxes td:hover {
    background-color: #b15f611a;
}
.work-with-us-menu-boxes td {
    text-align: center;
    padding: 5px 10px;
}

.work-with-us-menu-boxes td a{
    font-weight: 600;
}

.book-journal-container, .book-journal-dual-col{
    display: flex;
    gap: 20px;
}

.book-journal-box{
    background-color: #1c3d7b1a;
    padding: 30px;
    border-radius: 8px;
}

.book-journal-heading{
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.book-journal-img{
    width: 220px;
}

.book-journal-dual-col{
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.book-journal-name{
    text-align: center;
}

.book-journal-prod, .book-journal-txt{
    border: 1px solid #ccc;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    border-radius: 3px;
}

.book-journal-txt{
    background-color: #ffffff1a;
    padding: 20px;
}

.blue-section{
    padding: 50px 10px;
}

.blue-spacer{
    min-height: 370px;
    width: 35%;
    background-color: #0e44801a;
}

.blue-content{
    padding: 30px;
    width: 50%;
    text-align: center;
}
.blue-heading{
    text-align: center;
    color: #fff;
}

.testimonial-box{
    background-color: #ffffff8e;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
}

.single-book-preview-section, .write-a-review-section, .open-access-container{
    padding: 50px 10px;
}

.single-book-preview-container{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.single-book-preview-img{
    width: 100%;
    border: 1px solid #000;
}

.single-book-preview-slider{
    width: 25%;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    padding: 0;
    text-align: center;
}

.single-book-preview-content-container{
    width: 74%;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-book-preview-meta{
    border-radius: 8px;
    background-color: #1c3d7b1a;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-container{
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    gap: 30px;
    margin-bottom: 20px;
}

.write-review-btn{
    font-weight: 600;
    text-decoration: underline;
}

.actual-review-container{
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    gap: 30px;
}

.open-access-books{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.open-access-book img{
    width: 100%;
}
.open-access-book{
    width: 23%;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 2px 20px 0px #dbdbdba6;
    display: flex;
    flex-direction: column;
}

.open-access-list{
    list-style-position: inside;
    padding: 20px;
    li{
        margin-bottom: 10px;
    }
    h5, h6{
        display: inline;
    }
}

.open-access-book-content{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    h5{
        color: var(--light-blue);
    }
}
