/*==============================
GOOGLE FONT
==============================*/

.innerbody{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    background:#f8f4ee;
    color:#333;
    overflow-x:hidden;
}

.innerbody h1,h2,h3,h4,h5{
    font-family:'Namdhinggo-bold';
    font-weight:700;
}

a{
    text-decoration:none;
}

.innerbody img{
    max-width:100%;
    display:block;
}

/*==============================
HERO SECTION
==============================*/

.books-hero{

position:relative;

overflow:hidden;

padding:120px 0;

background:linear-gradient(135deg,#f7f0e5,#ece2d3,#f8f4ee);

z-index: 0;
}

.hero-overlay{

    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top left,
    rgba(177,133,73,.15),
    transparent 45%),

    radial-gradient(circle at bottom right,
    rgba(90,58,33,.08),
    transparent 40%);
}

/* Floating Background Blobs */

.books-hero::before{

    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(190,150,95,.08);

    top:-220px;
    left:-180px;

    animation:blobMove 12s infinite alternate;
}

.books-hero::after{

    content:'';
    position:absolute;

    width:380px;
    height:380px;

    border-radius:50%;

    background:rgba(96,70,45,.05);

    right:-150px;
    bottom:-120px;

    animation:blobMove2 10s infinite alternate;
}

.hero-content{

    position:relative;
    z-index:10;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    background:#fff;

    border-radius:40px;

    color:#8d6038;

    font-weight:600;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.hero-content h1{

    font-size:68px;

    line-height:1.05;

    margin-bottom:25px;

    color:#3f2b1d;

}

.hero-content h1 span{

    color:#b57d42;

}

.hero-content p{

    font-size:17px;

    line-height:1.9;

    color:#555;

    max-width:540px;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/*==============================
BUTTONS
==============================*/

.btn-main{

    padding:16px 34px;

    background:#8b5e34;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 35px rgba(139,94,52,.35);

}

.btn-main:hover{

    background:#a97544;

    color:#fff;

    transform:translateY(-5px);

}

.btn-outline{

    padding:16px 34px;

    border:2px solid #8b5e34;

    color:#8b5e34;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-outline:hover{

    background:#8b5e34;

    color:#fff;

    transform:translateY(-5px);

}

/*==============================
RIGHT BOOK AREA
==============================*/

.hero-books{

    position:relative;

    height:620px;

}

.book-main{

    width:360px;

    position:absolute;

    right:70px;

    top:40px;

    z-index:5;

    filter:drop-shadow(0 35px 45px rgba(0,0,0,.25));

    animation:floatBook 5s ease-in-out infinite;

}

.floating{

    position:absolute;

    width:180px;

    filter:drop-shadow(0 18px 25px rgba(0,0,0,.18));

}

.book-left{

    left:20px;

    bottom:70px;

    transform:rotate(-18deg);

    animation:floatSmall1 6s infinite ease-in-out;

}

.book-right{

    right:0;

    bottom:20px;

    transform:rotate(15deg);

    animation:floatSmall2 7s infinite ease-in-out;

}

/* Decorative Circles */

.circle{

    position:absolute;

    border-radius:50%;

    z-index:0;

}

.circle1{

    width:220px;

    height:220px;

    background:#d8be9b;

    opacity:.35;

    top:30px;

    right:40px;

}

.circle2{

    width:140px;

    height:140px;

    background:#b78a55;

    opacity:.25;

    left:80px;

    bottom:70px;

}

/*==============================
ANIMATIONS
==============================*/

@keyframes floatBook{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}

@keyframes floatSmall1{

0%{

transform:translateY(0) rotate(-18deg);

}

50%{

transform:translateY(-15px) rotate(-14deg);

}

100%{

transform:translateY(0) rotate(-18deg);

}

}

@keyframes floatSmall2{

0%{

transform:translateY(0) rotate(15deg);

}

50%{

transform:translateY(-18px) rotate(11deg);

}

100%{

transform:translateY(0) rotate(15deg);

}

}

@keyframes blobMove{

0%{

transform:translate(0,0);

}

100%{

transform:translate(70px,40px);

}

}

@keyframes blobMove2{

0%{

transform:translate(0,0);

}

100%{

transform:translate(-60px,-50px);

}

}


/*=====================================
BOOKS SECTION
=====================================*/

.books-section{
    padding:100px 0;
    background:#fcfaf7;
    position:relative;
}

.books-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(181,125,66,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#a06b39;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:55px;
    color:#3b2818;
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*=====================================
BOOK CARD
=====================================*/

.book-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    height:100%;

    transition:.45s;

    position:relative;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.book-card:hover{

    transform:translateY(-15px);

    box-shadow:0 35px 60px rgba(0,0,0,.16);

}

.book-image{

background:linear-gradient(135deg,#efe3d2,#f8f4ee);

padding: 22px 8px;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;
}

.book-image img{

width: 280px;

transition:.5s;

filter:drop-shadow(0 20px 30px rgba(0,0,0,.18));

height: 372px;

object-fit: cover;
}

.book-card:hover .book-image img{

    transform:scale(1.08) rotate(-3deg);

}

.book-content{

padding:28px;

position: relative;

z-index: 1;
}

.book-content h3{

font-size: 17px;

color:#3d2817;

margin-bottom:8px;
}

.book-content h6{

    color:#a06b39;

    font-size:15px;

    margin-bottom:18px;

    font-weight:600;

    letter-spacing:1px;

}

.book-content p{

    color:#666;

    line-height:1.8;

    min-height:90px;

    font-size:15px;

}

/*=====================================
BUTTONS
=====================================*/

.book-btns{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:25px;

}

.book-btns a{

    display:block;

    text-align:center;

    padding:13px;

    border-radius:50px;

    background:#8b5e34;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.book-btns a:hover{

    background:#b57d42;

    color:#fff;

    transform:translateY(-4px);

}

.book-btns a:last-child{

    background:transparent;

    border:2px solid #8b5e34;

    color:#8b5e34;

}

.book-btns a:last-child:hover{

    background:#8b5e34;

    color:#fff;

}

/*=====================================
HOVER GLOW
=====================================*/

.book-card::after{

content:'';

position:absolute;

inset:0;

border-radius:25px;

border:1px solid transparent;

transition:.4s;

z-index: -1;
}

.book-card:hover::after{

    border-color:rgba(181,125,66,.35);

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1200px){

.hero-content h1{

font-size:56px;

}

.book-main{

width:300px;

right:30px;

}

.hero-books{

height:520px;

}

}

@media(max-width:991px){

.books-hero{

padding:90px 0;

text-align:center;

}

.hero-content p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-books{

margin-top:60px;

height:460px;

}

.book-main{

position:relative;

margin:auto;

right:auto;

top:auto;

width:270px;

}

.book-left{

display:none;

}

.book-right{

display:none;

}

.circle1{

right:50%;

transform:translateX(50%);

}

.circle2{

display:none;

}

.section-title h2{

font-size:42px;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:42px;

}

.hero-tag{

font-size:14px;

}

.section-title h2{

font-size:36px;

}

.book-content{

padding:22px;

}

.book-content h3{

font-size:26px;

}

.book-content p{

min-height:auto;

}

}

@media(max-width:576px){

.books-hero{

padding:70px 0;

}

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:15px;

}

.btn-main,

.btn-outline{

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.hero-books{

height:auto;

}

.book-main{

width:220px;

}

.section-title h2{

font-size:30px;

}

.book-image{

padding:30px 15px;

}

.book-image img{

width:160px;

}

.book-content h3{

font-size:24px;

}

.book-btns a{

padding:12px;

font-size:14px;

}

}


/*==========================
PREMIUM HERO EFFECTS
===========================*/

.hero-content h1{
    position:relative;
}

.hero-content h1::after{

    content:'';

    width:140px;

    height:4px;

    border-radius:50px;

    background:linear-gradient(to right,#b67b3d,#f2d29b);

    display:block;

    margin-top:18px;

}

/* Glass Effect */

.book-card{

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

}

/* Floating Shine */

.book-image{

    position:relative;

}

.book-image::before{

    content:'';

    position:absolute;

    top:-120%;

    left:-60%;

    width:45%;

    height:320%;

    transform:rotate(25deg);

    background:rgba(255,255,255,.45);

    transition:1s;

}

.book-card:hover .book-image::before{

    left:160%;

}

/* Golden Border */

.book-card{

    border:1px solid rgba(185,145,92,.15);

}

/* Section Background */

.books-section{

    background-image:

    radial-gradient(circle at top left,rgba(180,135,70,.08),transparent 35%),

    radial-gradient(circle at bottom right,rgba(180,135,70,.05),transparent 35%);

}

/* Fancy Buttons */

.book-btns a{

    position:relative;

    overflow:hidden;

}

.book-btns a::before{

    content:'';

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-30deg);

    transition:.8s;

}

.book-btns a:hover::before{

    left:140%;

}

/* Premium Hover */

.book-card:hover{

    transform:translateY(-18px) scale(1.02);

}

/* Image Lift */

.book-card:hover img{

    filter:

    drop-shadow(0 35px 35px rgba(0,0,0,.18));

}

/* Decorative Dots */

.books-section::after{

    content:'';

    position:absolute;

    width:170px;

    height:170px;

    right:80px;

    bottom:80px;

    opacity:.25;

    background-image:radial-gradient(#b57d42 2px,transparent 2px);

    background-size:18px 18px;

}



/*====================================================
GOOGLE FONT & RESET
====================================================*/

/*====================================================
HERO
====================================================*/

.book-hero{

    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
    linear-gradient(135deg,#faf5ef,#efe3d3,#faf8f5);

}

.hero-bg-shape{

    position:absolute;
    border-radius:50%;
    filter:blur(60px);

}

.shape-1{

    width:420px;
    height:420px;

    left:-180px;
    top:-150px;

    background:rgba(183,140,86,.18);

}

.shape-2{

    width:360px;
    height:360px;

    right:-120px;
    bottom:-100px;

    background:rgba(120,90,55,.10);

}

.hero-content{

    position:relative;
    z-index:5;

}

.hero-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#fff;

    color:#9c6b38;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.hero-content h1{

    font-size:78px;

    line-height:1;

    margin:28px 0;

}

.hero-content h1 span{

    color:#b47a3f;

}

.hero-subtitle{

    max-width:560px;

    color:#666;

    font-size:18px;

}

.hero-buttons{

margin-top:40px;

display:flex;

gap:18px;

display: none;

flex-wrap:wrap;
}

.btn-main{

    background:#8b5d33;

    color:#fff;

    padding:16px 36px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

    box-shadow:0 20px 40px rgba(139,93,51,.30);

}

.btn-main:hover{

    background:#b57d42;

    transform:translateY(-5px);

    color:#fff;

}

.btn-outline{

    padding:16px 36px;

    border:2px solid #8b5d33;

    color:#8b5d33;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.btn-outline:hover{

    background:#8b5d33;

    color:#fff;

}

/*====================================================
INFO BOXES
====================================================*/

.book-info{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:50px;

}

.info-box{

    background:#fff;

    border-radius:20px;

    padding:22px;

    min-width:160px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.info-box:hover{

    transform:translateY(-8px);

}

.info-box h4{

    font-size:18px;

    margin-bottom:6px;

}

.info-box p{

    color:#777;

    margin:0;

}

/*====================================================
BOOK IMAGE
====================================================*/

.book-image-area{

    position:relative;

    height:650px;

}

.main-book{

    width:360px;

    position:absolute;

    right:80px;

    top:40px;

    z-index:5;

    animation:floatBook 6s ease-in-out infinite;

    filter:drop-shadow(0 35px 45px rgba(0,0,0,.25));

}

.gold-circle{

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:#dcc4a2;

    opacity:.35;

    right:120px;

    top:80px;

}

.ring{

    position:absolute;

    border-radius:50%;

    border:2px dashed rgba(181,125,66,.28);

}

.ring-1{

    width:420px;

    height:420px;

    right:20px;

    top:10px;

    animation:rotateRing 30s linear infinite;

}

.ring-2{

    width:310px;

    height:310px;

    right:75px;

    top:65px;

    animation:rotateReverse 22s linear infinite;

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:50px;

    padding:14px 22px;

    font-size:14px;

    font-weight:600;

    color:#8b5d33;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.card-one{

    left:10px;

    top:170px;

}

.card-two{

    right:0;

    bottom:80px;

}

/*====================================================
OVERVIEW
====================================================*/

.book-overview{

    padding:120px 0;

    background:#fff;

}

.overview-image{

    padding:40px;

    border-radius:35px;

    background:linear-gradient(135deg,#f7f2ea,#efe3d3);

    box-shadow:0 30px 60px rgba(0,0,0,.08);

}

.overview-image img{

    width:320px;

    margin:auto;

    filter:drop-shadow(0 30px 35px rgba(0,0,0,.18));

}

.overview-content span{

    color:#b57d42;

    letter-spacing:2px;

    font-weight:600;

}

.overview-content h2{

    font-size:58px;

    margin:20px 0;

}

.overview-content p{

    color:#666;

    margin-bottom:20px;

}

.overview-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.feature-item{

    background:#faf6f1;

    border-radius:18px;

    padding:18px;

    font-weight:500;

    transition:.35s;

}

.feature-item:hover{

    transform:translateX(8px);

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature-item i{

    color:#b57d42;

    margin-right:10px;

}

/*====================================================
ANIMATION
====================================================*/

@keyframes floatBook{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes rotateRing{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes rotateReverse{

    from{
        transform:rotate(360deg);
    }

    to{
        transform:rotate(0deg);
    }

}


/*====================================================
QUOTE SECTION
====================================================*/

.book-quote{

padding: 67px 0;

background:linear-gradient(135deg,#3a281b,#5b3d25);

position:relative;

overflow:hidden;
}

.book-quote::before{

    content:'';

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    left:-180px;

    top:-180px;

}

.book-quote::after{

    content:'';

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    right:-100px;

    bottom:-120px;

}

.quote-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.quote-box i{

    font-size:70px;

    color:#d9b17b;

    margin-bottom:30px;

}

.quote-box h2{

    color:#fff;

    font-size:50px;

    line-height:1.4;

    margin-bottom:30px;

}

.quote-box span{

    color:#dcb88c;

    font-size:20px;

    letter-spacing:2px;

}

/*====================================================
SECTION HEADING
====================================================*/

.section-heading{

/* max-width:750px; */

margin:0 auto 70px;
}

.section-heading span{

    color:#b57d42;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:600;

}

.section-heading h2{

    font-size:58px;

    margin:20px 0;

}

.section-heading p{

    color:#666;

    font-size:17px;

}

/*====================================================
WHY READ
====================================================*/

.why-read{

display: none;

padding:120px 0;

background:#f8f4ee;
}

.reason-card{

    background:#fff;

    padding:45px 35px;

    border-radius:30px;

    text-align:center;

    height:100%;

    transition:.45s;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid rgba(181,125,66,.12);

}

.reason-card:hover{

    transform:translateY(-15px);

    box-shadow:0 35px 70px rgba(0,0,0,.14);

}

.reason-card .icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#b57d42,#d8b07d);

    display:flex;

    justify-content:center;

    align-items:center;

}

.reason-card i{

    color:#fff;

    font-size:34px;

}

.reason-card h4{

    margin-bottom:18px;

    font-size:30px;

}

.reason-card p{

    color:#666;

    font-size:15px;

}

/*====================================================
TIMELINE
====================================================*/

.journey-section{

    padding:120px 0;

    background:#fff;

}

.timeline{

    position:relative;

    margin-top:80px;

}

.timeline::before{

    content:'';

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#d8b07d;

    transform:translateX(-50%);

}

.timeline-item{

    width:46%;

    background:#faf7f2;

    padding:35px;

    border-radius:25px;

    margin-bottom:60px;

    position:relative;

    box-shadow:0 18px 40px rgba(0,0,0,.07);

}

.timeline-item:nth-child(even){

    margin-left:auto;

}

.timeline-item span{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#8b5d33;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

}

.timeline-item h4{

    font-size:34px;

    margin-bottom:15px;

}

.timeline-item p{

    color:#666;

}

.timeline-item::after{

    content:'';

    position:absolute;

    width:22px;

    height:22px;

    background:#b57d42;

    border-radius:50%;

    top:45px;

}

.timeline-item:nth-child(odd)::after{

    right:-58px;

}

.timeline-item:nth-child(even)::after{

    left:-58px;

}

/*====================================================
HOVER EFFECTS
====================================================*/

.reason-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:30px;

    border:2px solid transparent;

    transition:.4s;

}

.reason-card{

    position:relative;

    overflow:hidden;

}

.reason-card:hover::before{

    border-color:#d7b081;

}

.timeline-item{

    transition:.4s;

}

.timeline-item:hover{

    transform:translateY(-10px);

}

.timeline-item:hover span{

    transform:scale(1.08);

    transition:.3s;

}


/*=========================================
PURCHASE SECTION
=========================================*/

.purchase-section{

    padding:120px 0;
    background:#f7f3ee;

}

.purchase-box{

    background:linear-gradient(135deg,#4a311f,#6d4a2d);
    padding:70px;
    border-radius:35px;
    color:#fff;
    position:relative;
    overflow:hidden;
    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.purchase-box::before{

    content:'';
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-120px;
    right:-120px;

}

.purchase-box span{

    color:#d8b07d;
    letter-spacing:3px;
    font-weight:600;

}

.purchase-box h2{

    color:#fff;
    font-size:58px;
    margin:20px 0;

}

.purchase-box p{

    color:rgba(255,255,255,.85);
    max-width:600px;

}

.purchase-buttons{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.amazon-btn{

    background:#fff;
    color:#4a311f;
    padding:18px 30px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.amazon-btn i{

    margin-right:10px;

}

.amazon-btn:hover{

    background:#d8b07d;
    color:#fff;
    transform:translateY(-6px);

}

/*=========================================
BOTTOM CTA
=========================================*/

.bottom-cta{

padding:120px 0;

background:#fff;

display: none;
}

.cta-content{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.cta-content h2{

    font-size:64px;
    margin-bottom:25px;

}

.cta-content p{

    max-width:700px;
    margin:auto auto 45px;
    color:#666;

}

/*=========================================
SCROLL ANIMATIONS
=========================================*/

.reason-card,
.timeline-item,
.purchase-box,
.quote-box,
.info-box,
.overview-image{

    transition:.45s;

}

.reason-card:hover,
.timeline-item:hover,
.info-box:hover{

    transform:translateY(-10px);

}

/*=========================================
CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#a67645;
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f4f0ea;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.hero-content h1{

font-size:62px;

}

.overview-content h2{

font-size:48px;

}

.purchase-box h2{

font-size:48px;

}

.cta-content h2{

font-size:54px;

}

.main-book{

width:300px;

}

}

@media(max-width:991px){

.book-hero,
.book-overview,
.book-quote,
.why-read,
.journey-section,
.purchase-section,
.bottom-cta{

padding: 50px 0 40px;
}

.hero-content{

text-align:center;

}

.hero-subtitle{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.book-info{

justify-content:center;

}

.book-image-area{

height:450px;
margin-top:50px;

}

.main-book{

position:relative;
right:auto;
top:auto;
margin:auto;

}

.ring,
.card-one,
.card-two{

display:none;

}

.gold-circle{

left:50%;
transform:translateX(-50%);

}

.timeline::before{

left:20px;

}

.timeline-item{

width:100%;
margin-left:40px !important;

}

.timeline-item::after{

left: -19px !important;
}

.purchase-box{

padding:45px;

text-align:center;

}

.purchase-buttons{

margin-top:40px;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:48px;

}

.overview-content h2,
.section-heading h2,
.quote-box h2,
.purchase-box h2,
.cta-content h2{

font-size: 28px;
}

.overview-features{

grid-template-columns:1fr;

}

.purchase-box{

padding:35px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

}

.btn-main,
.btn-outline{

width:100%;
text-align:center;

}

.book-info{

flex-direction:column;

}

.info-box{

width:100%;

}

.main-book{

width:220px;

}

.quote-box i{

font-size:50px;

}

.quote-box h2{

font-size: 16px;
}

.reason-card{

padding:30px 22px;

}

.reason-card h4{

font-size:24px;

}

.timeline-item{

padding:25px;

margin-left:28px !important;

}

.timeline-item h4{

font-size:28px;

}

.purchase-box h2{

font-size: 23px;
}

.cta-content h2{

font-size:34px;

}

}

.book-sidebar{

    position:sticky;
    top:120px;

}

/*==================================================
BOOK CONTENT SECTION
==================================================*/

.book-content-section{
    padding:100px 0;
    background:#f8f4ee;
    position:relative;
}

.book-content-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top right,rgba(181,125,66,.08),transparent 30%),
    radial-gradient(circle at bottom left,rgba(181,125,66,.05),transparent 35%);
    pointer-events:none;
}

.book-content{
    position:relative;
    z-index:2;
    padding-right:40px;
}

.book-tag{

    display:inline-block;

    padding:10px 22px;

    background:#fff;

    border-radius:50px;

    color:#9b6a3d;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.book-content h1{

    font-size:68px;

    line-height:1;

    color:#2b2018;

    margin-bottom:15px;

}

.book-content h3{

font-size: 24px;

color:#9b6a3d;

margin-bottom: 26px;

line-height: 28px;
}

.book-content h2{

    font-size:46px;

    color:#2b2018;

    margin:50px 0 25px;

    position:relative;

    padding-left:22px;

}

.book-content h2::before{

    content:"";

    position:absolute;

    left:0;

    top:8px;

    width:5px;

    height:48px;

    border-radius:20px;

    background:#b57d42;

}

.book-content p{

font-size: 15px;

color:#666;

line-height: 25px;

margin-bottom:22px;
}

.book-content strong{

    color:#2d2016;

    font-weight:700;

}

.content-divider{

    width:80px;

    height:4px;

    background:#b57d42;

    border-radius:50px;

    margin:55px 0;

}

/*==================================================
RIGHT SIDEBAR
==================================================*/

.book-sidebar{

    position:sticky;

    top:120px;

    background:#fff;

    border-radius:30px;

    padding:35px;

    text-align:center;

    box-shadow:0 25px 55px rgba(0,0,0,.08);

    border:1px solid rgba(181,125,66,.15);

    transition:.4s;

}

.book-sidebar:hover{

    transform:translateY(-8px);

}

.book-sidebar img{

    width:270px;

    margin:auto;

    filter:drop-shadow(0 25px 30px rgba(0,0,0,.18));

    transition:.5s;

}

.book-sidebar:hover img{

    transform:scale(1.05) rotate(-2deg);

}

.book-sidebar h4{

    margin-top:30px;

    font-size:34px;

    color:#2b2018;

}

.book-sidebar p{

    color:#888;

    margin-bottom:30px;

}

/*==================================================
BUTTONS
==================================================*/

.buy-btn{

    display:block;

    width:100%;

    padding:16px;

    margin-bottom:16px;

    border-radius:50px;

    background:#8b5d33;

    color:#fff;

    font-weight:600;

    transition:.35s;

    text-decoration:none;

}

.buy-btn:hover{

    background:#b57d42;

    color:#fff;

    transform:translateY(-4px);

}

.buy-btn.outline{

    background:transparent;

    border:2px solid #8b5d33;

    color:#8b5d33;

}

.buy-btn.outline:hover{

    background:#8b5d33;

    color:#fff;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.book-content{

padding-right:0;

}

.book-sidebar{

margin-top:60px;

position:relative;

top:0;

}

.book-content h1{

font-size:52px;

}

.book-content h2{

font-size:38px;

}

}

@media(max-width:768px){

.book-content h1{

font-size:42px;

}

.book-content h3{

font-size:26px;

}

.book-content h2{

font-size:32px;

}

.book-content p{

font-size:16px;

line-height:1.9;

}

.book-sidebar img{

width:220px;

}

.book-sidebar h4{

font-size:28px;

}

}

@media(max-width:576px){

.book-content-section{

padding:70px 0;

}

.book-tag{

font-size:12px;

padding:8px 18px;

}

.book-content h1{

font-size:34px;

}

.book-content h3{

font-size:22px;

}

.book-content h2{

font-size:28px;

padding-left:18px;

}

.book-content h2::before{

height:36px;

}

.book-sidebar{

padding:25px;

}

.buy-btn{

font-size:15px;

padding:14px;

}

}




/*====================================
ABOUT HERO
=====================================*/

.about-hero{

    padding:120px 0;
    background:linear-gradient(135deg,#f8f3ec,#efe4d6,#f9f6f2);
    overflow:hidden;
    position:relative;

}

.about-hero::before{

    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(181,125,66,.08);
    top:-180px;
    right:-120px;

}

.section-tag{

    display:inline-block;
    background:#fff;
    color:#a16c38;
    padding:10px 24px;
    border-radius:40px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    margin-bottom:25px;

}

.about-content h1{

    font-size:72px;
    line-height:1;
    margin-bottom:25px;
    color:#2d2218;

}

.about-content h1 span{

    color:#b57d42;

}

.about-content .lead{

    font-size:24px;
    color:#8b5d33;
    font-weight:500;
    margin-bottom:25px;

}

.about-content p{

    color:#666;
    font-size:17px;
    line-height:2;

}

.hero-btns{

    display:flex;
    gap:18px;
    margin-top:40px;

}

.author-image{

    position:relative;
    text-align:center;

}

.author-image img{

    width:420px;
    max-width:100%;
    border-radius:25px;
    box-shadow:0 35px 60px rgba(0,0,0,.18);

}

.experience-card{

    position:absolute;
    bottom:20px;
    right:0;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.experience-card h3{

    margin:0;
    font-size:38px;
    color:#b57d42;

}

.experience-card p{

    margin:0;
    color:#666;

}

/*====================================
BUTTONS
=====================================*/

.btn-main{

    display:inline-block;
    padding:15px 35px;
    background:#8b5d33;
    color:#fff;
    border-radius:50px;
    transition:.35s;

}

.btn-main:hover{

    background:#b57d42;
    color:#fff;
    transform:translateY(-4px);

}

.btn-outline{

    display:inline-block;
    padding:15px 35px;
    border:2px solid #8b5d33;
    color:#8b5d33;
    border-radius:50px;
    transition:.35s;

}

.btn-outline:hover{

    background:#8b5d33;
    color:#fff;

}

/*====================================
AUTHOR PAGE
=====================================*/

.about-author-page{

    padding:100px 0;
    background:#fff;

}

.about-header{

    margin-bottom:60px;

}

.about-header h1{

    font-size:60px;
    margin-bottom:35px;
    color:#2d2218;

}

.about-main-image{

    width:100%;
    max-width:750px;
    border-radius:25px;
    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.about-content{

    margin-top:50px;

}

.about-content h3{

    font-size:38px;
    color:#2d2218;
    margin:60px 0 25px;
    padding-left:20px;
    border-left:5px solid #b57d42;

}

.about-content p{

    font-size:18px;
    color:#666;
    line-height:2;
    margin-bottom:25px;
    text-align:justify;

}

.about-content strong{

    color:#2d2218;

}

/*====================================
DECORATION
=====================================*/

.about-author-page::before{

    content:'';
    position:absolute;

}

.about-content p::selection{

    background:#b57d42;
    color:#fff;

}

/*====================================
RESPONSIVE
=====================================*/

@media(max-width:992px){

.about-hero{

padding:90px 0;

}

.about-content h1{

font-size:52px;

}

.about-header h1{

font-size:46px;

}

.hero-btns{

justify-content:center;
flex-wrap:wrap;

}

.about-content{

text-align:center;

}

.author-image{

margin-top:50px;

}

.experience-card{

position:relative;
display:inline-block;
margin-top:-40px;
right:auto;

}

.about-content h3{

text-align:left;

}

}

@media(max-width:768px){

.about-content h1{

font-size:42px;

}

.about-content .lead{

font-size:20px;

}

.about-header h1{

font-size:38px;

}

.about-content h3{

font-size:30px;

}

.about-content p{

font-size:16px;

}

}

@media(max-width:576px){

.about-hero{

padding:70px 0;

}

.about-content h1{

font-size:34px;

}

.hero-btns{

flex-direction:column;

}

.btn-main,
.btn-outline{

width:100%;
text-align:center;

}

.about-header h1{

font-size:32px;

}

.about-content h3{

font-size:26px;

}

}

/*==================================
TESTIMONIAL SECTION
===================================*/

.testimonial-section{

    position:relative;
    padding:120px 0;
    background:linear-gradient(135deg,#faf7f2,#f3e7d6,#fff);
    overflow:hidden;

}

.testimonial-section::before{

    content:'';
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(181,125,66,.08);
    top:-220px;
    left:-180px;

}

.testimonial-section::after{

    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(181,125,66,.05);
    bottom:-180px;
    right:-120px;

}

/*========================*/

.section-heading{

/* max-width:760px; */

margin:auto;

margin-bottom:80px;
}

.section-heading .section-tag{

    display:inline-block;
    background:#fff;
    color:#b57d42;
    padding:10px 25px;
    border-radius:40px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.section-heading h2{

font-size: 46px;

margin:25px 0;

color:#2d2218;

font-weight:700;
}

.section-heading h2 span{

    color:#b57d42;

}

.section-heading p{

    color:#777;
    font-size:18px;
    line-height:1.8;

}

/*========================*/

.testimonial-wrapper{

    display:grid;
    grid-template-columns:1fr 1.4fr 1fr;
    gap:40px;
    align-items:center;

}

/*========================*/

.floating-card{

    background:rgba(255,255,255,.7);
    backdrop-filter:blur(18px);
    padding:35px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.5);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    transition:.45s;
    position:relative;

}

.floating-card:hover{

    transform:translateY(-15px) rotate(-1deg);
    box-shadow:0 35px 80px rgba(0,0,0,.15);

}

.quote-icon{

    width:65px;
    height:65px;
    border-radius:50%;
    background:#b57d42;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;

}

.floating-card p{

    color:#555;
    line-height:1.9;
    margin-bottom:30px;

}

/*========================*/

.reviewer{

    display:flex;
    align-items:center;
    gap:15px;

}

.reviewer img{

    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.reviewer h5{

    margin:0;
    color:#2d2218;

}

.reviewer span{

    color:#999;
    font-size:14px;

}

/*========================*/

.featured-testimonial{

position:relative;

text-align:center;

background:#fff;

padding:70px 50px;

border-radius:35px;

box-shadow:0 40px 90px rgba(0,0,0,.12);

/* overflow:hidden; */

transition:.45s;
}

.featured-testimonial:hover{

    transform:translateY(-12px);

}

.featured-testimonial::before{

    content:'';
    position:absolute;
    inset:0;
    border:2px solid rgba(181,125,66,.15);
    border-radius:35px;
    pointer-events:none;

}

.quote-circle{

width:90px;

height:90px;

margin:auto;

margin-top:-105px;

margin-bottom:30px;

background:linear-gradient(135deg,#b57d42,#8b5d33);

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

box-shadow:0 20px 40px rgba(181,125,66,.35);

z-index: 3;
}

/*========================*/

.stars{

    margin-bottom:25px;

}

.stars i{

    color:#f5b400;
    margin:0 3px;
    font-size:22px;

}

.featured-testimonial blockquote{

    font-size:22px;
    line-height:1.9;
    color:#444;
    font-style:italic;
    margin-bottom:40px;

}

/*========================*/

.author-info img{

    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #f3e7d6;
    margin-bottom:20px;

}

.author-info h4{

    margin:0;
    color:#2d2218;

}

.author-info span{

    color:#b57d42;
    font-size:15px;

}

/*========================*/

.left-card{

    animation:floatCard 6s ease-in-out infinite;

}

.right-card{

    animation:floatCard 7s ease-in-out infinite;

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/*========================*/

@media(max-width:992px){

.testimonial-wrapper{

grid-template-columns:1fr;
gap:35px;

}

.featured-testimonial{

order:-1;

}

.section-heading h2{

font-size:42px;

}

}

@media(max-width:768px){

.testimonial-section{

padding:80px 0;

}

.section-heading h2{

font-size:34px;

}

.featured-testimonial{

padding:55px 30px;

}

.featured-testimonial blockquote{

font-size:18px;

}

.floating-card{

padding:28px;

}

}

@media(max-width:576px){

.section-heading h2{

font-size:30px;

}

.quote-circle{

width:70px;
height:70px;
font-size:28px;
margin-top:-90px;

}

.reviewer{

flex-direction:column;
text-align:center;

}

.author-info img{

width:75px;
height:75px;

}

}


.featured-testimonial,
.floating-card{
    transform-style: preserve-3d;
    will-change: transform;
}

.stars i{
    transition: all .35s ease;
}

.legacy-reviews{
    display:none;
}

/* Full reader reviews */
.reviews-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px;
    position:relative;
    z-index:1;
    align-items:start;
}

.review-card{
    background:rgba(255,255,255,.9);
    border:1px solid rgba(181,125,66,.18);
    border-radius:28px;
    box-shadow:0 24px 60px rgba(45,34,24,.09);
    padding:38px;
}

.review-card:last-child{
    grid-column:1 / -1;
}

.review-card .quote-icon{
    margin-bottom:18px;
}

.review-card .stars{
    color:#f5b400;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:22px;
}

.review-copy p{
    color:#555;
    font-size:16px;
    line-height:1.85;
    margin:0 0 18px;
}

.review-copy p:last-child{
    margin-bottom:0;
}

.review-author{
    border-top:1px solid rgba(181,125,66,.2);
    margin-top:28px;
    padding-top:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.review-author strong{
    color:#2d2218;
    font-size:18px;
}

.review-author a{
    color:#8b5d33;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.review-author a:hover{
    color:#b57d42;
    text-decoration:underline;
}

@media(max-width:992px){
    .reviews-grid{
        grid-template-columns:1fr;
    }

    .review-card:last-child{
        grid-column:auto;
    }
}

@media(max-width:576px){
    .review-card{
        padding:26px 22px;
    }

    .review-author{
        align-items:flex-start;
        flex-direction:column;
    }
}
