/* =========================
   HOME HERO SECTION
========================= */

.hero-section {
    width: 100%;
    min-height: 670px;
    padding-top: 80px;
    background-image: url("../web-images/banner_processed_by_imagy.webp");
    background-position: cover;
    background-repeat: no-repeat;

    position: relative;

    display: flex;
    align-items: center;
    padding-bottom: 100px;

    overflow: hidden;
}


/* optional background pattern */

.hero-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(60deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px),
        linear-gradient(-60deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px);

    background-size: 100px 100px;

    pointer-events: none;
}


/* =========================
   CONTAINER
========================= */

.hero-container {
    width: var(--iner-container);
    max-width: var(--mein-container);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}


/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    width: 50%;
}


/* Heading */

.hero-heading {
    color: var(--text-wight);

    margin-bottom: 20px;

    max-width: 650px;
}


/* Description */

.hero-description {
    color: var(--text-wight);

    max-width: 610px;

    margin-bottom: 30px;

    line-height: 1.6em;
}


/* =========================
   AWARDS
========================= */

.hero-awards {
    display: flex;
    /* align-items: center; */
    margin-bottom: 45px;
}


.hero-awards img {
    width: 505px;


    /* object-fit: contain; */

    display: block;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 20px;
}


.hero-btn {
    min-width: 205px;
    height: 55px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background-color: var(--orange-col);

    color: var(--text-wight);

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    border-radius: 100px;

    transition: 0.3s ease;
}


.hero-btn span {
    font-size: 22px;

    transition: transform 0.3s ease;
}


.hero-btn:hover {
    background-color: var(--text-wight);

    color: var(--orange-col);
}


.hero-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   RIGHT IMAGE
========================= */

.hero-image {
    width: 48%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: relative;
}


.hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: -36vh;
    display: block;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .hero-section {
        min-height: auto;

        padding: 70px 0;
    }


    .hero-container {
        gap: 30px;
    }


    .hero-content {
        width: 52%;
    }


    .hero-image {
        width: 45%;
    }


    .hero-heading {
        font-size: 50px;
    }


    .hero-awards {
        gap: 12px;
    }


    .hero-awards img {
        width: 400px;
    }


    .hero-btn {
        min-width: 170px;

        padding: 0 20px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .hero-section {
        padding: 60px 0;
    }


    .hero-container {
        flex-direction: column;

        gap: 50px;
    }


    .hero-content {
        width: 100%;

        text-align: center;
    }


    .hero-heading {
        font-size: 40px;

        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-awards {
        justify-content: center;

        flex-wrap: wrap;

        margin-bottom: 35px;
    }


    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }


    .hero-image {
        width: 100%;

        justify-content: center;
    }


    .hero-image img {
        max-width: 350px;
        margin: 0px;
        height: auto;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-section {
        padding: 45px 0;
    }


    .hero-heading {
        font-size: 34px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-awards {
        gap: 10px;
    }


    .hero-awards img {
        width: 300px;
    }


    .hero-buttons {
        flex-direction: row;
    }


    .hero-btn {
        width: 100%;
        max-width: 220px;
        /* padding: 0 10px ; */
        /* height: 40px; */
    }

}


/* =========================
   BOOK WRITING SERVICES
========================= */

.writing-services-section {
    width: 100%;
    /* min-height: 620px; */

    padding: 0px;

    position: relative;

    display: flex;
    align-items: center;

    /* overflow: hidden; */
}


/* Background pattern */

.writing-services-section::before {
    content: "";

    position: absolute;
    inset: 0;

    transition: background var(--overlay-transition, .3s), border-radius var(--border-transition, .3s), opacity var(--overlay-transition, .3s);

    /* background-image:
        linear-gradient(
            60deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            -60deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ); */

    /* background-size: 100px 100px;

    pointer-events: none; */
}


/* =========================
   CONTAINER
========================= */

.writing-services-container {
    width: var(--iner-container);
    max-width: var(--mein-container);

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================
   WHITE BOX
========================= */

.writing-services-box {
    width: 100%;

    background-color: var(--text-wight);

    /* display: flex; */
    border-radius: 40px 40px 40px 40px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
    margin-top: -50px;
    margin-bottom: -50px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}


/* =========================
   HEADING
========================= */

.writing-services-heading {
    color: var(--gray-col);

    margin-bottom: 22px;

    line-height: 1.2em;
}


/* =========================
   SERVICES LIST
========================= */

.writing-services-list {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 21px;
}


.writing-services-list li {
    color: var(--text-black);

    display: flex;
    align-items: flex-start;

    gap: 17px;

    line-height: 1.5em;
}


/* Orange check icon */

.writing-services-list li::before {
    content: "✓";

    width: 21px;
    min-width: 21px;
    height: 21px;

    margin-top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange-col);

    border: 2px solid var(--orange-col);
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    transform: rotate(-8deg);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .writing-services-section {
        min-height: auto;

        padding: 50px 0;
    }


    .writing-services-box {
        padding: 38px 28px 42px;

        border-radius: 34px;
    }


    .writing-services-list {
        gap: 19px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .writing-services-section {
        padding: 35px 0;
    }


    .writing-services-container {
        width: 90%;
    }


    .writing-services-box {
        padding: 30px 22px 34px;

        border-radius: 28px;
    }


    .writing-services-heading {
        margin-bottom: 25px;

        line-height: 1.25em;
    }


    .writing-services-list {
        gap: 18px;
    }


    .writing-services-list li {
        gap: 13px;

        line-height: 1.6em;
    }


    .writing-services-list li::before {
        width: 20px;
        min-width: 20px;
        height: 20px;

        font-size: 12px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .writing-services-section {
        padding: 25px 0;
    }


    .writing-services-container {
        width: 92%;
    }


    .writing-services-box {
        padding: 27px 18px 30px;

        border-radius: 23px;
    }


    .writing-services-heading {
        margin-bottom: 22px;
    }


    .writing-services-list {
        gap: 16px;
    }


    .writing-services-list li {
        gap: 11px;
    }

}




/* =========================
   BOOK GENRES SECTION
========================= */

.genres-section {
    width: 100%;
    /* min-height: 670px; */

    padding: 100px 0px 60px 0px;

    background-color: #081c18;

    background-image:

        url("../web-images/discbg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;

    overflow: hidden;
}


/* Additional dark overlay */

.genres-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.3));

    pointer-events: none;
}


/* =========================
   CONTAINER
========================= */

.genres-container {
    width: var(--iner-container);
    /* max-width: 1080px; */

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================
   HEADER
========================= */

.genres-header {
    width: 100%;

    text-align: center;

    margin-bottom: 30px;
}


.genres-main-heading {
    color: var(--text-wight);

    line-height: 0.95em;

    margin-bottom: 18px;
}


.genres-description {
    max-width: 680px;

    margin: 0 auto;

    color: var(--text-wight);

    line-height: 1.45em;
}


/* =========================
   GENRES GRID
========================= */

.genres-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 70px;
    row-gap: 52px;

    margin-top: 28px;
}


/* =========================
   GENRE CARD
========================= */

.genre-card {
    width: 100%;
}


.genre-title {
    color: #ffc875;

    font-family: "DM Sans", sans-serif;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.2em;

    text-transform: uppercase;

    margin-bottom: 14px;
}


.genre-text {
    color: var(--text-wight);

    line-height: 1.45em;
}


/* =========================
   BUTTON
========================= */

.genres-button-wrapper {
    width: 100%;

    margin-top: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.genres-btn {
    min-width: 185px;
    height: 49px;

    padding: 0 26px;

    font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .genres-section {
        min-height: auto;

        padding: 60px 0 45px;
    }


    /* .genres-container {
        max-width: 850px;
    } */


    .genres-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 50px;
        row-gap: 42px;
    }


    .genres-main-heading {
        line-height: 1em;
    }


    .genre-title {
        font-size: 24px;
    }


    .genres-button-wrapper {
        margin-top: 50px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .genres-section {
        padding: 50px 0 40px;

        background-position: 65% center;
    }


    .genres-container {
        width: 90%;
    }


    .genres-header {
        margin-bottom: 38px;
    }


    .genres-main-heading {
        line-height: 1.05em;

        margin-bottom: 18px;
    }


    .genres-description {
        max-width: 520px;
    }


    .genres-grid {
        grid-template-columns: 1fr;

        gap: 34px;

        margin-top: 0;
    }


    .genre-card {
        text-align: center;
    }


    .genre-title {
        font-size: 23px;

        margin-bottom: 10px;
    }


    .genre-text {
        max-width: 480px;

        margin: 0 auto;
    }


    .genres-button-wrapper {
        margin-top: 42px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .genres-section {
        padding: 42px 0 35px;
    }


    /* .genres-container {
        width: 90%;
    } */


    .genres-main-heading br {
        display: none;
    }


    .genres-header {
        margin-bottom: 32px;
    }


    .genres-grid {
        gap: 30px;
    }


    .genre-title {
        font-size: 21px;
    }


    .genre-text {
        font-size: 14px;

        line-height: 1.55em;
    }


    .genres-button-wrapper {
        margin-top: 38px;
    }


    .genres-btn {
        width: 190px;
    }

}


/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section {
    width: 100%;

    padding: 52px 0 34px;

    background-color: #f8f5ef;

    border-top: 7px solid #293b2d;

    position: relative;

    overflow: hidden;
}


/* =========================
   CONTAINER
========================= */

.portfolio-container {
    width: var(--iner-container);
    /* max-width: 1060px; */

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.portfolio-header {
    width: 100%;

    margin-bottom: 34px;

    text-align: center;
}


.portfolio-heading {
    color: var(--text-black);

    margin-bottom: 12px;

    line-height: 1.2em;
}


.portfolio-description {
    max-width: 680px;

    margin: 0 auto;

    color: var(--text-black);

    line-height: 1.45em;
}


/* =========================
   PORTFOLIO GRID
========================= */

.portfolio-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    column-gap: 18px;
    row-gap: 27px;
}


/* =========================
   BOOK ITEM
========================= */

.portfolio-book {
    width: 100%;

    height: 240px;

    overflow: hidden;

    background-color: #dddddd;
}


.portfolio-book img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1100px) {

    /* .portfolio-container {
        max-width: 900px;
    } */


    .portfolio-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 22px 18px;
    }


    .portfolio-book {
        height: 220px;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .portfolio-section {
        padding: 50px 0 40px;
    }


    /* .portfolio-container {
        width: 90%;
    } */


    .portfolio-header {
        margin-bottom: 32px;
    }


    .portfolio-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));

        gap: 22px 18px;
    }


    .portfolio-book {
        height: 250px;
    }

}


