/* =====================================================
   RAJIV KHANDELWAL WEBSITE
   MASTER STYLESHEET
===================================================== */

/* =========================
   ROOT VARIABLES
========================= */

:root{

    --navy:#1a2e4a;
    --gold:#c8a96e;
    --offwhite:#f8f6f1;

    --poetry:#c8a96e;
    --lets:#2a6496;
    --scholarly:#5a8a5a;
    --bio:#8a5a8a;

    --heading:#1a2e4a;
    --text:#5f6470;

    --border:#e8eaef;

    --radius:24px;
    --radius-sm:16px;

    --shadow:
    0 20px 50px rgba(26,46,74,.08);

}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden !important;
}

body{

    font-family:'DM Sans',sans-serif;

    font-size:16px;

    color:var(--text);

    background:var(--offwhite);

    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

section{
    position:relative;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3,h4,h5,h6{

    font-family:'Playfair Display',serif;
    color:var(--heading);
    line-height:1.1;
}

h1{
    font-size:72px;
}

h2{
    font-size:42px;
}

h3{
    font-size:30px;
}


/* =========================
   BUTTONS
========================= */

.btn-primary-custom{

    background:var(--navy);

    color:#fff;

    border:none;

    padding:16px 34px;

    border-radius:60px;

    transition:.3s;
}

.btn-primary-custom:hover{

    background:#13243a;
}

.btn-outline-custom{

    border:1px solid var(--gold);

    color:var(--navy);

    padding:16px 34px;

    border-radius:60px;
}

/* =========================
   NAVBAR
========================= */

.custom-nav{

    position:fixed;

    top:20px;
    width: 90%;
    margin: auto;

    left:0;

    right:0;

    z-index:999;

    background:#fff;

    border-radius:24px;

    box-shadow:var(--shadow);

    padding:5px 30px;
}

.logo-circle{

    width:54px;
    height:54px;

    border:2px solid var(--gold);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-family:'Playfair Display',serif;

    color:var(--navy);
}

.nav-link{

    color:var(--navy)!important;

    font-weight:500;

    margin:0 10px;

    position:relative;
}

.nav-link:hover{

    color:var(--gold)!important;
}

.nav-link.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:2px;

    background:var(--gold);
}

/* =========================
   HERO SECTION
========================= */

.hero-section{

   padding:120px 0 40px;
    display:flex;

    align-items:center;

    padding-top:180px;

    background:
    radial-gradient(
    circle at center,
    rgba(200,169,110,.12),
    transparent 50%
    );
}

.hero-tag{

    letter-spacing:4px;

    color:var(--gold);

    font-size:12px;

    text-transform:uppercase;
}

.hero-title{

    margin:20px 0;

    color:var(--navy);
}

.hero-line{

    width:120px;

    height:3px;

    background:var(--gold);

    margin:20px 0;
}

.hero-subtitle{

    font-size:24px;

    color:var(--navy);
}

.author-circle{

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(200,169,110,.25),
    rgba(248,246,241,.1)
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.author-image{
    width:85%;
    object-fit:cover;
}


/* =========================
   STATS
========================= */

.stats-grid{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:40px 0;
}

 .hero-wrapper{
    background:
        radial-gradient(circle at 15% 20%, rgba(200,169,110,.18), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(26,46,74,.08), transparent 35%),
        linear-gradient(180deg,#faf8f3 0%,#ffffff 100%);
}

.logo-circle{
    width:60px;
    height:60px;

    background:linear-gradient(
        135deg,
        #c8a96e,
        #e5c890
    );

    color:#fff;
    font-weight:700;

    box-shadow:
        0 10px 25px rgba(200,169,110,.35);
}
.hero-title{
    font-size:82px;
    line-height:.95;
    margin-bottom:20px;

    background:linear-gradient(
        135deg,
        #1a2e4a,
        #35507a
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    font-size:24px;
    font-weight:500;
    color:#1a2e4a;
}

.hero-text{
    max-width:550px;
    font-size:18px;
    line-height:1.9;
}
.author-circle{

    position:relative;

    width:530px;
    height:558px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(200,169,110,.30),
        rgba(255,255,255,.05)
    );

    border:4px solid rgb(29 50 79);

    box-shadow:
        0 30px 80px rgba(0,0,0,.12);
}

.author-circle::before{

    content:"";

    position:absolute;

    inset:-20px;

    border:1px dashed rgba(200,169,110,.4);

    border-radius:50%;

    animation:spin 40s linear infinite;
}

.author-image{
    border-radius:50%;
    object-fit:cover;
    width:88%;
    height:88%;
}

@keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}
.stat-box{

    background:#fff;

    border-radius:22px;

    padding:24px;

    border:1px solid rgba(26,46,74,.06);

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

    transition:.35s;
}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

.stat-box h3{

    color:#c8a96e;

    font-size:38px;

    margin-bottom:4px;
}
 @media (max-width:1366px) and (max-height:768px){

    .hero-section{
        min-height:90vh;
        padding:120px 0 40px;
    }

    .hero-title{
        font-size:72px;
    }

    .hero-subtitle{
        font-size:19px;
        margin:0;
    }

    .hero-text{
        font-size:15px;
        margin-bottom:0;
    }

    .stats-grid{
        margin:20px 0;
        gap:12px;
    }

    .stat-box{
        padding:14px 12px;
        min-width:85px;
    }

    .stat-box h3{
        font-size:30px;
    }

    .author-circle{
        width:430px;
        height:430px;
    }
}


/* Mobile */
@media (max-width: 576px) {
    .series-item {
        display: block;
    }

    .series-item .badge-text {
        width: 44%;
        text-align: center;
        margin-top: 8px;
    }

    .age-badge {
        display: inline-block;
        margin-top: 6px;
        margin-left: 0;
    }

    .content-card h2 {
        font-size: 1.5rem;
    }
}
.btn-primary-custom{

    background:linear-gradient(
        135deg,
        #1a2e4a,
        #304d78
    );

    color:#fff;

    border:none;

    border-radius:60px;

    padding:15px 34px;

    font-weight:600;

    transition:.35s;
}

.btn-primary-custom:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(26,46,74,.25);
}

.btn-outline-custom{

    border:2px solid #c8a96e;

    color:#1a2e4a;

    border-radius:60px;

    padding:15px 34px;

    font-weight:600;
}

.btn-outline-custom:hover{

    background:#c8a96e;
    color:#fff;
}

.quote-card{

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:30px;

    border-left:6px solid #c8a96e;

    box-shadow:
        0 20px 60px rgba(0,0,0,.05);
}

.quote-label{

    letter-spacing:4px;

    font-size:12px;

    color:#c8a96e;

    font-weight:700;
}

.quote-card blockquote{

    font-size:42px;

    line-height:1.5;

    font-style:italic;

    color:#1a2e4a;

    margin:20px 0;
}
.content-card{

    background:#fff;

    border-radius:30px;

    padding:45px;

    height:100%;

    border:1px solid rgba(26,46,74,.06);

    box-shadow:
        0 20px 50px rgba(0,0,0,.05);

    transition:.35s;
}

.content-card:hover{

    transform:translateY(-8px);
}
@media(max-width:991px){

    .hero-title{
        font-size:56px;
        text-align:center;
    }

    .hero-subtitle,
    .hero-text{
        text-align:center;
    }

    .author-circle{
        width:347px;
        height:373px;
        margin:50px auto 0;
    }

    .stats-grid{
        justify-content:center;
    }

    .hero-buttons{
        text-align:center;
    }
}
.stat-box{
    background:#fff;
    border-radius:20px;
    padding:14px;
    text-align:center;
    background-color: var(--navy);
}

.stat-box small{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size: 12px;
}

.stat-box h3{
    font-size:34px;
}

/* =========================
   FEATURE PANELS
========================= */

.feature-section{
    padding:80px 0;
}

.feature-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    height:100%;

    border:1px solid rgba(26,46,74,.08);

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

    transition:.4s ease;

    position:relative;
    overflow:hidden;
}

