/* Reset and Basic Styles */
:root {
    --western-yellow-main: #E8A900;
    --western-yellow-darker: #f8f4f0;
    --western-orange: #f97316;
    --western-black: #05040b;
    --western-dark: #000000;
    --western-white: #ffffff;
    --western-gray-light: #f3f4f6;
    --western-gray-medium: #6b7280;
    --western-gray-dark: #374151;
    --text-color: #374151;
    --border-color: #e5e7eb;
    --border-color-darker: #d1d5db;
    --green-trustpilot: #00b67a;
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --container-max-width: 1200px;
    --container-padding: 1rem;
    --section-border-radius: 30px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&amp;family=Montserrat:wght@400;600;700&amp;display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--western-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--western-black);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--western-gray-dark);
}

p.text-lg {
    font-size: 1.125rem;
}

a {
    color: var(--western-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--western-yellow-darker);
}

a.text-link {
    font-weight: 500;
    text-decoration: underline;
    color: var(--western-black);
}

a.text-link:hover {
    color: var(--western-orange);
}

a.hover-underline:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container-custom {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Utility Classes */
.bg-western-yellow-main {
    background-color: var(--color--white);
    background-image: url(baner-1.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 440px !important;
    overflow: hidden;
}
@media screen and (max-width: 991px) {
    .bg-western-yellow-main{
        height: 650px !important;
    }
}
@media (max-width: 500px) {
    .bg-western-yellow-main{
        height: 680px !important;
    }
}

.bg-white {
    background-color: var(--western-white);
}

.bg-gray-light {
    background-color: var(--western-gray-light);
}

.bg-dark {
    background-color: var(--western-dark);
}

.text-white {
    color: var(--western-white);
}

.text-dark {
    color: var(--western-dark);
}

.text-western-orange {
    color: var(--western-orange);
}

.text-muted {
    color: var(--western-gray-medium);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.p-6 {
    padding: 1.5rem;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.7;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-section {
    border-radius: var(--section-border-radius);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-stretch {
    align-items: stretch;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-x-8 {
    column-gap: 2rem;
}

.gap-y-6 {
    row-gap: 1.5rem;
}

.gap-y-12 {
    row-gap: 3rem;
}

.gap-12 {
    gap: 3rem;
}

.w-full {
    width: 100%;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Grid System */
.grid {
    display: grid;
}

.md-col-span-5 {
    grid-column: span 5 / span 5;
}

.md-col-span-7 {
    grid-column: span 7 / span 7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.25rem;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--western-orange);
    color: var(--western-white);
    border-color: var(--western-orange);
}

.btn-orange:hover {
    background-color: #dd6b20;
    border-color: #dd6b20;
}

/* Specific button for header */
.btn-get-started {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Forms */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--western-white);
}

.hero-section .form-input,
.hero-section .form-textarea {
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0.9rem 1.25rem;
}

.form-input-cta {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--border-color-darker);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    line-height: 1.5;
    background-color: var(--western-white);
}

.form-input-cta:focus {
    border-color: var(--western-orange);
    box-shadow: 0 0 0 0.15rem rgba(249, 115, 22, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--western-orange);
    box-shadow: 0 0 0 0.15rem rgba(249, 115, 22, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.form-checkbox {
    margin-top: 0.2rem;
    margin-right: 0.6rem;
    height: 1.1em;
    width: 1.1em;
    accent-color: var(--western-orange);
}

.checkbox-group label {
    font-size: 0.75rem;
    color: var(--western-gray-medium);
    line-height: 1.4;
}

.hero-section .checkbox-group label {
    color: var(--western-gray-dark);
}

.space-y-4>*:not([hidden])~*:not([hidden]) {
    margin-top: 1rem;
}

/* --- top header --- */
.top-announcement-bar {
    background-color: #f8f9fa;
    color: #000;
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.promo-scroller {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    animation: scroll-text 15s linear infinite;
}

.top-announcement-bar:hover .scrolling-text {
    animation-play-state: paused;
}

@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.top-bar-promo {
    display: inline-block;
    padding-right: 50px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e8a900;
}

.contact-info i {
    margin-right: 8px;
}

@media (max-width: 991px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }

    .scrolling-text {
        animation: none;
    }

    .scrolling-text .top-bar-promo[aria-hidden="true"] {
        display: none;
    }

    .promo-scroller {
        text-align: center;
        white-space: normal;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-announcement-bar {
        display: none;
    }
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.main-header .container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-main-text {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--western-dark);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-sub-text {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--western-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 1.75rem;
}

.main-nav a {
    color: var(--western-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a.active {
    color: var(--western-black);
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--western-black);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--western-dark);
    border-radius: 1px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--western-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    min-width: 230px;
    z-index: 1001;
    padding: 0.5rem 0;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    margin-left: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--western-dark);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--western-gray-light);
    color: var(--western-black);
    text-decoration: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--western-dark);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 1px;
}

.fixed-sidebar-container {
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.fixed-sidebar-container.chat-is-open {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.sidebar-expanding-buttons {
    position: relative;
    height: 108px;
    width: 50px;
}

.sidebar-btn {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    background-color: #05040b;
    color: #ffffff;
    text-decoration: none;
    height: 50px;
    width: 50px;
    border-radius: 8px;
    transition: width 0.35s ease, border-radius 0.35s ease, background-color 0.3s ease;
    overflow: hidden;
}

.sidebar-chat-btn {
    top: 0;
}

.sidebar-phone-btn {
    top: 58px;
}

.sidebar-btn:hover {
    width: 235px;
    border-radius: 8px 0 0 8px;
    background-color: #0a192f;
    z-index: 2;
}

.sidebar-btn i {
    min-width: 50px;
    text-align: center;
    font-size: 22px;
}

.sidebar-btn .btn-text {
    white-space: nowrap;
    font-weight: 600;
    padding-right: 20px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.sidebar-btn:hover .btn-text {
    opacity: 1;
}

.sidebar-vertical-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #05040b;
    color: white;
    width: 50px;
    height: 180px;
    margin-top: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sidebar-vertical-btn:hover {
    background-color: #0a192f;
}

.sidebar-vertical-btn span {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .fixed-sidebar-container {
        display: none;
    }
}

/* General Button & Container styles used by Hero section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-dark {
    background-color: #05040b;
    color: #ffffff;
    border-color: #1f2937;
}

.btn-dark:hover {
    background-color: #0a192f;
    border-color: #333;
}

.btn-outline {
    background-color: transparent;
    color: #1f2937;
    border: 2px solid #1f2937 !important;
}

.btn-outline:hover {
    background-color: #1f2937;
    color: #ffffff;
}

.btn-full {
    width: 100%;
    padding: 15px;
}

/* Hero Section - Mobile First Approach */
.hero-audiobook {
    padding: 50px 0;
    color: var(--western-black);
    background-image: url('baner-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 590px;
    display: flex;
    align-items: center;
}

.hero-audiobook .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-family: "Playfair Display", serif !important;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-form-container {
    background-color: #05040b;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.form-wrapper h2 {
    font-size: 1.75rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.form-wrapper .form-offer {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #e8a900;
}

.form-wrapper form input,
.form-wrapper form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
}

.form-wrapper form input::placeholder,
.form-wrapper form select {
    color: #6c757d;
}

.checkbox-container {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
    flex-shrink: 0;
    accent-color: #e8a900;
}

.checkbox-container label {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

.checkbox-container label a {
    color: #e8a900;
    font-weight: 600;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .hero-audiobook .container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-form-container {
        margin: 0;
        max-width: none;
    }
}

/* Awards Section */
.awards-section {
    border-bottom: 1px solid var(--border-color);
}

.award-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.award-scroller-inner {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scrollAwards 40s linear infinite;
}

.award-logo {
    height: 60px;
    margin: 0 2.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.award-logo.ip-logo {
    height: 70px;
}

.award-logo.kids-logo {
    height: 80px;
}

.award-logo.indie-book-logo {
    height: 75px;
}

.award-logo.panda-logo {
    height: 70px;
}

.award-logo.nyt-bestseller {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    color: #444;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin: 0 2.5rem;
    flex-shrink: 0;
}

.award-logo.nyt-bestseller strong {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    color: #000;
}

@keyframes scrollAwards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Remaining CSS ... --- */
.section-subtitle-alt {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--western-orange);
    margin: -0.5rem 0 1.5rem 0;
    font-family: 'Georgia', serif;
    /* More classic/bookish font */
    font-style: italic;
}

.estimator-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.estimator-slides .estimator-slide {
    display: none;
}

.estimator-slides .estimator-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

.estimator-slides img {
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.slider-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.slider-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--border-color-darker);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--western-orange);
    transform: scale(1.2);
}


/* Why Choose Us Section */
.why-choose-us-section .feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--western-black);
}

.why-choose-us-section .feature-item .bullet {
    color: var(--western-orange);
    margin-right: 0.6rem;
    font-size: 1.5em;
    line-height: 1;
}

.why-choose-us-image-container {
    position: relative;
}

.book-image-why-choose {
    max-width: 380px;
    margin: 0 auto;
    border-radius: 8px;

    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .why-choose-us-section .feature-item .bullet {
        color: var(--western-orange);
        margin-right: 0.6rem;
        font-size: 1rem;
        line-height: 1;
    }

    .book-image-why-choose {
        max-width: 300px;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
    }
}

/* .paint-stroke-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 80%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q50 0, 100 50 T200 50' fill='none' stroke='%23fde047' stroke-width='30' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
} */


/* Services Overview Section */
:root {
    --primary-yellow: #e8b22a;
    --dark-text: #212529;
    --light-text: #ffffff;
    --medium-gray: #6c757d;
    --light-gray-bg: #f8f9fa;
    --border-gray: #dee2e6;
    --font-family: 'Montserrat', sans-serif;
    --section-padding: 60px 0;
    --card-border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-text);
    color: var(--dark-text);
    line-height: 1.7;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-intro {
    text-align: center;
    padding: var(--section-padding);
    background-color: var(--light-text);
}

.services-intro h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-text);
}

.services-intro p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--medium-gray);
}

.services-grid-section {
    padding: var(--section-padding);
    padding-top: 0;
    background-color: var(--light-text);
    background-image: radial-gradient(var(--border-gray) 0.5px, transparent 0.5px);
    background-size: 15px 15px;
}

.services-grid-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.grid-image {
    text-align: center;
}

.grid-image img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--light-gray-bg);
    padding: 25px;
    border-radius: var(--card-border-radius);
    border: 1px solid var(--border-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #5340fa;
}

.service-card.active {
    border-left: 4px solid #5340fa;
    background-color: #eef7ff;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
}

.service-card p {
    font-size: 15px;
    color: var(--medium-gray);
    flex-grow: 1;
}

.service-card.active p span {
    color: var(--dark-text);
    font-weight: 500;
}


/* --- RESPONSIVENESS --- */
@media (min-width: 769px) {
    .services-grid-section .container {
        grid-template-columns: 0.7fr 1.3fr;
        align-items: flex-start;
    }

    .grid-image {
        position: sticky;
        top: 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .services-intro h1 {
        font-size: 42px;
    }

    .services-intro p {
        font-size: 18px;
    }

    .services-grid-section .container {
        gap: 60px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 15px;
    }
}


@media (max-width: 768px) {
    .services-intro h1 {
        font-size: 32px;
    }

    .services-intro p {
        font-size: 16px;
    }

    .grid-image {
        display: none;
    }

    .services-grid-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-intro {
        padding: 50px 0;
    }

    .services-intro h1 {
        font-size: 28px;
    }

    .services-intro p {
        font-size: 15px;
    }

    .services-grid-section {
        padding: 50px 0;
        padding-top: 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* Quote Section (Connect with Us) */
.quote-section-person.img {
    border-radius: 1.5rem;
    /* 24px, more rounded as per screenshot */
    width: 280px;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* Audiobook Production Section */
.list-styled-audiobook li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--western-gray-dark);
    font-size: 1rem;
}

.list-styled-audiobook li::before {
    content: '•';
    /* Standard bullet for this list */
    color: var(--western-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.audiobook-prod-img {
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

/* Platform Logos Section */
.platform-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.platform-scroller-inner {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scrollPlatforms 30s linear infinite;
}

.platform-scroller-inner span {
    margin: 0 2rem;
    font-size: 1.5rem;
    /* Text logos */
    font-weight: 600;
    color: var(--western-gray-medium);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.platform-scroller-inner span:hover {
    opacity: 1;
    color: var(--western-dark);
}

@keyframes scrollPlatforms {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.platform-dots .dot {
    background-color: var(--border-color-darker);
}

.platform-dots .dot.active {
    background-color: var(--western-yellow-darker);
}


/* Crafting Ideas (Interactive Tabs) */
.interactive-services-container {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    min-height: 500px;
    background-color: var(--western-white);
    /* Ensure white background */
}

.services-nav-tabs {
    display: flex;
    flex-direction: column;
    background-color: var(--western-white);
    /* White nav area */
    border-right: 1px solid var(--border-color);
    width: 280px;
    flex-shrink: 0;
    padding: 0.5rem 0;
}

.service-nav-item {
    /* Re-styling for new look */
    background: none;
    border: none;
    border-left: 4px solid transparent;
    padding: 0.9rem 1.5rem;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    color: var(--western-gray-dark);
    transition: background-color 0.3s, color 0.3s, border-left-color 0.3s;
    width: 100%;
    font-size: 0.95rem;
}

.service-nav-item.active,
.service-nav-item:hover {
    background-color:#05040b;

    /* Yellow highlight */
    color:#ffffff;
    border-left-color: #5340fa;
    /* Orange active indicator */
}

.service-content-area {
    flex-grow: 1;
    padding: 2.5rem;
}

.service-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.service-content.active {
    display: block;
}

.service-content img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--western-black);
    font-weight: 700;
}

.service-content p {
    color: var(--western-gray-dark);
    line-height: 1.7;
    font-size: 1rem;
}


/* Key Features Section */
.key-feature-item {
    text-align: center;
}

.key-feature-item .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--western-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border: 1px solid var(--border-color);
}

.key-feature-item .icon-wrapper img {
    width: 40px;
    height: 40px;
}

.key-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--western-gray-dark);
    line-height: 1.4;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-item img {
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.portfolio-item img:hover {
    transform: scale(1.03);
}

/* Testimonials Section */
.testimonials-section .md-col-span-5 h2 {
    font-size: 2rem;
}

/* Specific title size */
.testimonials-section .trustpilot-reviews .stars {
    color: var(--green-trustpilot);
}

.testimonial-card {
    background-color: var(--western-white);
    padding: 1.75rem;
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
    /* Initially transparent */
    border-left: 5px solid #5340fa;
    /* Yellow accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    font-size: 1.1em;
    margin-bottom: 0.75rem;
}

.testimonial-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--western-gray-dark);
}

/* FAQ Section */
.faq-accordion .faq-item {
    background-color: var(--western-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    /* Rounded individual items */
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    /* For clean rounded corners with answer */
}

.faq-accordion .faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--western-dark);
}

.faq-question:hover {
    color: #5340fa;
}

.faq-icon {
    /* Using background image for +/- */
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f97316'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f97316'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E");
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

/* Increased max height */
.faq-answer p {
    color: var(--western-gray-dark);
    padding: 0 1.5rem 1.25rem 1.5rem;
    margin-bottom: 0;
    line-height: 1.7;
}


/* CTA Form Section (Bottom) */
.cta-form-section .section-subtitle {
    color: var(--western-dark);
}

.cta-form-section .checkbox-group label {
    color: var(--western-black);
}

/* Footer */

.footer * {
    box-sizing: border-box;
}

.footer {
    width: 100%;
    background: #05040b;
    color: #fff;
    padding-bottom: 20px;
    border-top-left-radius: 105px;
    font-size: 14px;
    line-height: 1.6;
}

.footer .footer-container {
    width: 85%;
    margin: auto;
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footer .col {
    flex-basis: 23%;
    padding: 15px;
    margin-bottom: 20px;
}

.footer .col:first-child {
    flex-basis: 28%;
}

.footer .col:nth-child(2),
.footer .col:nth-child(3) {
    flex-basis: 20%;
}

.footer .col:last-child {
    flex-basis: 28%;
}

.footer .col h3 {
    font-family: 'Poppins', sans-serif;
    width: fit-content;
    margin-top: 25px;
    position: relative;
    color: #5340fa;
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.footer .col h3 .underline {
    width: 100%;
    height: 3px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.footer .col h3 .underline span {
    width: 25px;
    height: 100%;
    background: #5340fa;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: -30px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -30px;
    }

    100% {
        left: 100%;
    }
}

.footer .col p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer .col p.email-id {
    width: fit-content;
    border-bottom: 1px solid #555;
    margin: 15px 0;
    color: #fff;
    text-decoration: none;
}

.footer .col p.email-id:hover {
    color: #5340fa;
}

.footer .col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
}

.footer .col ul {
    list-style: none;
    padding-left: 0;
}

.footer .col ul li {
    margin-bottom: 10px;
}

.footer .col ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

.footer .col ul li a:hover {
    color: #5340fa;
    padding-left: 5px;
}

.footer .col form {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #555;
    margin-bottom: 25px;
}

.footer .col form .fa-regular.fa-envelope {
    font-size: 16px;
    margin-right: 10px;
    color: #ccc;
}

.footer .col form input[type="email"] {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
    font-size: 0.9rem;
    padding: 8px 0;
}

.footer .col form input[type="email"]::placeholder {
    color: #888;
}

.footer .col form button[type="submit"] {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 8px 5px;
}

.footer .col form button .fa-solid.fa-arrow-right {
    font-size: 16px;
    color: #ccc;
    transition: color 0.3s ease-in-out;
}

.footer .col form button:hover .fa-solid.fa-arrow-right {
    color: #e8a900;
}

.footer .col .socail-icons {
    margin-top: 15px;
}

.footer .col .socail-icons .fa-brands {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    color: #1f1f1f;
    background: #fff;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in, color 0.3s ease-in;
}

.footer .col .socail-icons .fa-brands:last-child {
    margin-right: 0;
}

.footer .col .socail-icons .fa-brands:hover {
    background-color: #5340fa;
    color: #fff;
}

.footer hr {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #444;
    margin: 30px 0;
}

.footer .copyright {
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
    padding-bottom: 10px;
}

@media (max-width: 991px) {
    .footer .col {
        flex-basis: 48%;
    }

    .footer .col:first-child,
    .footer .col:last-child {
        flex-basis: 48%;
    }
}

@media (max-width: 767px) {
    .footer {
        border-top-left-radius: 60px;
        padding-top: 40px;
    }

    .footer .footer-container {
        width: 90%;
    }

    .footer .footer-row {
        flex-direction: column;
        align-items: center;
    }

    .footer .col {
        flex-basis: 100%;
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        padding: 0;
    }

    .footer .col:last-child {
        margin-bottom: 0;
    }

    .footer .col h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .footer .col ul {
        padding-left: 0;
    }

    .footer .col .socail-icons {
        justify-content: center;
    }

    .footer .contact-item {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .footer .copyright {
        margin-top: 30px;
    }
}

/* Floating Chat and Scroll to Top Buttons */
.floating-chat-btn,
.scroll-to-top-btn {
    position: fixed;
    bottom: 25px;
    background-color: var(--western-dark);
    color: var(--western-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-chat-btn {
    right: 25px;
    border-radius: 30px;
    padding: 10px 18px;
}

.floating-chat-btn.visible,
.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-chat-btn svg {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.floating-chat-btn span {
    font-size: 0.95rem;
    font-weight: 500;
}

.scroll-to-top-btn {
    right: 25px;
    bottom: 95px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #5340fa;
}

.scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
}

.floating-chat-btn+.scroll-to-top-btn {
    bottom: 95px;
}


/* Animations */
/* The problematic fade-in-on-scroll animation has been removed to ensure content is always visible. */

/* This rule below is no longer necessary. */
/*
.animated-section.section-fade-in {
    opacity: 1;
    transform: translateY(0);
}
*/

/* Responsive Styles */
@media (min-width: 1025px) {

    /* Desktop specific for custom grid */
    .grid.lg-grid-cols-custom-3 {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
            "img-main card1 card2"
            "card3 card4 card5";
        align-items: stretch;
    }

    .ready-to-publish-img-container {
        grid-area: img-main;
        align-self: center;
    }

    .services-overview-section .service-card-item {
        min-height: 180px;
    }
}

@media (min-width: 769px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md-grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .sm-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg-grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .grid.lg-grid-cols-custom-3 {
        grid-template-columns: 0.8fr 1fr 1fr;
    }

    .ready-to-publish-img-container img {
        margin: 0;
    }

    /* Align left */
}


@media (max-width: 1024px) {

    .lg-grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg-grid-cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid.lg-grid-cols-custom-3 {
        grid-template-columns: 1fr;
    }

    .ready-to-publish-img-container img {
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 914px) {

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .text-center-md-down {
        text-align: center;
    }

    .top-bar {
        font-size: 0.75rem;
        text-align: center;
    }

    .top-bar .container-custom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .top-bar .contact-info a {
        margin-left: 0;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding-bottom: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 0.85rem var(--container-padding);
        width: 100%;
        font-size: 1rem;
    }

    .main-nav a.active::after,
    .main-nav a:hover::after {
        display: none;
    }

    .main-header .btn-get-started {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-left: 1rem;
        background-color: #fef3c7;
        /* Slightly different bg for mobile dropdown */
    }

    .dropdown-menu a {
        padding: 0.6rem var(--container-padding);
        color: var(--western-dark);
    }

    .grid.md-grid-cols-2,
    .grid.md-grid-cols-3,
    .grid.md-grid-cols-12,
    .grid.lg-grid-cols-3,
    .grid.lg-grid-cols-4,
    .grid.lg-grid-cols-5,
    .grid.sm-grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .hero-form-container {
        margin-top: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .interactive-services-container {
        flex-direction: column;
        min-height: auto;
    }

    .services-nav-tabs {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0;
    }

    .service-nav-item {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        border-left: none;
        border-top: 4px solid transparent;
        /* Top border for mobile active */
        flex-shrink: 0;
        padding: 0.85rem 1.25rem;
    }

    .service-nav-item.active,
    .service-nav-item:hover {
        border-top-color: #5340fa;
        border-left-color: transparent;
    }

    .service-nav-item:last-child {
        border-right: none;
    }

    .service-content-area {
        padding: 1.5rem;
    }

    .service-content img {
        height: 220px;
    }

    .why-choose-us-image-container {
        margin-top: 2rem;
    }

    .paint-stroke-bg {
        width: 90%;
        height: 70%;
    }

    /* Adjust stroke for mobile */
    .quote-section .md-justify-end {
        justify-content: center;
    }

    .quote-section-person.img {
        margin-top: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .main-footer .grid>div {
        margin-bottom: 2.5rem;
    }

    .main-footer .grid>div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {

    /* sm breakpoint */
    .container-custom {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }

    .hero-section .btn {
        width: 90%;
        max-width: 320px;
    }

    .paint-stroke-bg {
        display: none;
    }

    .paint-stroke-bg {
        width: 30%;
        height: 40%;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-content p.text-lg {
        font-size: 1rem;
    }

    .form-card {
        padding: 1.25rem;
    }

    .award-logo {
        height: 45px;
        margin: 0 1.5rem;
    }

    .award-logo.kids-logo {
        height: 60px;
    }

    .award-logo.nyt-bestseller {
        font-size: 0.7rem;
    }

    .award-logo.nyt-bestseller strong {
        font-size: 0.9rem;
    }

    .platform-scroller-inner span {
        font-size: 1.2rem;
        margin: 0 1.2rem;
    }

    .key-feature-item .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .key-feature-item .icon-wrapper img {
        width: 35px;
        height: 35px;
    }

    .key-feature-item h4 {
        font-size: 0.9rem;
    }
}

/* --- STYLES FOR THE NOTIFICATION TOASTS --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

.toast {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: white;
    font-family: 'Inter', sans-serif;
    /* Use Inter font for toasts */
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.toast.removing {
    animation: toastSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

.toast-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.icon-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.toast-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    transform: translateX(-100%);
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    to {
        transform: translateX(0);
    }
}

.toast-glow {
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: 18px;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

/* --- Home page books slider style --- */
:root {
    --color-orange: #f97316;
    --color-dark: #1f2937;
    --color-text: #374151;
    --color-white: #ffffff;
}

.container-custom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.portfolio-section {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-title .text-orange {
    color: var(--color-orange);
}

.section-subtitle {
    max-width: 48rem;
    /* 768px */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.portfolio-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Add gradient overlay for seamless effect */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.portfolio-slider-track {
    display: flex;
    animation: scroll-left 25s linear infinite;
}

.portfolio-item {
    flex: 0 0 33.33%;
    min-width: 300px;
    padding: 0 2rem;
    animation: slow-zoom 8s ease-in-out infinite;
}

.portfolio-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
}

/* --- Keyframe Animations --- */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slow-zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.action-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background-color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-orange:hover {
    background-color: #fb923c;
}