* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow-color: #EAA638;
    --white-color: #fff;
    --black-color: #000;
}

.white-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--yellow-color);
    background-color: var(--white-color);
    padding: 15px 46px;
    text-decoration: none;
}

.black-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    background-color: var(--black-color);
    padding: 17px 46px;
    text-decoration: none;
}

.yellow-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    background-color: var(--yellow-color);
    padding: 17px 46px;
    text-decoration: none;
}

.same-heading {
    color: var(--yellow-color);
    font-weight: 700;
    font-size: 56px;
}

.para {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}

body {
    font-family: "Quattrocento Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
}

/*header start*/
.header {
    position: absolute;
    z-index: 111;
    width: 100%;
    top: 40px;
}

.header .navbar-brand {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: -2px;
    color: var(--white-color);
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
}

.header .nav-item .nav-link {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    padding: 0px;
}

.header .navbar-nav {
    gap: 30px;
}

/*header end*/

/* banner start */
.banner-sec {
    background-image: url("../images/banner-image.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 260px 0px;
    position: relative;
    z-index: 11;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    color: var(--yellow-color);
    font-style: italic;
}

.banner-content p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    margin-top: 40px;
}

.banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

/* banner end */

/* about the author start */
.about-the-author {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.about-the-author::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/left-wing.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 483px;
    height: 693px;
    top: 0;
    left: 0;
}

.about-the-author::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/right-wing.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 483px;
    height: 693px;
    top: 0;
    right: 0;
}

.about-the-author-content p {
    margin-bottom: 20px;
}

.about-the-author-content h2 {
    margin-bottom: 20px;
}

.about-the-author-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

.about-the-author-image img {
    width: 100%;
}

/* about the author end */

/* about the book start */
.about-the-book {
    background-image: url("../images/about-book-bg.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
}

.about-the-book-image img {
    width: 100%;
}

.about-the-book-content p {
    color: var(--white-color);
    margin-bottom: 20px;
}

.about-the-book-content h2 {
    margin-bottom: 30px;
}

.about-the-book-btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* about the book end */

/* testimonial sec start */
.testimonial-sec {
    padding: 100px 0px;
    background-image: url("../images/testimonials.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 50px;
}

.testi-content {
    text-align: center;
    margin-bottom: 60px;
}

.testi-content h4 {
    color: var(--white-color);
    font-family: "Quattrocento Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.testi-slides {
    margin-top: 60px;
}

.testi-box {
    background-color: #FAF7F0;
    padding: 50px 40px;
    height: 400px;
}

.testi-box p {
    text-align: start;
}

.testi-box h4 {
    text-align: start;
    font-size: 14px;
    font-weight: 800;
    margin-top: 50px;
}

.testi-box .testi-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.testi-box .testi-stars i {
    color: #FFC107;
}

.testi-slides .owl-dots {
    margin-top: 60px !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--yellow-color);
}

/* testimonial sec end */

/* footer start */
.footer {
    background-color: #0C0C0C;
    padding: 100px 0px;
}

.footer-branding h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--yellow-color);
    margin-bottom: 40px;
}

.footer-branding h4 {
    color: var(--white-color);
    margin: 20px 0px;
    font-weight: 400;
}

.footer-branding p {
    color: var(--white-color);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 400;
}

.footer-links h3 {
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

.footer-links ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all ease 0.3s;
}

.footer-links ul li a:hover {
    color: var(--yellow-color);
}

.footer-socials-links h3 {
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

.footer-socials-links ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-socials-links ul li a {
    border: 1px solid var(--yellow-color);
    width: 45px;
    height: 45px;
    display: grid;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    color: var(--white-color);
}

.footer-branding a img {
    width: 120px;
}

.footer-branding a {
    color: var(--yellow-color);
    text-decoration: none;
    font-size: 36px;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
}

/* footer end */

/* copyright start */
.copyright-sec {
    background-color: #0C0C0C;
    border-top: 1px solid #272727;
}

.copyright-content p {
    margin-bottom: 0;
    color: var(--white-color);
}

.copyright-content {
    padding: 30px 0px;
    text-align: center;
}

/* copyright end */

/*buy-book start*/
.buy-book-sec {
    background-image: url("../images/buy-book-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.buy-book-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/right-wing.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 313px;
    height: 442px;
    right: 0;
    top: 0;
}

.buy-book-sec::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/left-wing.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 313px;
    height: 442px;
    left: 0;
    top: 0;
}

.buy-book-content {
    text-align: center;
}

.buy-book-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--yellow-color);
    text-transform: uppercase;
    font-family: "Quattrocento Sans", sans-serif;
    margin-bottom: 30px;
}