.poetry-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 60px rgba(200, 169 ,110,0.2);
}

.lets-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 13px 25px rgb(42 98 148 / 64%);
}

.scholarly-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 13px 25px rgb(90 138 90 / 66%);
}

.bio-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 13px 25px rgb(138 90 138 / 63%)
}

.feature-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;

    width:100%;
    height:5px;
}

.poetry-card::before{
    background:#c8a96e;
}

.lets-card::before{
    background:#2a6496;
}

.scholarly-card::before{
    background:#5a8a5a;
}

.bio-card::before{
    background:#8a5a8a;
}

.feature-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;
}

.poetry-card .feature-icon{
    background:rgba(200,169,110,.12);
    color:#c8a96e;
}

.lets-card .feature-icon{
    background:rgba(42,100,150,.12);
    color:#2a6496;
}

.scholarly-card .feature-icon{
    background:rgba(90,138,90,.12);
    color:#5a8a5a;
}

.bio-card .feature-icon{
    background:rgba(138,90,138,.12);
    color:#8a5a8a;
}

.feature-card h3{
    font-size:26px;
    margin-bottom:15px;
    color:#1a2e4a;
}

.feature-card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.feature-link{
    color:#1a2e4a;
    font-weight:600;
}

.feature-link i{
    transition:.3s;
}