/* =========================
   SMALL TABLET
========================= */

@media (max-width: 700px) {

    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 20px 15px;
    }


    .portfolio-book {
        height: 260px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 520px) {

    .portfolio-section {
        padding: 42px 0 35px;

        border-top-width: 5px;
    }


    /* .portfolio-container {
        width: 92%;
    } */


    .portfolio-header {
        margin-bottom: 28px;
    }


    .portfolio-heading {
        line-height: 1.15em;

        margin-bottom: 14px;
    }


    .portfolio-description {
        line-height: 1.55em;
    }


    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px 13px;
    }


    .portfolio-book {
        height: 245px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .portfolio-grid {
        gap: 15px 10px;
    }


    .portfolio-book {
        height: 215px;
    }

}



/* =========================
   DREAM AUTHOR SECTION
========================= */

.dream-author-section {
    width: 100%;
    padding: 45px 0 90px;
    background-color: #f7f4ef;
    overflow: hidden;
}


/* =========================
   CONTAINER
========================= */

.dream-author-container {
    width: var(--iner-container);
    /* max-width: 1180px; */
    margin: 0 auto;
}


/* =========================
   TOP CONTENT
========================= */

.dream-author-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 35px;
}


.dream-author-heading {
    color: var(--orange-col);
    font-family: "DM Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 18px;
}


.dream-author-description {
    color: var(--text-black);
    max-width: 760px;
    margin: 0 auto 18px;
    line-height: 1.5em;
}


.second-para {
    margin-bottom: 0;
}


/* =========================
   IMAGE BOX
========================= */

.dream-author-image-box {
    width: 100%;
    /* max-width: 1020px; */
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    /* padding: 50px; */
    overflow: visible;
}


.dream-author-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
}


/* =========================
   OVERLAY TEXT
========================= */

