@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* #Defined Colors and Font Family:
================================================== */
:root {
 
 --bs-body-font-family: "Rajdhani", sans-serif;
 --bs-body-text: "Inter", sans-serif;
 --bs-heading-font-family: "Teko", sans-serif;

 --main-blk-color:#121212;
 --golden-color:#C0A05D;
 --secondary-golden:#B28E4E;
 --bg-blk:#000;
--breadcrumb-bg:#faefdd;

 --txt-white:#fff;
 --txt-blk:#000;
 --txt-golden:#B28E4E;
 --grey-color:#404040;


}


body {
    transition: all 200ms linear;
    font-family: var(--bs-body-text); 
    font-size: 16px;
    overflow-x:hidden;
 }

h1,h2,h3,h4,h5,h6{
 font-weight: 700;
}

 a,a:active,a:focus,a:hover {
outline: none;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
cursor: pointer !important;
text-decoration: none;
font-family: var(--bs-body-font-family);
}


a:hover {
text-decoration: none;
}


section {
  transition: all 200ms linear;
}


header {
    background-color: var(--main-blk-color);
    padding: 15px 0;
    padding-bottom: 0;
}

.contact-box {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
.call-us{
display: flex;
gap: 10px;
}

.call-icon i{
    color: var(--golden-color);
    border: 1px solid var(--golden-color);
    width: 50px;
    height: 45px;
    font-size: 20px;
    line-height: 43px;
    border-radius: 5px;
}

.call-text span{
  color:var(--txt-golden);
  font-family: var(--bs-body-text);
  font-size: 15px;
}

.call-text p {
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
    width: 100px;
}


.email-text span{
  color:var(--txt-golden);
  font-family: var(--bs-body-text);
  font-size: 15px;
}

.email-icon i {
    color: var(--golden-color);
    border: 1px solid var(--golden-color);
    width: 50px;
    height: 45px;
    font-size: 20px;
    line-height: 43px;
    border-radius: 5px;
}


.email-text p{
color:var(--txt-white);
font-family: var(--bs-body-font-family);
}


.main-logo {
    width: 180px;
    margin: auto;
}
.social-media {
    float: right;
}
.social-media ul{
 margin:0;
 padding:0;
}
.social-media ul li{
 list-style: none;
 display: inline-block;
}
.social-media ul li i {
    border: 1px solid var(--golden-color);
    color: var(--golden-color);
    margin-right: 5px;
    height: 40px;
    width: 45px;
    font-size: 21px;
    line-height: 37px;
}
.social-media ul li i:hover{
 background-color: var(--golden-color);
 border: 1px solid var(--golden-color);
 color:var(--txt-white);
}

div#navigation-box {
    border-top: 1px solid var(--grey-color);
    margin-top: 10px;
}


.navbar-nav .nav-link {
    font-weight: 500;
    padding: 5px 18px;
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
    font-size: 16px;
}

.navbar-nav .nav-link:hover{
 color:var(--txt-golden);
}

li.nav-item {
    padding: 0 10px;
}

div#navigation-box .dropdown-toggle::after {
    margin-left: 0.1em;
    position: relative;
    top: 3px;
}



.mega-menu {
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0;
    padding: 0;
    font-family: var(--bs-body-font-family);
}

.mega-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mega-menu ul li {
    margin-bottom: 10px;
}

.mega-menu ul li a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
    font-family: var(--bs-body-font-family);
}

.mega-menu ul li a:hover {
    color:var(--txt-golden);
    padding-left: 5px;
}

.mega-banner img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .mega-menu {
        display: none;
        width: 100%;
    }

    .dropdown:hover .mega-menu {
        display: block;
    }
}

@media (max-width: 991px) {

    .mega-menu {
        position: static !important;
        width: 100%;
        box-shadow: none !important;
    }

    .mega-menu .row > div {
        margin-bottom: 20px;
    }
}





.carousel-item {
    position: relative;
    height: 75vh;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.carousel-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.carousel-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 550px;
}

.btn-warning {
    padding: 12px 30px;
}

.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-carousel .bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-carousel .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-carousel .carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-carousel h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-carousel p {
    font-size: 1.1rem;
}