.feature-card:hover .feature-link i{
    transform:translateX(5px);
}

@media(max-width:991px){

    .feature-section{
        padding:50px 0;
    }

    .feature-card{
        padding:28px;
    }
}
/* =========================
   PAGE BANNER
========================= */

.page-banner{
    padding:170px 0 30px;
    text-align:center;
    background:linear-gradient(
        180deg,
        #faf8f3 0%,
        #ffffff 100%
    );
}

.page-banner h1{
    margin-bottom:25px;
}


/* =========================
   BOOK GRID
========================= */

.book-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.book-card{

    background:#fff;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.3s;
}

.book-card:hover{

    transform:translateY(-8px);
}

/* =========================
   LET'S SERIES
========================= */

.volume-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:var(--shadow);
}

.age-badge{

    background:var(--lets);

    color:#fff;

    padding:6px 14px;

    border-radius:30px;
}

/* =========================
   SCHOLARLY RECEPTION
========================= */

.reception-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    height:100%;
}

/* =========================
   BIOGRAPHY TIMELINE
========================= */

.timeline{

    position:relative;

    padding-left:60px;
}

.timeline::before{

    content:"";

    position:absolute;

    left:20px;

    top:0;

    bottom:0;

    width:2px;

    background:var(--gold);
}

.timeline-item{

    position:relative;

    margin-bottom:60px;
}

.timeline-item::before{

    content:"";

    position:absolute;

    left:-48px;

    top:5px;

    width:18px;

    height:18px;

    background:var(--gold);

    border-radius:50%;
}

/* =========================
   CONTACT
========================= */

.contact-form{

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:var(--shadow);
}

.form-control,
.form-select{

    min-height:55px;

    border-radius:12px;
}

/* =========================
   FOOTER
========================= */

footer{

    background:var(--navy);

    color:#fff;

    padding:80px 0 40px;
}

footer h5{

    color:#fff;
}

footer a{

    color:#d6d6d6;
}

footer a:hover{

    color:var(--gold);
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    h1{
        font-size:50px;
    }

    h2{
        font-size:38px;
    }

    .hero-section{
        text-align:center;
    }

    .author-circle{

        width:350px;
        height:350px;

        margin:40px auto 0;
    }

    .feature-box{
        grid-template-columns:1fr;
    }

    .book-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:767px){

    .book-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        justify-content:center;
    }

    .contact-form{
        padding:25px;
    }

    h1{
        font-size:42px;
    }
}

/* Dropdown Menu */

.navbar .dropdown-menu{
    min-width: 260px;
    border: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    box-shadow:0 15px 40px rgba(26,46,74,0.12);
    margin-top: 15px;
    animation: dropdownFade .25s ease;
}

/* Top Arrow */

.navbar .dropdown-menu::before{
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 3px;
}

/* Dropdown Items */

.navbar .dropdown-item{
    padding: 14px 18px;
    border-radius: 14px;
    color: #1a2e4a;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Arrow */



/* Hover */

.navbar .dropdown-item:hover{

    background: rgba(200,169,110,.12);

    color: #1a2e4a;

    transform: translateX(6px);
}

.navbar .dropdown-item:hover::after{
    opacity: 1;
    transform: translateX(0);
}

/* Smooth Desktop Hover */

@media(min-width:992px){

    .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0px;
    }
    .quote-card{
    max-width:1178px;
    }
}