.dream-author-overlay-text {
    position: absolute;
    top: 26px;
    left: 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.dream-author-overlay-text span {
    display: inline-block;
    width: fit-content;
    background-color: var(--darkGreen-col);
    color: #b6ffa6;
    padding: 4px 10px;

}


/* =========================
   STATS
========================= */

.dream-author-stats {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 0;
}


.dream-stat-card {
    background-color: var(--text-wight);
    border-radius: 14px;
    min-height: 112px;
    padding: 18px 14px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.dream-stat-number {
    color: #b17a46;
    margin-bottom: 8px;
}


.dream-stat-text {
    color: var(--text-black);

}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1024px) {

    .dream-author-section {
        padding: 50px 0 43vh;
    }

    .dream-author-heading {
        font-size: 32px;
    }

    .dream-author-main-img {
        height: 430px;
    }



    .dream-author-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        bottom: -38vh;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 767px) {

    .dream-author-section {
        padding: 45px 0 30vh;
    }

    /* .dream-author-container {
        width: 90%;
    } */

    .dream-author-header {
        margin-bottom: 28px;
    }

    .dream-author-heading {
        font-size: 28px;
        line-height: 1.15em;
    }

    .dream-author-heading br {
        display: none;
    }

    .dream-author-description {
        font-size: 14px;
        line-height: 1.6em;
    }

    .dream-author-main-img {
        height: 370px;
    }

    .dream-author-overlay-text {
        top: 20px;
        left: 20px;
        gap: 7px;
    }

    .dream-author-overlay-text span {
        font-size: 16px;
        padding: 4px 9px;
    }

    .dream-author-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        bottom: -20vh;
    }

    .dream-stat-card {
        min-height: 102px;
        padding: 16px 12px;
    }



    .dream-stat-text {
        font-size: 13px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .dream-author-section {
        padding: 40px 0 65vh;
        /* padding: 40px 0 77vh; */
    }

    /* .dream-author-container {
        width: 92%;
    } */

    .dream-author-heading {
        font-size: 24px;
    }

    .dream-author-main-img {
        height: 320px;
        border-radius: 15px;
    }

    .dream-author-image-box {
        border-radius: 15px;
    }

    .dream-author-overlay-text {
        top: 16px;
        left: 16px;
    }

    .dream-author-overlay-text span {
        font-size: 14px;
        padding: 4px 8px;
    }

    .dream-author-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        bottom: -50vh;
    }

    .dream-stat-card {
        min-height: 95px;
    }
}


/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-choose-section {
    width: 100%;
    padding: 55px 0;
    background-color: #f7f4ef;
    overflow: hidden;
}


/* =========================
   CONTAINER
========================= */

.why-choose-container {
    width: var(--iner-container);
    margin: 0 auto;

    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 22px;
}


/* =========================
   LEFT VISUAL
========================= */

.why-choose-visual {
    width: 48%;
}


.why-choose-frame {
    width: 100%;
    min-height: 680px;
    /* background-color: #11140f; */
    /* border-radius: 0 0 18px 18px; */
    position: relative;
    overflow: hidden;
    /* padding: 34px 28px; */
}


/* .why-choose-frame::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 28px;
    right: 28px;
    bottom: 32px;
    border: 2px solid rgba(182, 124, 74, 0.75);
    pointer-events: none;
} */


/* .why-choose-circle {
    width: 280px;
    height: 280px;
    background-color: #f03b0f;
    border-radius: 50%;
    position: absolute;
    left: 46%;
    bottom: 45px;
    transform: translateX(-50%);
    z-index: 1;
} */


.why-choose-book {
    position: relative;
    z-index: 2;
    width: 100%;
    /* max-width: 360px; */
    display: block;
    border-radius: 20px;
    /* margin: 58px auto 0; */
}


/* =========================
   RIGHT CONTENT
========================= */

.why-choose-content {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 55px;
    padding: 18px 0 8px;
}


.why-choose-item {
    width: 100%;
}


.why-choose-top {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    margin-bottom: 20px;
}


.why-number {
    color: #2d2f38;
    font-family: "DM Sans", sans-serif;
    font-size: 106px;
    font-weight: 700;
    line-height: 0.9em;
    letter-spacing: -2px;
    flex-shrink: 0;
}


.why-title {
    color: var(--orange-col);
    font-family: "DM Sans", sans-serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0;
}


.why-text {
    color: var(--text-black);
    font-size: 17px;
    line-height: 1.55em;
    max-width: 95%;
}

.sec-2 {
    padding: 30px 0px 60px;
}