.hero-carousel .hero-image {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.hero-carousel .carousel-item {
    height: 650px;
    position: relative;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

section#publish-books {
    margin-top: 80px;
}

section#aboutus-section{
     margin-top: 80px;
}

section#whychoose-section{
     margin-top: 80px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px !important;
    height: 3px !important;
    margin: 5px 3px !important;
}

.section-title h3 {
    font-family: var(--bs-heading-font-family);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.25rem;
}
.section-title span{
 font-weight: 500;
 color:var(--txt-golden);
 font-family: var(--bs-body-font-family);
}


.about-text h3 {
    font-family: var(--bs-heading-font-family);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.25rem;
}


.about-text span {
    font-weight: 500;
    color: var(--txt-golden);
    font-family: var(--bs-body-font-family);
}

section#upcoming-releases{
 margin-top:80px;
}
.upcom-bg{
 background:url("../img/upcoming-bg.png") no-repeat;
 min-height: 450px;
 background-position: center;
 background-size: cover;
}
.choose-bg {
    border: 1px solid #ddd;
    padding: 20px 10px;
    text-align: center;
    min-height: 330px;
}
.choose-bg h4 {
    font-family: var(--bs-body-font-family);
    font-weight: 700;
    line-height: 28px;
}

.choose-icon img{
 width:100px !important;
  margin: auto;
 text-align: center;
}
.book-cover {
    width: 250px;
    height: 250px;
    overflow: hidden;
    margin: auto;
}
.book-cover img {
    width: 100%;
    height: 100%;
}
.published-b {
    text-align: center;
    padding: 30px 0;
    padding-bottom: 0;
    border: 1px solid #ddd;
    min-height: 480px;
}

.read-more-btn {
    position: relative;
}




.book-content ul {
    margin: 0;
    padding: 0;
}
.book-content ul li {
 list-style: none;
}

.book-content ul li p{
 margin-bottom:3px;
}


.book-content span {
    font-size: 18px;
    font-weight: 700;
}

.book-content h5 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--bs-body-font-family);
    margin-top:3px;
    margin-bottom: 0;
}
.book-content {
    padding: 0 20px;
}


.book_cover {
    float: right;
    height: 500px;
    overflow: hidden;
}
.book_cover img {
    height: 100%;
    width: 100%;
}
.banner-content h4 {
    color: #000;
}
.banner-content h2 {
    color: #000;
    font-family: var(--bs-heading-font-family);
    font-size: 2.75rem;
    line-height: 50px;
    text-transform: uppercase;
}
.banner-content p {
    color: #000;
}
.btn_bg{
 background-color: var(--golden-color);
 border-radius: 0px;
 font-weight: 600;
 font-family: var(--bs-body-font-family);
 color:var(--txt-white);
 border-left:5px solid #000;
}

.btn_bg:hover{
 border-left:5px solid #000;
 background-color: var(--bg-blk);
 color:var(--txt-white);   
}

.upcoming-book-list img {
    height: 100%;
    width: 100%;
}

.upcoming-book-list {
    width: 350px;
    margin: auto;
    height: 350px;
}
.upcoming-list-books h2{
    color: #000;
    font-family: var(--bs-heading-font-family);
    font-size: 2.25rem;
}

.upcoming-list-books span {
    font-weight: 600;
    font-family: var(--bs-body-font-family);
    color: var(--txt-golden);
    font-size: 18px;
}



.book_list_upcom {
    padding-top: 20px;
}
.upcoming-list-books {
    padding-top: 100px;
}

section#stats {
    margin-top: 80px;
}
.upcoming-list-books p {
    padding: 0px 50px 0px 0px;
}
.book_list_upcom h4 {
    font-weight: 700;
    font-family: var(--bs-body-font-family);
    width: 50%;
    margin: auto;
    text-align: center;
    line-height: 25px;
    margin-top: 0;
}
footer {
    background-color: var(--main-blk-color);
    min-height: 300px;
    margin-top: 80px;
    padding: 70px 0;
    padding-bottom: 0;
}
.footer-list img{
 width:220px;
}
.bank-detail {
    margin-top: 20px;
}
.bank-detail ul {
  margin:0;
  padding:0;
}
.bank-detail ul li{
 list-style: none;
}
.bank-detail ul li p {
    margin-bottom: 4px;
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
    font-weight: 500;
    font-size: 17px;
}
.bank-detail ul li p span {
    color: var(--txt-golden);
    margin-left: 5px;
}