/* Animation */

@keyframes dropdownFade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero-buttons{
    display:flex;
    gap:15px;
    align-items:center;
}

/* Mobile */
@media (max-width:768px){

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons a{
        width:57%;
        text-align:center;
    }
}

/* QUOTE */

.quote-section{
    padding:80px 0;
    background:#f8f6f1;
}

.quote-card{
    
    margin:auto;
    border-left:4px solid #c8a96e;
    padding-left:35px;
}

.quote-label{
    color:#c8a96e;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.quote-card blockquote{
    font-family:'Playfair Display',serif;
    font-size:38px;
    color:#1a2e4a;
    font-style:italic;
    margin:15px 0;
}

.quote-author{
    color:#7c8796;
}

/* COLLECTIONS */

.collections-section{
    padding:100px 0;
    background:#fff;
}

.content-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.poetry-list{
    list-style:none;
    padding:0;
}

.poetry-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.gold-dot{
    width:10px;
    height:10px;
    background:#c8a96e;
    border-radius:50%;
    display:inline-block;
    margin-right:12px;
}

/* LET'S SERIES */
.series-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.age-badge{
    background:#2a6496;
    color:#fff;
    padding:4px 12px;
    border-radius:30px;
    font-size:12px;
    margin-left:10px;
}

/* SCHOLARLY BAND */

.scholarly-band{
    background:#1a2e4a;
    padding:40px 0;
}

.record-number{
    color:#c8a96e;
    font-size:52px;
    font-family:'Playfair Display',serif;
}

.record-label{
    color:#fff;
    font-size:14px;
}
/* ==========================
   LIBRARY SECTION
========================== */
.library-section{

    padding:80px 0;
    background-size:cover;
    background-position:center;
    position:relative;
}

/* Paper Texture Effect */
.library-section::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:.15;

    background-image:
    radial-gradient(#ddd 1px, transparent 1px);

    background-size:18px 18px;

    pointer-events:none;
}

.section-header{
    margin-bottom:50px;
}

.section-tag{

    display:inline-block;

    color:#c8a96e;

    letter-spacing:3px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:15px;
}

.library-title{
    font-family:'Playfair Display', serif;
    font-size:60px;
    color:#1a2e4a;
    margin-bottom:20px;
}

.library-subtitle{

    max-width:650px;

    margin:auto;

    color:#6b7280;

    font-size:18px;
}

/* Books Grid */

.books-grid{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    gap:70px;
    margin:auto;
}

/* Book Card */

.book-card{
    display:block;
    transition:.4s ease;
    position:relative;
    box-shadow:-20px 15px 20px -3px #00000080,-40px 20px 50px -30px #0003;
}

.book-card img{
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
    
    transition:.4s ease;
}

/* Hover */

.book-card:hover{

    transform:translateY(-15px);
}

.book-card:hover img{

    box-shadow:
        0 25px 45px rgba(0,0,0,.25),
        0 40px 80px rgba(0,0,0,.15);
}

/* Mobile */

@media(max-width:991px){

    .library-title{
        font-size:48px;
    }

    .books-grid{
        gap:25px;
    }
}

@media(max-width:576px){

    .library-title{
        font-size:38px;
    }

    .books-grid{
        grid-template-columns:
        repeat(2,1fr);
    }
}
                                    
/* =========================
   FOOTER
========================= */

.site-footer{

    background:#0f1f35;

    color:#fff;

    padding:90px 0 30px;

    position:relative;
}

.site-footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #c8a96e,
        #e4c98e
    );
}

.footer-logo{

    width:70px;
    height:70px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #c8a96e,
        #e4c98e
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-family:'Playfair Display',serif;

    font-size:24px;

    margin-bottom:20px;
}

.footer-brand h4{

    color:#fff;

    margin-bottom:15px;
}

.footer-brand p{

    color:rgba(255,255,255,.75);

    line-height:1.8;
}

.footer-contact{

    margin-top:20px;
}

.footer-contact div{

    margin-bottom:10px;

    color:rgba(255,255,255,.8);
}

.footer-contact i{

    color:#c8a96e;

    margin-right:10px;
}

.footer-heading{

    color:#fff;

    font-size:18px;

    margin-bottom:20px;

    position:relative;
}

