* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white-color: #ffffff;
    --black-color: #000000;
    --blue-color: #1C246D;
    --orange-color: #D78019;
}

@font-face {
    font-family: Georgia_font;
    src: url("../webfonts/georgia.ttf");
}

body {
    font-family: "Noto Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Georgia_font;
}

a {
    text-decoration: none;
}

.orange-btn {
    background-color: var(--orange-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
    padding: 16px 50px;
}

.blue-btn {
    background-color: var(--blue-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
    padding: 16px 50px;
}

.outline-btn {
    background-color: transparent;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    border-radius: 100px;
    padding: 16px 50px;
    border: 1px solid var(--black-color);
}

.main-heading {
    color: var(--orange-color);
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.para {
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
}

.author-sec-btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* header start */
.header {
    background-color: var(--blue-color);
}

.header .navbar-brand {
    font-family: Georgia_font;
    font-weight: 700;
    font-size: 45px;
    letter-spacing: -1px;
    color: var(--white-color);
}

.header .navbar-nav {
    gap: 40px;
}

.header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .nav-item .nav-link {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    padding: 0;
}

/* header end */

/* banner start */
.banner-sec {
    background-image: url("../images/banner-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7rem 0px;
}

.inner-banner-sec {
    padding: 20rem 0px;
}

.banner-sec-content h4 {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 15px;
}

.banner-sec-content h1 {
    color: var(--white-color);
    font-weight: 700;
    font-size: 60px;
    letter-spacing: -0.6px;
    margin-bottom: 15px;
}

.banner-sec-content p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.banner-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* banner end */

/* author start */
.about-author-sec {
    background-color: var(--blue-color);
    padding: 100px 0px;
}

.author-image img {
    width: 100%;
}

.author-content h3 {
    color: var(--white-color);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3.75px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* author end */

/* about book start */
.about-book-sec {
    background: linear-gradient(180deg, rgba(215, 128, 25, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
    padding: 100px 0px;
}

.about-book-content {
    text-align: center;
    margin-bottom: 10rem;
}

.about-book-content h3 {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3.75px;
    text-transform: uppercase;
    color: var(--black-color);
}

.about-book-grid-content h2 {
    color: var(--black-color);
}

.about-book-grid-content p {
    color: var(--black-color);
}

.about-book-grid-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

.about-book-grid {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-book-grid::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2rem;
    right: 0rem;
    width: 14rem;
    height: 8rem;
    background-color: var(--blue-color);
    border-radius: 100px;
    transform: rotate(45deg);
}

.about-book-grid::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: -2rem;
    width: 14rem;
    height: 8rem;
    background-color: var(--orange-color);
    border-radius: 100px;
    transform: rotate(45deg);
}

/* about book end */

/* featured book start */
.featured-book {
    background-color: var(--blue-color);
    padding: 100px 0px;
}

.inner-featured-book {
    background: linear-gradient(180deg, #1C246D 0%, #FFFFFF 100%);
}

.featured-book-content {
    text-align: center;
    margin-bottom: 60px;
}

.featured-book-content h2 {
    color: var(--white-color);
}

.featured-book-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 15px;
}

.featured-book-content h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 15px;
}

.featured-book-box {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 50px 30px;
    transition: box-shadow 0.4s ease;
}

.featured-book-box img {
    width: 300px !important;
    margin: 0 auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-book-box-content h3 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -0.4px;
    text-align: center;
    color: var(--black-color);
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.featured-book-box:hover {
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.12);
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);

}

.featured-book-box:hover img {
    transform: translateY(-12px) scale(1.03);
}

.featured-book-box:hover .featured-book-box-content h3 {
    opacity: 1;
}

.featured-books-slide-main .owl-dots {
    margin-top: 60px !important;
}

.featured-books-slide-main .owl-dots .owl-dot span {
    background: #D78019;
}

.featured-books-slide-main .owl-dots .owl-dot.active span {
    background: var(--white-color);
}

/* featured book end */

/* media start */
.media-sec {
    padding: 100px 0px;
}

.media-sec-content {
    margin-bottom: 60px;
}

.media-sec-content h2 {
    color: var(--black-color);
    text-align: center;
}

.media-box {
    background-color: var(--orange-color);
    padding: 60px 40px;
    border-radius: 35px;
}

.media-box-image img {
    width: unset !important;
}

.media-box-content h2 {
    color: var(--white-color);
    font-size: 30px;
}

.media-box-content ul li {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
}

.media-box-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.media-box-btn a {
    border-radius: 100px;
}

.media-slides-main .owl-item {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.media-slides-main .owl-item.active.center {
    opacity: 1;
}

/* media end */

/* article start */
.articles-sec {
    padding: 0px 0px 100px;
}

.articles-content {
    margin-bottom: 60px;
}

.articles-content h2 {
    color: var(--black-color);
    text-align: center;
}

.article-box img {
    width: 100%;
}

.article-box-content {
    margin-top: 30px;
    text-align: center;
}

.article-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.article-box-content h3 {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Noto Sans', sans-serif;
}

/* article end */

/* footer start */
.footer {
    background-color: var(--blue-color);
    padding: 50px 0px;
}

.footer-content .footer-logo {
    color: var(--white-color);
    font-weight: 700;
    font-size: 40px;
    font-family: Georgia_font;
    border-bottom: 1px solid #D78019;
    padding-bottom: 15px;
}

.footer-content p {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    width: 400px;
}

.footer-content ul {
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-left: 0;
    padding-bottom: 0;
}

.footer-content ul li a {
    background-color: var(--orange-color);
    color: var(--blue-color);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.footer-content ul li a i {
    font-size: 20px;
}

.footer-links h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
    padding-bottom: 15px;
    border-bottom: 1px solid #D78019;
}

.footer-links ul {
    margin-top: 30px;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links ul li a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    font-family: Georgia_font;
    transition: all ease 0.3s;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: var(--orange-color);
}

.footer-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
    padding-bottom: 15px;
    border-bottom: 1px solid #D78019;
}

/* footer end */

/* copyright sec start */
.copyright-sec {
    padding: 20px 0px;
    background-color: var(--orange-color);
}

.copyright-sec p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* copyright sec end */

/* help form section start */
.help-form-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
}

.help-form-left form input {
    width: 100%;
    padding: 22px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    font-size: 16px;
    border: none;
    outline: none;
}

.help-form-left form textarea {
    width: 100%;
    padding: 22px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    height: 150px;
    font-size: 16px;
    border: none;
    resize: none;
    outline: none;
}

.help-form-left form button {
    width: 100%;
    background-color: var(--blue-color);
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 100px;
    padding: 20px 0px;
}

.help-form-sec {
    padding: 100px 0px;
    background-color: var(--white-color);
}

.help-form-right {
    text-align: center;
    position: relative;
    z-index: 1;
}

.help-form-right::before {
    content: "";
    position: absolute;
    background-image: url("../images/contact-before.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0px;
    top: -50px;
    width: 241px;
    height: 248px;
    z-index: -1;
}

/* help form section end */