.footer-title h4{
 color:var(--txt-golden);
 font-family: var(--bs-body-font-family);
    font-weight: 600;
}
.footer-title ul {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
.footer-title ul li {
    list-style: none;
    padding: 3px 0;
}
.footer-title ul li a {
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
    font-size: 17px;
    font-weight: 500;
}
.footer-title ul li a:hover{
 color:var(--txt-golden);
}

.contact-details ul li i {
    color: var(--txt-golden);
    font-size: 20px;
    float: left;
    width: 35px;
}


.contact-details ul li p{
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 7px;
}

.social-media-footer ul li i {
    border: 1px solid var(--golden-color);
    color: var(--golden-color);
    margin-right: 5px;
    height: 40px;
    width: 45px;
    font-size: 21px;
    line-height: 37px;
}

.social-media-footer ul li i:hover{
 background-color: var(--golden-color);
 border: 1px solid var(--golden-color);
 color:var(--txt-white);
}

.social-media-footer ul li {
    list-style: none;
    display: inline-block;
}

div#copyright-main-div {
    margin-top: 50px;
    border-top: 1px solid #252424;
    padding: 7px 0;
}
.develop-div p {
    margin-bottom: 0;
    float: right;
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
    font-size: 15px;
}



.copyright-txt p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--txt-white);
    font-family: var(--bs-body-font-family);
     font-size: 15px;
}
.develop-div p a{
 color:var(--txt-golden);
}

.stats-icon img {
    width: 70px;
    margin-right: 10px;
}
.stats-div-icon {
    display: flex;
    align-items: center;
    gap: 0px;
}
.stats-text {
    margin-top: 20px;
}

.stats-text h5 {
    margin-bottom: 5px;
    font-family: var(--bs-body-font-family);
    font-size: 21px;
}
.stats-div {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 10px;
}


section#breadcrumb-section {
    background-color: var(--breadcrumb-bg);
    padding: 25px 0;
    padding-bottom: 10px;
}

.page-title h3{
 font-family: var(--bs-body-font-family);
    font-size: 24px;
}

.page-links li a {
    color: var(--txt-golden);
}

.page-links li {
    font-family: var(--bs-body-font-family);
    font-size: 17px;
    font-weight: 600;
}
.page-links {
    float: right;
}
section#inner-section {
    margin-top: 70px;
}


.eternal-list table td{
 font-weight: 700;
 font-family: var(--bs-body-font-family);
 font-size: 18px;
}

.upcome-book {
    background: url(../img/book-bg.png) no-repeat;
    min-height: 400px;
    background-position: center;
    background-size: cover;
    padding: 30px 0;
}


.upcome-book-inner {
    background: url(../img/book_bg_1.png) no-repeat;
    min-height: 400px;
    background-position: center;
    background-size: cover;
    padding: 30px 0;
}


.book-cover-inner {
    width: 330px;
    height: 330px;
    overflow: hidden;
    margin: auto;
}
.book-cover-inner img {
    width: 100%;
    height: 100%;
}

.book-upcome-content span{
 font-family: var(--bs-body-font-family);
 color:var(--txt-golden);
 font-weight: 600;
}