.footer-heading::after{

    content:"";

    display:block;

    width:40px;

    height:2px;

    background:#c8a96e;

    margin-top:8px;
}

.footer-links{

    list-style:none;

    padding:0;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:.3s;
}

.footer-links a:hover{

    color:#c8a96e;

    padding-left:5px;
}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    color:rgba(255,255,255,.6);

    font-size:14px;
}

@media(max-width:768px){

    .footer-bottom{

        flex-direction:column;

        text-align:center;
    }
}

/* =========================
   Volumes Page CSS
========================= */
/* ===========================
   VOLUMES HERO
=========================== */

.volumes-hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 30px;

    background:
    linear-gradient(
        180deg,
        #faf8f3 0%,
        #ffffff 100%
    );
}

/* Decorative Shapes */

.hero-shape{

    position:absolute;

    border-radius:50%;
}

.hero-shape-1{

    width:420px;
    height:420px;

    top:-120px;
    right:-120px;

    background:
    radial-gradient(
        rgba(200,169,110,.18),
        transparent 70%
    );
}

.hero-shape-2{

    width:350px;
    height:350px;

    left:-100px;
    bottom:-120px;

    background:
    radial-gradient(
        rgba(26,46,74,.08),
        transparent 70%
    );
}

/* Label */

.hero-label{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:
    rgba(200,169,110,.12);

    color:#c8a96e;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;
}

/* Heading */

.hero-heading{

    font-family:'Playfair Display',serif;

    font-size:90px;

    line-height:1;

    margin-bottom:25px;

    color:#1a2e4a;
}

.hero-heading span{
    color:#c8a96e;
}

.launch {
    font-family: 'Playfair Display', serif;
    color: #1a2e4a;
    font-size: 15px;
}

.launch span{
    color: #0f7b78;
    box-shadow: 0 0 32px #f4eee2;
}

/* Divider */

.hero-divider{

    width:120px;
    height:3px;

    margin:0 auto 30px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #c8a96e,
        transparent
    );
}

/* Description */

.hero-description{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#5f6470;
}

/* Badges */

.hero-badges{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.hero-badges span{

    background:#fff;

    border:1px solid rgba(26,46,74,.08);

    border-radius:50px;

    padding:12px 20px;

    color:#1a2e4a;

    font-size:14px;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

/* Mobile */

@media(max-width:991px){

    .volumes-hero{
        padding:140px 0 20px;
    }
   .volumes-section {
    padding: 40px 0 !important;
    }
    .hero-heading{
        font-size:58px;
    }

    .hero-description{
        font-size:17px;
    }
}

@media(max-width:576px){

    .hero-heading{
        font-size:42px;
    }

    .hero-description{
        font-size:16px;
        line-height:1.8;
    }

    .hero-badges span{
        width:100%;
    }
}
.volumes-section{
    padding:50px 0 100px 0;
}

.series-intro{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.volume-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    height:100%;

    border:1px solid rgba(26,46,74,.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,.05);

    transition:.35s;
}

.volume-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.10);
}

.card-top{

    justify-content:space-between;
    align-items:center;
    width: 70%;
}

.volume-icon{
    width: 30%;
    height:100px;
    flex-shrink:0;
    margin-bottom: 14px;
    text-align: center;
}