/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1024px) {

    .why-choose-section {
        padding: 0px;
    }

    .sec-2 {
        padding: 30px 0px 60px;
    }

    .why-choose-container {
        gap: 20px;
    }

    .why-choose-frame {
        min-height: 610px;
        /* padding: 28px 24px; */
    }

    /* .why-choose-frame::before {
        top: 28px;
        left: 24px;
        right: 24px;
        bottom: 28px;
    } */

    /* .why-choose-circle {
        width: 230px;
        height: 230px;
        bottom: 42px;
    } */

    /* .why-choose-book {
        width: 66%;
  
    } */

    .why-choose-content {
        gap: 42px;
    }

    .why-number {
        font-size: 88px;
    }

    .why-title {
        font-size: 29px;
    }

    .why-text {
        font-size: 16px;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 767px) {

    /* .why-choose-section {
        padding: 45px 0;
    } */

    .why-choose-container {
        flex-direction: column;
        width: 90%;
    }

    .why-choose-visual,
    .why-choose-content {
        width: 100%;
    }

    .why-choose-frame {
        min-height: 400px;
    }

    /* .why-choose-book {
        width: 58%;
        margin-top: 65px;
    } */

    /* .why-choose-circle {
        width: 220px;
        height: 220px;
        bottom: 38px;
    } */

    .why-choose-content {
        padding: 10px 0 0;
        gap: 35px;
    }

    .why-choose-top {
        gap: 18px;
        margin-bottom: 14px;
    }

    .why-number {
        font-size: 72px;
    }

    .why-title {
        font-size: 26px;
    }

    .why-text {
        font-size: 15px;
        max-width: 100%;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .why-choose-section {
        padding: 0px;
    }

    .sec-2 {
        padding: 0px 0px 40px;
    }

    .why-choose-container {
        width: 90%;
    }

    .why-choose-frame {
        min-height: 300px;


    }



    .why-choose-book {
        width: 100%;
        /* max-width: 250px; */
        /* margin-top: 62px; */
    }

    /* .why-choose-circle {
        width: 180px;
        height: 180px;
        bottom: 32px;
    } */

    .why-choose-content {
        gap: 28px;
    }

    .why-choose-top {
        gap: 14px;
        margin-bottom: 12px;
    }

    .why-number {
        font-size: 58px;
        letter-spacing: -1px;
    }

    .why-title {
        font-size: 22px;
        line-height: 1.3em;
    }

    .why-text {
        font-size: 14px;
        line-height: 1.6em;
    }

}




/* =========================================
   BRAND LOGO SLIDER SECTION
========================================= */

.brand-logo-slider-section {

    width: 100%;

    background-color: white;

    overflow: hidden;

}


/* =========================================
   MAIN SLIDER WRAPPER
========================================= */

.brand-logo-slider {

    width: 100%;

    max-width: var(--mein-container);

    margin: 0 auto;

    height: 122px;

    overflow: hidden;

    position: relative;

    background-color: white;

    border-top: 1px solid #bfbfbf;

    border-left: 1px solid #bfbfbf;

    /* border-bottom: 2px solid var(--orange-col); */

}


/* =========================================
   SLIDER TRACK
========================================= */

.brand-logo-track {

    width: max-content;

    height: 100%;

    display: flex;

    align-items: center;

    will-change: transform;

    animation:
        brandLogoSlide var(--brand-slide-duration, 24s) linear infinite;

}


@keyframes brandLogoSlide {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--brand-slide-distance, 1344px)));
    }

}


/* =========================================
   SINGLE LOGO BOX
========================================= */

.brand-logo-item {

    width: 168px;

    min-width: 168px;

    height: 122px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 10px 18px;

    background-color: #f3f3f3;

    border-right: 1px solid #bfbfbf;

    flex-shrink: 0;

}


/* =========================================
   LOGO IMAGE
========================================= */