.book-upcome-content h3{
 font-family: var( --bs-heading-font-family);
 font-size: 30px;
}
.book-upcome-content h4 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.head-office {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

.head-icon i {
    background-color: var(--bg-blk);
    padding: 10px;
    width: 50px;
    height: 45px;
    font-size: 25px;
    color: var(--txt-white);
    border-radius: 5px;
}

.head-office-icon {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.head-office-text h3 {
    font-family: var(--bs-body-font-family);
    font-size: 24px;
    margin-bottom: 0;
}

.view-location {
    margin-top: 10px;
}

.view-location p {
    margin-bottom: 10px;
    font-weight: 500;
}
.scan-list {
    position: absolute;
    width: 110px;
    right: 0;
    top: -106px;
}
.scan-code {
    position: relative;
    width: 70%;
}

.view-location p i {
    font-size: 18px;
    margin-right: 5px;
    color:var(--txt-golden);
}

.view-location h5{
 font-family: var(--bs-body-font-family);
    font-size: 24px;
}

.view-location h5 {
    font-family: var(--bs-body-font-family);
    font-size: 20px;
}
h6.contact-txt{
 font-family: var(--bs-body-font-family);
 font-size: 18px;
}


.download-option ul{
 margin:0;
 padding:0;
}

.download-option ul li {
    list-style: none;
    display: inline-block;
    width: 25%;
}

button.navbar-toggler {
    border: 1px solid #c0a05d;
    height: 40px;
}
a.navbar-brand {
    color: #fff;
}
button.navbar-toggler i {
    color: #c0a05d;
} 



.hard-btn{
   border:1px solid var(--golden-color);
   color:var(--golden-color);
}


.hard-btn:hover{
   background-color: var(--golden-color);
   border:1px solid var(--golden-color);
   color:var(--txt-white); 
}

.contact-hard-copy{
 margin-top:50px;
}

.contact-hard-copy button {
    font-family: var(--bs-body-font-family);
    font-size: 16px;
    font-weight: 600;
}

.contact-hard-copy a {
    font-family: var(--bs-body-font-family);
    font-size: 16px;
    font-weight: 600;
}

.book-title h3{
  font-family: var(--bs-body-font-family);
}
.available-title h3{
 font-family: var(--bs-body-font-family);   
}



.book-info {
    width: 350px;
}
.book-text ul li {
    font-size: 19px;
    font-weight: 600;
    list-style: none;
}

.book-text ul {
    margin: 0;
    padding: 0;
}
.book-text ul li p{
 margin-bottom: 10px;
}
.book-text {
    margin-top: 50px;
}


.book-content-inner p {
    line-height: 28px;
}
.book-content-inner h5 {
    line-height: 30px;
}

.e-book-book-item {
    margin-top: 15px;
    border: 1px solid #ddd;
    padding: 10px 8px;
    border-radius: 10px;
}
.e-book-book-item ul li {
    list-style: none;
    display: inline-block;
    width: 36%;
    vertical-align: top;
}
.e-book-book-item img {
    width: 140px;
    border-radius: 5px;
}
.e-book-book-item ul {
    margin: 0;
    padding: 0;
}
.e-book-book-item ul li:last-child {
    width: 62%;
}
a.book-link {
    color: #000;
    font-weight: 600;
}
.order-book a {
    margin-right: 5px;
}
.book-text p {
    line-height: 28px;
}
.cover-book {
 margin:auto;
 text-align: center;
}


.nitnem-list ul{
 margin:0;
 padding:0;
}

.nitnem-list ul li {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
    list-style: none;
    border-radius: 6px;
}
.nitnem-list ul li a {
    color: #000;
    font-weight: 600;
    font-size: 17px;
}



.privacy-content ul {
    margin: 0;
}
.privacy-content ul li {
   padding-bottom: 5px;
}

.e-book-item a{
 font-weight: 600;
 font-family: var(--bs-body-font-family);
}


a.up-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 25px;
}

.scan-code-div {
    width: 55%;
    margin: 0 auto;
}

.aboutus-img {
    width: 72%;
    margin: auto;
}

.about-text p {
    line-height: 28px;
}

.read-btn-inner a{
  font-weight: 600;
 font-family: var(--bs-body-font-family);   
}


.banner-content a{
font-weight: 600;
 font-family: var(--bs-body-font-family);
}

a.btn.btn-secondary {
    border-radius: 0;
}
.banner-content a{
	margin-right:3px;
}


.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--golden-color);
    color:#000;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper:hover {
    background-color: var(--golden-color);
    color:#000;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
    opacity: 1.0;
}
.scroll-top-wrapper i.fa {
    line-height: inherit;
}