.volume-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.cards{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.card-top h3{

  
  margin-bottom:15px;
    color:#1a2e4a;
}

.age-badge{

    background:#2a6496;

    color:#fff;

    font-size:13px;

    padding:7px 14px;

    border-radius:30px;
}

.status{

    display:inline-block;

    margin-bottom:20px;

    padding:7px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;
}

.published-status{

    background:#d9f7e3;

    color:#0f7b3e;
}

.dev-status{

    background:#eef1f5;

    color:#6c757d;
}

.isbn-box{

    background:#faf8f3;

    border-left:4px solid #c8a96e;

    padding:15px;

    margin-bottom:20px;

    border-radius:10px;

    color:#1a2e4a;

    font-size:14px;
}

.published{

    border-top:5px solid #c8a96e;
}

.volume-card p{

    color:#5f6470;

    line-height:1.9;

    margin-bottom:0;
}


/* =========================
   Invitation & Awards Page CSS
========================= */

.awards-section{
    padding:80px 0;
}

.award-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    height:100%;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.award-card:hover{
    transform:translateY(-10px);
}

.award-year{
    display:inline-block;
    background:#c8a96e;
    color:#fff;
    padding: 0 16px 7px 16px;
    margin-left: 10px;
    border-radius:50px;
    font-weight:600;
   
}

.award-card h3{
    color:#1a2e4a;
    margin-bottom:10px;
}

.award-detail-card h4{
    color:#c8a96e;
    font-weight:600;
}

.featured-award{
    border:2px solid #c8a96e;
}

.award-detail-section{
    padding-bottom:80px;
}

.award-detail-card{
    background:#faf8f3;
    padding:50px;
    border-radius:30px;
    border-left:6px solid #c8a96e;
}

.award-detail-card h2{
     font-size: 37px;
} 

.award-certificate{
    margin-top:25px;
    position:relative;
}

.certificate-thumb{
    width:100%;
    /* height:260px; */
    object-fit:cover;
    border-radius:16px;
    cursor:pointer;
    border:1px solid rgba(200,169,110,.25);
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.certificate-thumb:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.certificate-caption{
    margin-top:12px;
    text-align:center;
    color:#1a2e4a;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.certificate-caption i{
    color:#c8a96e;
    margin-right:6px;
}


.evidence-card{
    text-align:center;
}

.evidence-img{
    border-radius:18px;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}



.modal-backdrop.show{
    opacity:.92;
}

#modalImage{
    max-height:100vh !important;
    width: 450px !important;
}

.evidence-section{
    background:#faf8f3;
}

.evidence-section{
    padding:80px 0;
    background:
        linear-gradient(
            rgba(250,248,243,.95),
            rgba(250,248,243,.95)
        ),
        url("assets/img/paper-bg.jpg");
    background-size:cover;
    position:relative;
}

.evidence-section .section-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.evidence-section .section-label{
    color:#c8a96e;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
}

.evidence-section h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    color:#1a2e4a;
    margin:15px 0;
}

.evidence-section p{
    color:#5e6776;
    font-size:17px;
}

.evidence-card{
    position:relative;
    height:100%;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
    transition:.45s;
    border:1px solid rgba(200,169,110,.18);
}

.evidence-card:hover{
    transform:translateY(-12px);
    box-shadow:
        0 35px 80px rgba(0,0,0,.12);
}

.document-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:5;

    background:#1a2e4a;
    color:#fff;

    padding:8px 14px;
    border-radius:30px;

    font-size:11px;
    letter-spacing:1px;
    font-weight:600;
}

.evidence-image-wrap{
    position:relative;
    overflow:hidden;
}

.evidence-img{
    width:100%;
    height: 560px;
    object-fit:contain;
    transition:.6s;
    cursor:pointer;
}



.image-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(26,46,74,.92),
            rgba(26,46,74,.15)
        );

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;

    opacity:0;
    transition:.4s;
}

.evidence-card:hover .image-overlay{
    opacity:1;
}

.image-overlay i{
    font-size:40px;
    margin-bottom:10px;
}

.image-overlay span{
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.evidence-content{
    padding:32px;
}

.evidence-type{
    color:#c8a96e;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:12px;
}

.evidence-content h5{
    font-family:'Playfair Display',serif;
    color:#1a2e4a;
    font-size:28px;
    margin-bottom:15px;
}

.evidence-content p{
    line-height:1.9;
    margin:0;
}

.evidence-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;

    width:100%;
    height:5px;

    background:
        linear-gradient(
            90deg,
            #c8a96e,
            #e4c98d
        );
}
.section-heading h2{
    position:relative;
    display:inline-block;
}

.section-heading h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;

    width:120px;
    height:3px;

    background:#c8a96e;
}

.featured-award{
    border:2px solid #c8a96e;
    background:
    linear-gradient(
        135deg,
        #fffdf8,
        #faf8f3
    );
}

.evidence-img{
    cursor:pointer;
}

#imageModal .modal-content{
    background:transparent;
}

#modalImage{
    max-height:90vh;
    width:auto;
}

#imageModal .btn-close{
    z-index:9999;
    opacity:1;
}

/* =========================
   Interview & Press Coverage Page CSS
========================= */