.brand-logo-img {

    max-width: 100%;

    max-height: 68px;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

    /* Same-to-same grey look */
    filter: grayscale(100%) brightness(0.58) opacity(0.9);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


.brand-logo-item:hover .brand-logo-img {

    transform: scale(1.04);

    opacity: 1;

}


/* =========================================
   PAUSE ON HOVER
========================================= */

.brand-logo-slider:hover .brand-logo-track {

    animation-play-state: paused;

}


/* =========================================
   TABLET
   SAME BREAKPOINT AS globle2.css
========================================= */

@media (max-width: 980px) {

    .brand-logo-slider {

        height: 108px;

    }

    .brand-logo-item {

        width: 150px;

        min-width: 150px;

        height: 108px;

        padding: 10px 14px;

    }

    .brand-logo-img {

        max-height: 58px;

    }

}


/* =========================================
   MOBILE
   SAME BREAKPOINT AS globle2.css
========================================= */

@media (max-width: 767px) {

    .brand-logo-slider {

        height: 92px;

    }

    .brand-logo-item {

        width: 128px;

        min-width: 128px;

        height: 92px;

        padding: 8px 12px;

    }

    .brand-logo-img {

        max-height: 48px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .brand-logo-slider {

        height: 82px;

    }

    .brand-logo-item {

        width: 112px;

        min-width: 112px;

        height: 82px;

        padding: 8px 10px;

    }

    .brand-logo-img {

        max-height: 40px;

    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .brand-logo-track {
        animation: none;
    }

}

/* =========================
   BEST SELLERS CTA SECTION start 
========================= */

.best-sellers-section {
    width: 100%;
    min-height: 360px;

    padding: 30px 0;

    background-color: #f13610;

    background-image: url("../web-images/ctaorbg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}


/* Optional dark/orange texture */

.best-sellers-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 78% 50%,
            rgba(255, 200, 86, 0.18),
            transparent 38%);

    pointer-events: none;
}


/* =========================
   CONTAINER
========================= */

.best-sellers-container {
    width: var(--iner-container);
    max-width: var(--mein-container);

    min-height: 300px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}


/* =========================
   LEFT CONTENT
========================= */

.best-sellers-content {
    width: 49%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.best-sellers-heading {
    max-width: 620px;
    color: var(--text-wight);
    font-weight: 400;
    line-height: 0.98em;

    margin-bottom: 48px;
}


.best-sellers-heading strong {
    font-weight: 700;
}


/* =========================
   BUTTON
========================= */

.best-sellers-btn {
    min-width: 205px;
    height: 54px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background-color: #23252d;
    color: var(--text-wight);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #23252d;
    border-radius: 100px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.best-sellers-btn span {
    font-size: 21px;
    line-height: 1;

    transition: transform 0.3s ease;
}


.best-sellers-btn:hover {
    background-color: var(--text-wight);
    color: var(--orange-col);
    transform: translateY(-2px);
}


.best-sellers-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   RIGHT IMAGE
========================= */

.best-sellers-image {
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.best-sellers-image img {
    width: 100%;
    max-width: 590px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================
   MEDIUM DESKTOP
========================= */

@media (max-width: 1200px) {
    .best-sellers-image img {
        max-width: 520px;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .best-sellers-section {
        min-height: auto;
        padding: 45px 0;
    }


    .best-sellers-container {
        min-height: auto;
        gap: 30px;
    }


    .best-sellers-content {
        width: 48%;
    }


    .best-sellers-image {
        width: 50%;
    }


    .best-sellers-heading {
        margin-bottom: 35px;
    }


    .best-sellers-btn {
        min-width: 190px;
        height: 50px;
        padding: 0 25px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .best-sellers-section {
        padding: 50px 0 35px;
        background-position: center;
    }


    .best-sellers-container {
        width: 90%;
        flex-direction: column;
        gap: 40px;
    }


    .best-sellers-content,
    .best-sellers-image {
        width: 100%;
    }


    .best-sellers-content {
        align-items: center;
        text-align: center;
    }


    .best-sellers-heading {
        max-width: 550px;
        /* font-size: 29px; */
        line-height: 1.08em;
        margin-bottom: 28px;
    }

    .best-sellers-image {
        justify-content: center;
    }

    .best-sellers-image img {
        max-width: 520px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .best-sellers-section {
        padding: 40px 0 30px;
    }

    .best-sellers-container {
        width: 92%;

        gap: 32px;
    }

    .best-sellers-heading {
        font-size: 25px;
        line-height: 1.12em;

        margin-bottom: 25px;
    }

    .best-sellers-heading br {
        display: none;
    }

    .best-sellers-btn {
        min-width: 185px;
        height: 49px;

        padding: 0 23px;

        font-size: 14px;
    }

    .best-sellers-image img {
        max-width: 360px;
    }

}

/* =========================
   BEST SELLERS CTA SECTION End
========================= */


/* =========================
   PUBLISHING SERVICES CARDS
========================= */

.publishing-cards-section {
    width: 100%;
    min-height: 665px;

    padding: 98px 0 80px;

    background-color: #f7f4ef;

    background-image:
        linear-gradient(rgba(22, 24, 18, 0.22),
            rgba(22, 24, 18, 0.22)),
        url("../web-images/editedbg.jpg.webp");

    background-size: 100% 495px;
    background-position: top center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================
   CONTAINER
========================= */

.publishing-cards-container {
    width: var(--iner-container);
    max-width: 1180px;

    margin: 0 auto;

    display: flex;
    align-items: stretch;
    justify-content: space-between;

    gap: 20px;
}


/* =========================
   COMMON CARD
========================= */

.publishing-service-card {
    width: calc(50% - 10px);
    min-height: 465px;

    position: relative;

    display: flex;
    align-items: flex-start;

    padding: 64px 48px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-top: 16px solid var(--orange-col);
    border-radius: 20px;

    overflow: hidden;
}


/* DARK OVERLAY */

.publishing-service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(6, 7, 7, 0.93) 0%,
            rgba(8, 9, 9, 0.76) 52%,
            rgba(8, 9, 9, 0.35) 100%);

    z-index: 1;
}


/* =========================
   CARD BACKGROUNDS
========================= */

.publishing-card-one {
    background-image:
        url("../web-images/edit-1.jpg.webp");
}


.publishing-card-two {
    background-image:
        url("../web-images/edit-2.jpg.webp");

    background-position: center;
}


/* Card two slightly different overlay */

.publishing-card-two::before {
    background:
        linear-gradient(90deg,
            rgba(5, 6, 6, 0.92) 0%,
            rgba(7, 8, 8, 0.68) 48%,
            rgba(7, 8, 8, 0.28) 100%);
}


/* =========================
   CARD CONTENT
========================= */

.publishing-card-content {
    width: 100%;
    max-width: 445px;

    position: relative;
    z-index: 2;
}


.publishing-card-heading {
    color: var(--text-wight);

    font-family: "DM Sans", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.04em;

    margin-bottom: 23px;
}


.publishing-card-text {
    max-width: 390px;

    color: var(--text-wight);

    font-size: 16px;
    line-height: 1.5em;
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1100px) {

    .publishing-cards-section {
        min-height: auto;
        padding: 75px 0 65px;

        background-size: 100% 450px;
    }


    .publishing-cards-container {
        gap: 18px;
    }


    .publishing-service-card {
        width: calc(50% - 9px);
        min-height: 430px;

        padding: 55px 35px;

        border-top-width: 14px;
    }


    .publishing-card-heading {
        font-size: 33px;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .publishing-cards-section {
        padding: 65px 0 60px;

        background-size: 100% 130vh;
    }


    .publishing-cards-container {
        width: 90%;

        flex-direction: column;

        gap: 25px;
    }


    .publishing-service-card {
        width: 100%;
        min-height: 430px;

        padding: 55px 45px;
    }


    .publishing-card-content {
        max-width: 470px;
    }


    .publishing-card-heading {
        font-size: 35px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .publishing-cards-section {
        padding: 55px 0 50px;

        background-size: auto 120vh;
    }


    .publishing-service-card {
        min-height: 400px;

        padding: 48px 32px;

        border-top-width: 12px;
        border-radius: 17px;
    }


    .publishing-card-heading {
        font-size: 31px;
        line-height: 1.08em;
    }


    .publishing-card-text {
        font-size: 15px;
        line-height: 1.6em;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .publishing-cards-section {
        padding: 45px 0;
        background-size: auto 80vh;
    }


    .publishing-cards-container {
        width: 92%;

        gap: 20px;
    }


    .publishing-service-card {
        min-height: 230px;

        padding: 42px 23px;

        border-top-width: 10px;
        border-radius: 15px;
    }


    .publishing-card-heading {
        font-size: 27px;
        line-height: 1.1em;

        margin-bottom: 18px;
    }


    .publishing-card-heading br {
        display: none;
    }


    .publishing-card-text {
        font-size: 14px;
    }

}

/* =========================
   PUBLISHING SERVICES CARDS End
========================= */


/* =========================
   GHOSTWRITER CONSULTATION
========================= */

.ghostwriter-consult-section {
    width: 100%;

    padding: 30px 0 0;

    background-color: #f7f4ef;

    display: flex;
    justify-content: center;

    overflow: hidden;
}


/* =========================
   MAIN CONTAINER
========================= */

.ghostwriter-consult-container {
    width: var(--iner-container);
    max-width: 1240px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 42px;
}


/* =========================
   TOP HEADING
========================= */

.ghostwriter-consult-heading {
    width: 100%;

    color: var(--text-black);

    font-family: "DM Sans", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1em;

    text-align: center;
}


/* =========================
   IMAGE + CONTENT ROW
========================= */

.ghostwriter-consult-row {
    width: 100%;
    min-height: 410px;

    display: flex;
    align-items: stretch;
    justify-content: space-between;
}


/* =========================
   LEFT IMAGE
========================= */

.ghostwriter-consult-image {
    flex: 0 0 39%;
    min-width: 0;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}


.ghostwriter-consult-image img {
    width: 100%;
    height: 100%;
    max-height: 410px;

    display: block;

    object-fit: contain;
    object-position: left bottom;
}


/* =========================
   RIGHT CONTENT
========================= */

.ghostwriter-consult-content {
    flex: 1;
    min-width: 0;
    min-height: 410px;

    padding: 36px 25px 62px 20px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 50px;

    /* border-bottom: 7px solid var(--orange-col); */

}

.divder {
    background-color: var(--orange-col);
    width: 100%;
    height: 6px;
    margin-left: -25px;
}

/* =========================
   CONSULTATION TEXT
========================= */

.ghostwriter-consult-text {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


.consult-orange-text,
.consult-black-text {
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4em;
    font-style: italic;
}


.consult-orange-text {
    color: var(--orange-col);
}


.consult-black-text {
    color: var(--text-black);
}


/* =========================
   BUTTON
========================= */

.ghostwriter-button-wrapper {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.ghostwriter-call-btn {
    min-width: 198px;
    height: 54px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background-color: var(--gray-col);
    color: var(--text-wight);

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;

    text-decoration: none;
    text-transform: uppercase;

    border: 2px solid var(--gray-col);
    border-radius: var(--border-red);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.ghostwriter-call-btn span {
    font-size: 21px;
    line-height: 1;

    transition: transform 0.3s ease;
}


.ghostwriter-call-btn:hover {
    background-color: var(--orange-col);
    border-color: var(--orange-col);
    color: var(--text-wight);

    transform: translateY(-2px);
}


.ghostwriter-call-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   MEDIUM DESKTOP
========================= */

@media (max-width: 1200px) {

    .ghostwriter-consult-container {
        gap: 36px;
    }


    .ghostwriter-consult-heading {
        font-size: 34px;
    }


    .ghostwriter-consult-row {
        min-height: 380px;
    }


    .ghostwriter-consult-image img {
        max-height: 380px;
    }


    .ghostwriter-consult-content {
        min-height: 380px;
        gap: 40px;
        padding: 30px 20px 55px;
    }


    .consult-orange-text,
    .consult-black-text {
        font-size: 24px;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .ghostwriter-consult-section {
        padding: 45px 0 0;
    }


    .ghostwriter-consult-container {
        width: 90%;

        gap: 32px;
    }


    .ghostwriter-consult-heading {
        font-size: 30px;
        line-height: 1.1em;
    }


    .ghostwriter-consult-row {
        min-height: auto;

        flex-direction: column;
        align-items: stretch;

        gap: 25px;
    }


    .ghostwriter-consult-image {
        flex: none;
        width: 100%;
        height: 360px;

        justify-content: center;
    }


    .ghostwriter-consult-image img {
        width: 100%;
        height: 100%;
        max-height: 360px;

        object-position: center bottom;
    }


    .ghostwriter-consult-content {
        width: 100%;
        min-height: auto;

        padding: 15px 0 40px;

        align-items: center;

        gap: 30px;

        text-align: center;

        border-bottom-width: 6px;
    }


    .ghostwriter-button-wrapper {
        justify-content: center;
    }
    .divder{
        margin-left: 0px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .ghostwriter-consult-heading {
        font-size: 27px;
        line-height: 1.12em;
    }


    .ghostwriter-consult-heading br {
        display: none;
    }


    .ghostwriter-consult-image {
        height: 310px;
    }


    .ghostwriter-consult-image img {
        max-height: 310px;
    }


    .consult-orange-text,
    .consult-black-text {
        font-size: 21px;
        line-height: 1.45em;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .ghostwriter-consult-section {
        padding-top: 38px;
    }


    .ghostwriter-consult-container {
        width: 92%;

        gap: 28px;
    }


    .ghostwriter-consult-heading {
        font-size: 24px;
    }


    .ghostwriter-consult-image {
        height: 255px;
    }


    .ghostwriter-consult-image img {
        max-height: 255px;
    }


    .ghostwriter-consult-content {
        padding-bottom: 32px;

        gap: 25px;

        border-bottom-width: 5px;
    }


    .consult-orange-text,
    .consult-black-text {
        font-size: 18px;
        line-height: 1.5em;
    }


    .ghostwriter-call-btn {
        min-width: 180px;
        height: 50px;

        padding: 0 24px;

        font-size: 14px;
    }

}

/* =========================
   GHOSTWRITER CONSULTATION End
========================= */