.buy-book-content p {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Cormorant Garamond';
}

.buy-book-btns {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.buy-book-btns a {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
}

.buy-book-btns a i {
    color: var(--yellow-color);
    font-size: 20px;
}

/*buy-book end*/

/* help form section start */
.help-form-left h2 {
    font-size: 40px;
    font-weight: 700;
    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(--yellow-color);
    color: #fff;
    font-size: 18px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
}

.help-form-sec {
    padding: 80px 0px;
    position: relative;
    z-index: 1;
}

.help-form-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/left-wing.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 483px;
    height: 693px;
    top: 0;
    left: 0;
}

.help-form-sec::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/right-wing.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 483px;
    height: 693px;
    top: 0;
    right: 0;
}

.help-form-right {
    text-align: center;
}

/* help form section end */

/* loader start */
.stage {
    position: fixed; /* Poore screen ko cover karne ke liye fixed kar diya */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999; /* Har element ke upar dikhne ke liye */
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(180deg, rgba(3, 5, 12, 0.55) 0%, rgba(4, 6, 14, 0.35) 35%, rgba(2, 3, 8, 0.88) 100%),
        url('../images/about-book-bg.png');
    background-size: cover;
    background-position: center 35%;
    animation: bgDrift 26s ease-in-out infinite alternate;
    transition: opacity 0.8s ease, visibility 0.8s ease; /* Fade-out effect */
}

/* Loader Hide Class */
.stage.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes bgDrift {
    0% {
        background-position: center 32%;
    }
    100% {
        background-position: center 40%;
    }
}

/* soft vignette */
.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 42%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(2, 3, 9, 0.55) 78%, rgba(1, 2, 6, 0.92) 100%);
    pointer-events: none;
}

/* drifting embers */
.embers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ember-spark {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ember-hot, #ffaa5a), var(--ember, #ff8c3c) 60%, transparent 70%);
    box-shadow: 0 0 6px 1px rgba(255, 140, 60, 0.8);
    animation-name: floatUp;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translate(0, 0) scale(0.6);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--driftX, 20px), -110vh) scale(1);
        opacity: 0;
    }
}

/* centerpiece */
.core {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.wing-wrap {
    position: relative;
    width: min(78vw, 620px);
    aspect-ratio: 1536 / 1024;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.moon-glow {
    position: absolute;
    width: 38%;
    height: 38%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 190, 130, 0.9) 0%, rgba(255, 120, 50, 0.55) 32%, rgba(255, 90, 40, 0.15) 60%, rgba(255, 90, 40, 0) 72%);
    filter: blur(2px);
    animation: pulseCore 2.6s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseCore {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.wings-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    transform-origin: 50% 15%;
}

.ember-core {
    position: absolute;
    width: 14%;
    height: 14%;
    border-radius: 50%;
    background: radial-gradient(circle, #fff2d8 0%, var(--ember-hot, #ffaa5a) 35%, var(--ember, #ff8c3c) 60%, transparent 75%);
    box-shadow: 0 0 40px 10px rgba(255, 120, 50, 0.65);
    z-index: 3;
    animation: pulseCore 1.7s ease-in-out infinite;
}

.bar-track {
    position: relative;
    width: min(70vw, 380px);
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--ember-deep, #d9531e), var(--ember, #ff8c3c), var(--ember-hot, #ffaa5a));
    box-shadow: 0 0 12px 2px rgba(255, 130, 60, 0.7);
    transition: width 0.1s linear;
}

.bar-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ember-hot, #ffaa5a);
    box-shadow: 0 0 10px 4px rgba(255, 170, 90, 0.9);
}

.percent {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: rgba(215, 223, 242, 0.5);
}

.percent span {
    color: var(--ember-hot, #ffaa5a);
    font-weight: bold;
}

@media (max-width: 520px) {
    .wing-wrap {
        width: 88vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wings-img,
    .moon-glow,
    .ember-core,
    .ember-spark,
    .stage {
        animation: none !important;
    }
}
/* loader end */