.video-interview-section,
.interview-archive{
    padding:80px 0;
}

.press-feature-box{
  
    border-radius:30px;
    padding:50px;
    border:1px solid rgba(200,169,110,.20);
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.press-feature-box::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(200,169,110,.08);
}

.press-image-wrapper{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    cursor:pointer;
}

.press-feature-img{
    width:100%;
    transition:.5s;
}



.image-overlay{
    position:absolute;
    inset:0;
    background:rgba(26,46,74,.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    opacity:0;
    transition:.4s;
}

.image-overlay i{
    font-size:38px;
    margin-bottom:10px;
}

.image-overlay span{
    font-weight:600;
    letter-spacing:.5px;
}

.press-image-wrapper:hover .image-overlay{
    opacity:1;
}

.press-meta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(200,169,110,.12);
    color:#b58b38;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.press-content h3{
    font-size:36px;
    color:#1a2e4a;
    margin-bottom:20px;
    line-height:1.3;
}

.press-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.press-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8f6f1;
    padding:15px 18px;
    border-radius:14px;
    transition:.3s;
}

.highlight-item:hover{
    transform:translateY(-4px);
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.highlight-item i{
    font-size:22px;
    color:#c8a96e;
}

.highlight-item span{
    font-weight:600;
    color:#1a2e4a;
}

@media(max-width:991px){

    .press-feature-box{
        padding:30px;
    }

    .press-content h3{
        font-size:28px;
    }

    .press-highlights{
        grid-template-columns:1fr;
    }
}

.featured-press-section .section-label {
    color: #c8a96e;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-press-section .section-heading {
    max-width: 870px;
    margin: auto;
    margin-bottom: 30px;
}

.featured-press-section .section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #1a2e4a;
}

.featured-press-section .section-heading p{
    margin-top: 18px;
}

.video-interview-section{
    padding:80px 0;
    background:
        radial-gradient(circle at top left,
        rgba(200,169,110,.08),
        transparent 35%);
}

.video-showcase{
    background:#fff;
    border-radius:32px;
    padding:18px;
    box-shadow:0 25px 80px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.video-showcase::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(200,169,110,.08);
}

.video-content h2{
    font-size:54px;
    color:#1a2e4a;
    margin:12px 0 20px;
}

.title-line{
    width:90px;
    height:4px;
    background:#c8a96e;
    border-radius:20px;
    margin-bottom:25px;
}

.video-content p{
    font-size:18px;
    line-height:1.9;
    color:#5f6675;
    margin-bottom:30px;
}

.video-meta{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.meta-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#1a2e4a;
}

.meta-item i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f3ea;
    color:#c8a96e;
    border-radius:50%;
}

.video-frame{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
    border:6px solid #fff;
}

.video-frame::before{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(200,169,110,.25);
    border-radius:24px;
    pointer-events:none;
    z-index:2;
}

.video-frame iframe{
    width:100%;
    height:480px;
    border:0;
    display:block;
}

@media(max-width:991px){

    .video-showcase{
        padding:35px;
    }

    .video-content h2{
        font-size:38px;
    }

    .video-frame iframe{
        height:350px;
    }
}

.press-feature-img{
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.4s;
}

.press-content{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.press-meta{
    color:#c8a96e;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    margin-bottom:15px;
}

.interview-card{
    height:100%;
    background:#fff;
    padding:35px;
    border-radius:22px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.35s;
}

.interview-card:hover{
    transform:translateY(-8px);
}

.interview-year{
    display:inline-block;
    background:#c8a96e;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.interview-card h3{
    color:#1a2e4a;
    margin-bottom:10px;
}

.interview-card h6{
    color:#c8a96e;
    margin-bottom:15px;
}

.read-link{
    color:#1a2e4a;
    text-decoration:none;
    font-weight:600;
}
.interview-archive .section-label {
    color: #c8a96e;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.interview-archive .section-heading {
    max-width: 850px;
    margin: auto;
    margin-bottom: 30px;
}

.interview-archive .section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #1a2e4a;
}

/* =========================
   Poetry Page CSS
========================= */
.poetry-index-section{
    background:#f8f6f1;
}

