.elementor-7946 .elementor-element.elementor-element-fca8f21{--display:flex;}/* Start custom CSS for html, class: .elementor-element-492d3b1 *//* =========================================================
   PET BUSINESS EBOOK
   Premium Bangla Ebook Styling
   ========================================================= */

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --dark: #171321;
    --text: #443d4f;
    --muted: #7c7485;
    --light: #faf8ff;
    --white: #ffffff;
    --border: #ebe5f2;
    --success: #16a34a;
    --danger: #dc2626;
    --shadow: 0 18px 50px rgba(45, 25, 70, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans Bengali", sans-serif;
    background: #e9e5ee;
    color: var(--text);
    line-height: 1.8;
}

.ebook {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
}

/* ================= PAGE ================= */

.page {
    position: relative;
    width: 100%;
    min-height: 1120px;
    background: var(--white);
    padding: 80px 75px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.page::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.04);
    top: -80px;
    right: -80px;
}

/* ================= COVER ================= */

.cover {
    min-height: 1120px;
    background:
        radial-gradient(circle at 10% 10%, rgba(236,72,153,.18), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(124,58,237,.20), transparent 35%),
        linear-gradient(145deg, #fffaff, #f4efff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cover-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.eyebrow {
    display: inline-block;
    background: rgba(124,58,237,.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.cover h1 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.cover-subtitle {
    max-width: 620px;
    margin: auto;
    font-size: 20px;
    color: var(--muted);
}

.pet-illustration {
    margin: 55px auto 35px;
}

.pet-circle {
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f0e9ff);
    box-shadow: 0 25px 60px rgba(124,58,237,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 65px;
}

.cover-tag {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--primary-dark);
    font-size: 14px;
}

.edition {
    margin-top: 60px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
}

.cover-decoration {
    position: absolute;
    border-radius: 50%;
}

.circle-one {
    width: 240px;
    height: 240px;
    background: rgba(236,72,153,.08);
    top: -80px;
    left: -80px;
}

.circle-two {
    width: 350px;
    height: 350px;
    background: rgba(124,58,237,.06);
    bottom: -150px;
    right: -120px;
}

.paw {
    position: absolute;
    opacity: .15;
    font-size: 55px;
}

.paw-1 {
    top: 18%;
    left: 10%;
}

.paw-2 {
    bottom: 18%;
    right: 10%;
}

.paw-3 {
    top: 50%;
    right: 6%;
}

/* ================= HEADINGS ================= */

.section-number {
    position: absolute;
    top: 30px;
    right: 45px;
    font-size: 70px;
    font-weight: 800;
    color: rgba(124,58,237,.06);
}

.section-label {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
}

h2 {
    font-size: 38px;
    line-height: 1.35;
    color: var(--dark);
    margin: 15px 0 28px;
    font-weight: 800;
}

h3 {
    color: var(--dark);
    line-height: 1.4;
}

p {
    font-size: 16px;
    margin-bottom: 18px;
}

/* ================= HIGHLIGHT ================= */

.highlight-box {
    padding: 28px;
    background: linear-gradient(135deg, #f5edff, #fff0f7);
    border-radius: 20px;
    margin: 30px 0;
    border-left: 5px solid var(--primary);
}

.quote {
    margin: 45px 0;
    padding: 30px;
    border-radius: 20px;
    background: var(--dark);
    color: white;
    font-size: 21px;
    font-weight: 600;
    text-align: center;
}

/* ================= PROBLEM GRID ================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.problem-card {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.problem-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--muted);
}

/* ================= SERVICES ================= */

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.service-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.service-item > span {
    font-size: 35px;
}

.service-item h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* ================= STATS ================= */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    padding: 25px 12px;
    border-radius: 18px;
    background: #faf8ff;
}

.stat strong {
    display: block;
    font-size: 30px;
    color: var(--primary);
}

.stat span {
    font-size: 12px;
}

/* ================= FORMULA ================= */

.opportunity-box {
    padding: 35px;
    background: var(--dark);
    border-radius: 24px;
    color: white;
    margin: 40px 0;
}

.opportunity-box h3 {
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.formula {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.formula span,
.formula strong {
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.1);
    font-size: 13px;
}

.formula strong {
    background: var(--secondary);
}

.formula b {
    color: #ddd;
}

/* ================= CUSTOMER ================= */

.customer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.customer-card {
    padding: 35px;
    border-radius: 20px;
    background: linear-gradient(135deg, #faf8ff, #fff);
    border: 1px solid var(--border);
}

.customer-card span {
    font-size: 38px;
}

.customer-card h3 {
    margin-top: 10px;
}

.customer-card p {
    color: var(--muted);
    font-size: 14px;
}

/* ================= PRICING ================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.price-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: #fff;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.package-label {
    font-size: 11px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
}

.price-card h3 {
    margin: 10px 0;
    font-size: 20px;
}

.price {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.price-card ul {
    padding-left: 20px;
    color: var(--muted);
    font-size: 13px;
}

.price-card li {
    margin: 7px 0;
}

.price-card button {
    border: none;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-family: inherit;
    font-weight: 700;
}

.popular {
    position: absolute;
    top: -13px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
}

.small-note {
    font-size: 11px;
    color: #8d8695;
    margin-top: 25px;
}

/* ================= COST TABLE ================= */

.cost-table {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 30px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 17px 22px;
    border-bottom: 1px solid var(--border);
}

.cost-row.header {
    background: var(--dark);
    color: white;
    font-weight: 700;
}

.cost-row.total {
    background: #f5edff;
    color: var(--primary-dark);
    font-weight: 800;
}

.tip-box {
    margin-top: 30px;
    padding: 22px;
    background: #fff8e8;
    border-radius: 16px;
    border-left: 5px solid var(--accent);
}

/* ================= REVENUE ================= */

.revenue-highlight {
    margin: 35px 0;
    text-align: center;
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

.revenue-highlight span {
    display: block;
    font-size: 18px;
}

.revenue-highlight strong {
    display: block;
    font-size: 55px;
    color: var(--primary);
    line-height: 1.3;
}

.revenue-highlight small {
    color: var(--muted);
}

.chart {
    margin-top: 40px;
}

.bar-item {
    display: grid;
    grid-template-columns: 90px 1fr 70px;
    align-items: center;
    gap: 15px;
    margin: 22px 0;
}

.bar-item span {
    font-size: 13px;
}

.bar {
    height: 20px;
    background: #eeeaf3;
    border-radius: 50px;
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 50px;
}

/* ================= TIMELINE ================= */

.timeline {
    position: relative;
    margin-top: 35px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e4dced;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.timeline-item > span {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.timeline-item h3 {
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--muted);
}

/* ================= WARNING ================= */

.warning-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    margin: 30px 0;
}

.warning-icon {
    font-size: 35px;
}

.warning-box h3 {
    margin-bottom: 5px;
}

.warning-box p {
    font-size: 14px;
    margin: 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.safety-grid > div {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.safety-grid span {
    color: var(--success);
    font-size: 25px;
    font-weight: 800;
}

.safety-grid h3 {
    font-size: 16px;
}

.safety-grid p {
    font-size: 13px;
    color: var(--muted);
}

/* ================= CONTENT CARD ================= */

.content-card {
    background: #faf8ff;
    border-radius: 22px;
    padding: 30px;
    margin-top: 30px;
}

.formula-stack > div {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.formula-stack b {
    color: var(--primary);
}

.sub-heading {
    margin-top: 40px;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* ================= CUSTOMER PLAN ================= */

.customer-plan {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.plan {
    display: grid;
    grid-template-columns: 55px 170px 1fr;
    gap: 15px;
    align-items: center;
    padding: 18px;
    border-radius: 15px;
    background: #faf8ff;
}

.plan strong {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan h3 {
    font-size: 16px;
}

.plan p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

/* ================= EXPANSION ================= */

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.expansion-grid > div {
    text-align: center;
    padding: 30px 15px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.expansion-grid span {
    font-size: 35px;
}

.expansion-grid h3 {
    margin-top: 8px;
    font-size: 15px;
}

.growth-box {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: var(--dark);
    color: white;
    text-align: center;
}

.growth-box strong {
    color: #f9a8d4;
}

.growth-box p {
    margin: 8px 0 0;
}

/* ================= CHALLENGES ================= */

.challenge-table {
    margin-top: 35px;
}

.challenge {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.challenge strong {
    color: var(--primary);
    font-size: 13px;
}

.challenge p {
    margin: 3px 0 0;
    font-size: 14px;
}

/* ================= PROS CONS ================= */

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.pros,
.cons {
    padding: 30px;
    border-radius: 22px;
}

.pros {
    background: #effdf5;
}

.cons {
    background: #fff5f5;
}

.pros h3 {
    color: var(--success);
}

.cons h3 {
    color: var(--danger);
}

.pros ul,
.cons ul {
    margin-top: 15px;
    padding-left: 20px;
}

.pros li,
.cons li {
    margin: 10px 0;
    font-size: 14px;
}

/* ================= 30 DAY PLAN ================= */

.month-plan {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.month-plan > div {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.month-plan strong {
    color: var(--primary);
}

.month-plan p {
    margin-top: 10px;
    font-size: 14px;
}

.action-box {
    margin-top: 30px;
    padding: 25px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ede9fe, #fce7f3);
    text-align: center;
}

/* ================= OUTCOME ================= */

.outcome {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.outcome > div {
    padding: 30px;
    border-radius: 20px;
    background: #faf8ff;
}

.outcome span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.outcome h3 {
    margin: 12px 0 5px;
}

.outcome p {
    font-size: 14px;
    color: var(--muted);
}

.final-thought {
    margin-top: 40px;
    padding: 30px;
    border-radius: 22px;
    background: var(--dark);
    color: white;
    text-align: center;
}

.final-thought p {
    margin: 0;
}

/* ================= CTA ================= */

.cta-page {
    min-height: 1120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        radial-gradient(circle at 20% 20%, rgba(236,72,153,.25), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(124,58,237,.3), transparent 35%),
        linear-gradient(145deg, #1d1530, #0f0a18);

    color: white;
}

.cta-page h2 {
    color: white;
    font-size: 48px;
}

.cta-page .section-label {
    color: #f9a8d4;
}

.cta-page > p {
    max-width: 600px;
    color: #d9d2e2;
    font-size: 17px;
}

.cta-paw {
    font-size: 70px;
    margin-bottom: 20px;
}

.cta-main {
    max-width: 650px;
    margin-top: 30px;
    padding: 45px;
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}

.cta-main h3 {
    color: white;
    font-size: 22px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 45px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(124,58,237,.35);
    transition: .3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(124,58,237,.45);
}

.cta-footer {
    display: flex;
    gap: 10px;
    margin-top: 80px;
    color: #aaa1b5;
    font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 700px) {

    .ebook {
        margin: 0;
    }

    .page {
        min-height: auto;
        padding: 55px 25px;
        margin-bottom: 15px;
    }

    .cover {
        min-height: 850px;
    }

    .cover h1 {
        font-size: 39px;
    }

    .cover-subtitle {
        font-size: 16px;
    }

    .pet-circle {
        width: 220px;
        height: 220px;
        font-size: 48px;
    }

    h2 {
        font-size: 29px;
    }

    .section-number {
        font-size: 50px;
        right: 20px;
    }

    .problem-grid,
    .service-list,
    .customer-grid,
    .pricing-grid,
    .safety-grid,
    .pros-cons,
    .month-plan,
    .outcome {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.featured {
        transform: none;
    }

    .expansion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan {
        grid-template-columns: 50px 1fr;
    }

    .plan p {
        grid-column: 2;
    }

    .challenge {
        grid-template-columns: 1fr;
    }

    .bar-item {
        grid-template-columns: 70px 1fr 55px;
    }

    .cta-page {
        min-height: 850px;
    }

    .cta-page h2 {
        font-size: 35px;
    }

    .cta-main {
        padding: 30px 20px;
    }

    .cta-main h3 {
        font-size: 18px;
    }
}

/* ================= PRINT ================= */

@media print {

    body {
        background: white;
    }

    .ebook {
        max-width: none;
        margin: 0;
    }

    .page {
        margin: 0;
        box-shadow: none;
        page-break-after: always;
    }

    .page:last-child {
        page-break-after: auto;
    }

    .cta-button {
        color: white;
    }
}/* End custom CSS */