.poetry-card{
    display:block;
    height:100%;
    background:#fff;
    padding:45px 35px;
    border-radius:24px;
    text-align:center;
    text-decoration:none;
    border:1px solid rgba(200,169,110,.15);
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.04);
}

.poetry-card:hover{
    transform:translateY(-10px);
    text-decoration:none;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border-color:#c8a96e;
}

.poetry-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #c8a96e,
        #e2c78d
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.poetry-icon i{
    font-size:34px;
    color:#fff;
}

.poetry-card h3{
    color:#1a2e4a;
    margin-bottom:15px;
    font-size:30px;
}

.poetry-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.read-more{
    color:#c8a96e;
    font-weight:600;
    letter-spacing:.5px;
}

.poetry-index-section{
    padding:80px 0;
    background:
    linear-gradient(
        rgba(248,246,241,.96),
        rgba(248,246,241,.96)
    ),
    url("assets/img/paper-bg.jpg");

    background-size:cover;
    position:relative;
}

.poetry-card{
    position:relative;
    display:block;
    height:100%;
    padding:50px 40px;
    text-decoration:none;
    overflow:hidden;

    background:#fff;

    border-radius:28px;

    border:1px solid rgba(200,169,110,.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,.06);

    transition:.45s ease;
}

.poetry-card:hover{
    transform:translateY(-12px);
    text-decoration:none;

    box-shadow:
        0 30px 80px rgba(0,0,0,.12);
}

.poetry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #c8a96e,
        #e6c98d
    );
}

.card-number{
    position:absolute;
    top:20px;
    right:25px;

    font-size:70px;
    font-weight:700;
    line-height:1;

    color:rgba(200,169,110,.10);
}

.poetry-icon{
    width:85px;
    height:85px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    background:
    linear-gradient(
        135deg,
        #1a2e4a,
        #314d77
    );

    box-shadow:
        0 15px 35px rgba(26,46,74,.25);
}

.poetry-icon i{
    color:#fff;
    font-size:34px;
}

.poetry-card h3{
    font-size:34px;
    color:#1a2e4a;
    margin-bottom:18px;
}

.poetry-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
}

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#c8a96e;

    font-weight:600;
    letter-spacing:.5px;
}

.read-more i{
    transition:.3s;
}

.poetry-card:hover .read-more i{
    transform:translateX(6px);
}

.poetry-card:hover .poetry-icon{
    transform:rotate(8deg) scale(1.05);
}

.section-heading h2{
    color:#1a2e4a;
    margin-top:15px;
    margin-bottom:15px;
}

.section-heading p{
    max-width:650px;
    margin:auto;
}

/* =========================
   Biography Page CSS
========================= */
.biography-section{
    padding:80px 0 60px;
}

.biography-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:70px;
    align-items:start;
}

.author-portrait img{
    border-radius: 6px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.bio-label{
    color:#c8a96e;
    letter-spacing:3px;
    font-size:18px;
    text-transform:uppercase;
}

.bio-intro h2{
    font-size:60px;
    color:#1a2e4a;
    margin:15px 0;
}

.bio-intro p{
    font-size:18px;
    line-height:2;
}

.bio-chapter{
    padding:50px 0;
}

.bio-chapter.alternate{
    background:#faf8f3;
}

.chapter-heading{
    margin-bottom:35px;
}

.chapter-heading span{
    display:block;
    color:#c8a96e;
    font-size:70px;
    font-weight:700;
    line-height:1;
}

.chapter-heading h2{
    color:#1a2e4a;
    margin-top:10px;
}

/* .chapter-content{
    max-width:900px;
} */

.chapter-content p{
    font-size:18px;
    line-height:2.1;
    color:#444;
}

.agra-section{
    padding:120px 0;
}

.agra-card{
    background:#1a2e4a;
    color:#fff;
    padding:70px;
    border-radius:30px;
    text-align:center;
}

.agra-card h2{
    margin:20px 0;
    color:#fff;
}

.agra-card p{
    max-width:850px;
    margin:auto;
    line-height:2;
}

@media(max-width:991px){

    .biography-layout{
        grid-template-columns:1fr;
        text-align:center;
    }

    .bio-intro h2{
        font-size:42px;
    }

    .chapter-heading span{
        font-size:50px;
    }

    .agra-card{
        padding:40px;
    }
}